English 中文(简体)
网上服务器的综合方案
原标题:Integrate program on webserver
  • 时间:2012-05-06 15:07:06
  •  标签:
  • php

I would like to make use of the tool "PDFToHTML" which you can find here. Unfortunately, I have no idea on how I need to install this and execute this on my webserver. I would like to know if some people are familair with this, if there are any tutorials available or something else because i have no idea on what to search for.

主要需要帮助/指导如何:

  1. Install the tool on the webserver. (My host is bluehost)
  2. Execute the program to create the files
  3. This is not necessary, but at the end I would like to zip the files.

Here s some more information but they don t explain on how to install it. http://www.articlediary.com/article/php-script-for-pdf-to-html-conversion-125.html

问题回答

Wowsers, this is a scary tool. To execute it you must run it through one of the System commands in PHP, which means you need shell access.

  1. If you re on shared hosting, you may not even be able to run that command. Maybe look through Bluehost s features and see if you can really do that. Also you could try a simple command like System( ls ); to see if it will even run at all.

If you do have permissions to run shell scripts, go to the link found in the article you pasted: http://sourceforge.net/projects/pdftohtml/ and google install tar file on linux. (If you re on shared hosting you probably can t do that either).

  1. 仅以他们提供的例子为榜样。

  2. 在其他包裹中,如齐普。





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签