Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 - Part 3

Part 3 - Install PHP 5

Unzip the PHP zip package that downloaded in Part 1 to C:\PHP (Create a new folder named PHP at C:\ root level). Then shut down Apache server.

Open the Apache httpd.conf with a text editor and add two lines of code:

LoadModule php5_module C:/php/php5apache2.dll
AddType application/x-httpd-php .php

Added .php extension to show how to parse .php files

Note also the directory in load module points to where we installed PHP. So if you install PHP at other location, change it accordingly. The directory style should be / too instead of common DOS \.

These two lines can be added to the bottom of the httpd.conf file. However, note that modules in the load list are in reverse-priority order; those that come later can override or pre-empt those listed earlier. Therefore, adding php_mod at the end of the list can have unexpected results, such as disabling mod_rewrite (and other modules) for any php files that exist (mod_rewrite will run fine if the file doesn’t exist). The same error can disable mod_auth and other important modules. In summary, php_mod should be loaded before any modules you wish to run before your php code is executed. See the note in the Apache AddModule documentation for how to find the recommended ordering.

Next, copy/paste “php.ini-recommended” to C:/Program Files/Apache Group/Apache2 (or your Apache installation path), and rename it to php.ini. Restart the Apache server.

Testing php5 Installation

Create a file with the following contents and save it to the root web folder (C:/Server/htdocs or default C:/Program Files/Apache Group/Apache2/htdocs/) as “php5info.php”.

<?php
phpinfo();
?>

Access the following url http://localhost/php5_info.php. The complete PHP setting should be displayed on the browser. If there is an error or nothing been shown, there is problem with installation. Try the installation procedures again.

Enable MySQL extension

The php.ini that copied from php.ini-recommended already being set to optimum setting, so there is no special need to edit it. However, it still need to edit to enable mysql extension.

Open php.ini in the Apache2 directory with text editor.

Search for the line of extension_dir = “./”. Change it to extension_dir = “C:\php5\ext”. Also, uncomment the line of extension=php_mysql.dll.

Save the php.ini. Restart the Apache server. Re-try to access http://localhost/php5_info.php. It should working fine. If not try to check what’s the cause of errors, which most likely due to wrong extension_dir or missing extension. Or you may try to copy all the needed extentions (with .dll extenstion) to Apache2 directory.

Share and contribute or get technical support and help at My Digital Life Forums.



