Home  >  Article  >  Backend Development  >  PHP Installation Guide FAQ 1_PHP Tutorial

PHP Installation Guide FAQ 1_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 17:29:58788browse

1.
Question: I have followed the steps to install the Unix version of the APACHE module, but my PHP script source code is displayed in the browser, or the browser prompts me to save the file. Why?
Answer: This is caused by the PHP module not working properly. Please check the following three places:
Please confirm that the running APACHE executable file is the one you compiled successfully last time. Enter the following command:
/path/to/binary/httpd -l
If you don’t see mod_php3.c in the list, you are not running a correct executable file.
Please make sure you have added the correct "Mime Type" to one of your .conf. This should look like:
AddType application/x-httpd-php3 .php3
Please make sure that the "AddType" above is not in the or block, otherwise this AddType will only take effect in the current Virtualhost or Directory.
2.
Q: I have installed PHP according to the instructions, but my PHP still cannot work with IIS. Why?
Answer: You must ensure that the user who needs to run PHP has sufficient permissions to run php.exe. The IIS server uses an anonymous account created during installation. This account requires permission to run php.exe. In addition, any user who needs to be verified also has permission to run php.exe.
3.
Question: How to compile PHP with APACHE 1.3.X?
Answer: This is very simple, just follow the steps below:
- Get the latest APACHE distribution package from the APACHE site
- UNZIP/UNTAR file to a directory, such as /usr/local/src /apache-1.3.9
- Enter "./configure --with-apache=/path/to/your/apache" to start compiling PHP for the first time
- Execute "make", "make install" sequentially , create and copy the necessary files to the APACHE directory
- Enter the APACHE directory and edit the Configuration file. Add at the end of the file: "AddModule modules/php3/libphp3.a"
Execute "./Configure", "make"


Everything is done, you already have an APACHE executable file that can run PHP

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/531650.htmlTechArticle1. Question: I have installed the Unix version of the APACHE module according to the steps, but my PHP script source code is displayed in in the browser, or the browser prompts me to save the file. Why? Answer: This is...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn