Re: can't run install.php, Internal Server Error [message #6201 is a reply to message #6186] |
Sat, 05 October 2002 16:46 |
Olliver
Messages: 443 Registered: March 2002
Karma:
|
Senior Member |
|
|
Apache spits out this error message because there's something wrong with either the httpd.conf or with php module itself. If it's the httpd.conf then u have to check whether the module is loaded on start up. this would typically look like (Apache 1.3.x):
Quote: | [..]
LoadModule php4_module modules/libphp4.so
[...]
AddModule mod_php4.c
[...]
DirectoryIndex index.html index.htm index.shtml index.php index.php4
[...]
AddType application/x-httpd-php .php4 .php3 .phtml .php
|
At any case u have to specify the correct location of the module else execution will fail. If it's a php issue then it could be because ur php was compiled with the headers of an elder server version. with each server upgrade u have to re-compile all of ur modules as well.
HTH
bye Ken
[Updated on: Sat, 05 October 2002 16:47] Report message to a moderator
|
|
|