PDA

View Full Version : php installation errors


marvc
07-17-2002, 01:26 AM
Wondering if someone here can assist me with an error I'm receiving when I attempt to install the vbulletin lite app?
I get the following error: "You are not running PHP - Please contact your system administrator" error when attempting to perform the install.
I think I've made all of the necessary changes to my httpd file by adding the following lines:
ScriptAlias /php3/ "C:\Program Files\PHP Home Edition 2\Apache2\php\"
AddType application/x-httpd-php .php .phtml .inc .php3 .php4
AddType application/x-httpd-php-source .phps
Action application/x-httpd-php /php/php.exe

Stopped & Re-Start the Apache server. Nothing!!!

Any help is appreciated

loanskey
04-15-2006, 07:20 PM
hey can you please put following line in a file and send me the url ..

phpinfo();

Hope after seeing this i will be able to help you out.

regards

djm0219
04-15-2006, 08:05 PM
Have you also added the required LoadModule and AddModule statements (exactly what those are depends on the version of PHP you're using (4 or 5)) to your Apache configuration file?

Nightfire
04-16-2006, 01:27 AM
Why are you trying to install php 3? I'd advise you on installing php as an apache module too instead of cgi.

All you need for the cgi install in the http.conf file is:

ScriptAlias /php/ "C:/Program Files/PHP Home Edition 2/Apache2/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"