A Guide to Installing Apache, PHP, MySQL, and PHPMyAdmin on Windows

So I tried to set up this Apache web server and i get this error message.

apacheerror.jpg


I'm stumped I've been trying different configurations for a few days and I'm lost ha ha. Need some help please :)
 
oh shoot, i have dreamweaver setup on it, IIS is running ill try stopping the service, thanks :p I forgot i set that up.


Edit: okay so now im stuck at this part "Rename php.ini-dist to php.ini." I downloaded the 5.3.2 win32 zipfile version of php, i cannot find the php-5.2.8-Win32.zip now I dont have a php.ini-dist , only 2 files: php.ini-development and php.ini-production... any suggestions?
 
I would suggest, without knowing for sure, that php.ini-dist has been replaced by php.ini-development and php.ini-production and that you should rename one of them to php.ini. Which one you rename depends on whether this is a development machine or a production machine, in your case I would say development.
 
I would suggest, without knowing for sure, that php.ini-dist has been replaced by php.ini-development and php.ini-production and that you should rename one of them to php.ini. Which one you rename depends on whether this is a development machine or a production machine, in your case I would say development.

So i changed the php.ini-development file to php.ini and i did the next 2 steps
1.Navigate to C:\WEB\APACHE\Conf. Open httpd.conf with a text editor. Scroll to the very bottom and add the following lines:

Code:
LoadModule php5_module "C:/WEB/PHP/php5apache2_2.dll"
AddHandler application/x-httpd-php .php
PHPIniDir "C:/WEB/PHP"
and

2.Find DirectoryIndex and add index.php to the end.

I now get this error : /

apacheerror.jpg
 
Back
Top Bottom