Still No go: Here's the situation:
http.conf:
Changed Script alias to:
ScriptAlias /php/ "d:/php3/"
Action entry:
Action application/x-httpd-php3 "/php3/php.exe"
Types:
AddType application/x-httpd-php3 .php
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3 .phtml
I try to access a simple php script
in my htdocs directory (htdocs/mike.php) which just does an echo statement and get
this error in the log file:
[Thu Jul 27 13:50:29 2000] [error] [client 127.0.0.1] File does not exist: d:/host/apache/htdocs/php3/php.exe/mike.php
Does anyone know why it is appending my whole
php executable path to my script instead of just appending my document root (htdocs?)
In my php.ini file here is my extension_dir
entry:
extension_dir = "D:\php3\"
If I can figure out why it thinks that my script is at:
d:/host/apache/htdocs/php3/php.exe/mike.php
instead of:
d:/host/apache/htdocs/mike.php
I should be home free.
Do you think putting things on the D drive
is hurting?
Mike