Hmmmm... The first installation ended with this message:

"Sorry, the software to automatically configure the Apache httpd.conf file has not yet been written. You will have to configure Apache manually. See the install txt file for more details."

It then occurred to me that I forgot to tell you that I'm installing PHP 4.3.4; there was a problem with 5.0, so I downloaded 4.3.4 instead.

So instead of adding this to my conf/httpd file:

LoadFile C:/PHP/php5ts.dll
LoadModule php5_module C:/PHP/php5Apache.dll
AddType application/x-httpd-php .php .php5
AddType application/x-httpd-php-source .phps

I replaced every instance of php5 with php4, so the conf/httpd file ends like this:

# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for requests without a known
# server name.
#
#<VirtualHost *:80>
#    ServerAdmin [EMAIL PROTECTED]
#    DocumentRoot /www/docs/dummy-host.example.com
#    ServerName dummy-host.example.com
#    ErrorLog logs/dummy-host.example.com-error_log
#    CustomLog logs/dummy-host.example.com-access_log common
#</VirtualHost>

LoadFile C:/PHP/php4ts.dll
LoadModule php4_module C:/PHP/php4Apache.dll
AddType application/x-httpd-php .php .php4
AddType application/x-httpd-php-source .phps

* * * * * * * * * *

But I get the same error message.

Then I replaced the four lines I added to the conf/httpd file with three lines I copied from the Installation.txt:

   LoadModule php4_module c:/php/sapi/php4apache.dll
   AddModule mod_php4.c
   AddType application/x-httpd-php .php

I still get the same error message. However, on all three occasions when I clicked out of the error message, I got a message telling me PHP was successfully installed.

Do you have a hunch what I should do next? Thanks.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to