Categories:
Administration (10)
Adware Spyware (7)
Apache (10)
Bluetooth (125)
DOS Commands (1)
Edge (28)
General (2)
Internet Explorer (217)
Media Center (12)
Media Player (11)
Mozilla Firefox (18)
PHP (15)
Programming (8)
Security (4)
Silverlight (15)
Tips (17)
Tools (218)
Tutorials (5)
Windows 10 (166)
Windows 7 (636)
Windows 8 (1091)
Windows Phone (33)
Windows Server 2008 (165)
Windows Server 2012 (84)
Windows Server 2016 (23)
Windows Vista (52)
Collections:
Other Resources:
Configuring Apache to Use PHP as CGI on Windows Systems
How to configure Apache server to run PHP engine as CGI on Windows systems?
✍: FYIcenter.com
1. Assuming that your Apache server is installed at C:\Program Files\Apache Software Foundation\Apache2.2
2. Assuming that your PHP engine is installed at C:\Program Files\php-5.2.0-Win32
3. Use "notepad" to open C:\Program Files\Apache Software Foundation \Apache2.2\conf\httpd.conf
4. Go to alias_module section and define a script directory call /php/ as:
<IfModule alias_module> ... ScriptAlias /php/ "C:/Program Files/php-5.2.0-Win32/" </IfModule>
5. Add an access control section for this directory as:
<Directory "C:/Program Files/php-5.2.0-Win32/"> AllowOverride None Options None Order allow,deny Allow from all </Directory>
6. Go to mime_module section and define a mime type as:
<IfModule mime_module> ... AddType application/x-httpd-php .php </IfModule>
7. At the root level below the LoadModule section, define an "Action" entry:
#LoadModule ssl_module modules/mod_ssl.so Action application/x-httpd-php "/php/php-cgi.exe"
This "Action" entry tells Apache to run "php-cgi.exe" from the script directory "/php/" for any "application/x-httpd-php" mime files.
8. Restart your Apache server.
2015-11-29, 147298👍, 6💬
Popular Posts:
Why don't my playlists work on my new computer? An entry in a playlist uses a "relative path" to ide...
What is ZCfgSvc.exe process - Intel Wireless ZeroCfgSvc MFC Application? Process ZCfgSvc.exe is the ...
What is AcroIEHelper.dll - DLL file - Adobe Acrobat IE Helper Version 6.0 for ActivieX? DLL AcroIEHe...
A collection of 24 tutorials on removing Windows startup programs to gain performance and reduce sec...
What is "SMS Task Sequence Agent" in my Windows 7 service list? And how is "SMS Task Sequence Agent"...