• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

PHP 5 installation troubles...

NathanBWF

Golden Member
So acording to php.net, all I need to do to get PHP5 running is add in the following to my httpd.conf file:

# For PHP 5 do something like this:
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd-php .php

# configure the path to php.ini
PHPIniDir "C:/php"

As soon as I put in LoadModule php5_module "c:/php/php5apache2.dll" and try to restart Apache, it crashes. If I take that line out, Apache fires up again no prob after a restart. Also, I don't even have a php5apache2.dll in c:\php folder.

Am I missing something...?
 
Nevermind, figured it out. The MSI installer doesn't have everything that the zip package has. I downloaded that, unzipped it to my PHP dir., re-added those lines to my httpd.conf file and everything is fine now.
 
Back
Top