13 Responses to “Install Web Server in Windows XP with Apache2, PHP5 and MySQL4 - Part 3”

  1. Todd
    May 20th, 2006 03:42
    1

    well, I have followed your directions and everyone else’s before this, but no luck. After adding the module declaration in the httpd.conf file, when I restart apache i get - syntax error: cannot load specific module. all of my paths are correct what is the problem?

  2. Administrator
    May 20th, 2006 14:33
    2

    Hi Todd, the issue might be related to mod_perl (if you’re using it as ActivePerl). If you install Apache/2.2, please use mod_perl that is compiled with Apache 2.2 and not Apache 2.0 for compatibility issue.

  3. greg
    July 12th, 2006 19:10
    3

    I have the server set up and i can read a php file if i start it withhtml tags but it doesnt read the php script i put in. if i dont use the html tags i get a download box when i click on the link to test the php?? can u help me!!

  4. Administrator
    July 12th, 2006 19:46
    4

    Looks like your web server doesn’t parse PHP file and treat it as text file, follow the steps carefully.

  5. greg
    July 13th, 2006 07:32
    5

    ok i reset it and now the server cannot find php5apache2.dll? It is in the php folder. I am using php5.1.4 and apache2.2.2!

  6. greg
    July 13th, 2006 08:43
    6

    I got it to work i uninstalled apache 2.2 and installed 2.0 and followed your steps again and now it is all working:)

    Thank you for the help!

  7. Tom
    September 10th, 2006 20:48
    7

    There seems to be a problem with Apache 2.2 and the PHP dll modules (on Windows obviously, don’t know if there are any problems on unix). I fixed it by going to http://www.apachelounge.com/download/ and downloading their version of the php4apache2.dll file. This also comes with another file which you have to put in your Apache/bin directory, and you will also need to download a MS Visual C++ Package if you don’t have the .NET framework installed. This is all explained in the readme file that comes with the DLL.

  8. cary
    October 7th, 2006 07:18
    8

    With Apache 2.2, you will need PHP 5.2.x. It has the php5apache2_2.dll that is compiled for the new version. You can download a stable build at http://snaps.php.net/

  9. JaD
    February 19th, 2007 17:11
    9

    You said…

    Search for the line of extension_dir = “./”. Change it to extension_dir = “C:\php5\ext”. Also, uncomment the line of extension=php_mysql.dll.

    Save the php.ini. Restart the Apache server. Re-try to access http://localhost/php5_info.php. It should working fine. If not try to
    …..
    …..
    “C:\php5\ext”. ?????? — the correct line is
    “C:\php\ext”.

  10. JaD
    February 19th, 2007 17:23
    10

    u forgot a thing, for the apache..
    modify DirectoryIndex and put index.php
    in rest is a good tutorial :P

  11. Asokan
    February 25th, 2007 01:30
    11

    I am trying to connect mysql5 from apache2 but
    browser showing an error

    Warning: require(/config/db_config.php) [function.require]: failed to open stream: No such file or directory in C:\webroot\dbconnect.php on line 2

    Fatal error: require() [function.require]: Failed opening required ‘/config/db_config.php’ (include_path=’.;C:\php5\pear’) in C:\webroot\dbconnect.php on line 2

    I am using,MySQL5, PHP5 and Apache2.2 running windows xp
    Request your help
    Thanking you
    ******

  12. Asokan
    February 25th, 2007 01:30
    12

    I am trying to connect mysql5 from apache2 but
    browser showing an error

    Warning: require(/config/db_config.php) [function.require]: failed to open stream: No such file or directory in C:\webroot\dbconnect.php on line 2

    Fatal error: require() [function.require]: Failed opening required ‘/config/db_config.php’ (include_path=’.;C:\php5\pear’) in C:\webroot\dbconnect.php on line 2

    I am using,MySQL5, PHP5 and Apache2.2 running windows xp
    Request your help
    Thanking you
    Asokan

  13. Handril
    June 21st, 2007 13:10
    13

    I have succes install apache 2, php5 and MySQL 5. I can display php info. But, why php script that I make can not run in the IE browser. this simple script like this:

    I use Windows XP.

    Thank you for your attention.

Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Subscribe without commenting


Custom Search

New Articles

Incoming Search Terms for the Article

error trying access httpd.conf file - error trying to access httpd.conf file - error trying access httpd.conf - error trying to access httpd.conf - error trying access httpd.conf file. you will need to manually configure the web server - php5 apache2 windows - Error trying access httpd.conf file. You will need to manually configure the web server. - php5 apache2 - "Error trying access httpd.conf file" - php error trying access httpd.conf - php5 apache windows - "error trying access httpd.conf" - php5 apache2.2 - php Error trying access httpd.conf file - installing php5 on apache2 on windows - apache2 windows php - install php5 apache2.2 - php error trying to access httpd.conf - how to run php scripts on windows xp - windows apache php5 - error trying to access httpd.conf file. you will need to manually configure the web server - error trying to access the httpd.conf file - apache PHP5 xp - php apache windows - apache php5 windows - error trying access httpd.conf php - error trying acces httpd.conf file - Apache2.2 and PHP - "Error trying to access httpd.conf" - error trying to access httpd.conf file. you will need to manually config it - .;C:\php5\pear - error accessing httpd.conf - install php 5 and apache 2 on windows xp - install apache2.2 perl windows xp - php5 apache 2.2 windows - using php5 and apache2 on windows - "Error trying access httpd.conf file" php - how to config apache on Windows XP - PHP "error trying access httpd.conf file. You will need to manually configure the web server" - php5 with apache 2 - error trying access httpd.conf file. - error trying access httpd.conf file + php - install php 5 on apache2.2 - manually configure apache2.2 for php5 - loadmodule php apache windows - "error trying access httpd.conf file. you will need to manually configure this web server." - apache php windows - php install error trying access httpd.conf - apache php5 module - configuring php on apache 2 on vista -