Hello,
I also have the following in my error.log:
[Wed Nov 02 14:09:00 2005] [error] [client 127.0.0.1] C:/Program Files/Apache Group/Apache2/htdocs/phpMyAdmin-2.6/index.php is not executable; ensure interpreted scripts have "#!" first line
[Wed Nov 02 14:09:00 2005] [error] [client 127.0.0.1] (9)Bad file descriptor: don't know how to spawn child process: C:/Program Files/Apache Group/Apache2/htdocs/phpMyAdmin-2.6/index.php
I removed the following ScriptAlias in my httpd.conf and now everything works:
ScriptAlias /phpMyAdmin-2.6/ "C:/Program Files/Apache Group/Apache2/htdocs/phpMyAdmin-2.6/"
<Directory "C:/Program Files/Apache Group/Apache2/htdocs/phpMyAdmin-2.6">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
I obtained the above tip from the link below:
http://www.modpython.org/pipermail/mod_python/2004-May/015537.html
Of course, you must have installed the PHP module already (see PHP INSTALL.TXT). Also check your httpd error.log to see it has been loaded successfully.
Regards,