Apache httpd 2.0.65 Released and Retired
2013-07-09
The Apache HTTP Server Project has ended legacy development of the 2.0 legacy branch, and announces the conclusive, historical release of version 2.0.65 of Apache HTTP Server ("httpd"). No further releases will occur for the 2.0 version family.
This version of httpd represents the last security and bugfix release of 2.0, although it is by no means all-inclusive of either security nor bug fixes. The Apache HTTP Project developers strongly encourage all users to finish their migrations to stable version 2.4 or the legacy version 2.2 for additional, important updates.
For further details, see the announcement.
LoadModule php5_module "c:/Webserv/PHP-5.3.18/php5apache2_4.dll"
AddType application/x-httpd-php .php .php3 .php4 .php5 .phpx
AddType application/x-httpd-php-source .phps
PHPIniDir "C:/Webserv/PHP-5.3.18"
I'm afraid I can't get subscribed :( Maybe a bug on their end. Very small amount of traffic, apparently, too. At any rate, I hope you all can help.
Apparently the following is a common problem with getting Apache to execute PHP scripts (so maybe it's the right forum after all). I installed the windows installer version of PHP with threads (VC6-x86). I installed it to support Apache2.0.x. I have Apache 2.0.x. I double-checked using Firebug.
From "Run" I can navigate to the PHP installation dir and type:
php.exe test.php
where test.php contains <? php phpinfo() ?>
and it prints out the phpinfo. So php appears to be correctly installed and configured.
I have the following in my http.conf file:
PHPIniDir "C:/PHP"
LoadModule php5_module "C:/PHP/php5apache2.dll"
AddHandler application/x-httpd-php .php
I restarted Apache. No errors came up, so it found the file. I have also tried adding this to the end of the above:
AddType text/html .php
I have a file in htdocs called "test.php" that has the following code:
<html><body>
<?php phpinfo() ?>
</body></html>
It prints all of that, just as typed above, to the screen.
How can I get my php file to display correctly?
TIA,
Juan