Jump to content

installing php


Recommended Posts

i know that after installing php you need to modify the "httpd" file for the apache server but i was wondering where to put the following 3 things in it:

LoadModule php5_module php/sapi/php5apache2.dll
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps

???
Link to comment
Share on other sites



JJ


You need configure the apache (httpd.conf) for php.

Open the file httpd.conf and finds these places:

...
#LoadModule vhost_alias_module modules/mod_vhost_alias.so
#LoadModule ssl_module modules/mod_ssl.so
--> LoadModule php5_module php/sapi/php5apache2.dll <--
...
<IfModule mime_module>
    --> AddType application/x-httpd-php .php <--
    --> AddType application/x-httpd-php-source .phps <--
</IfModule>
...

Link to comment
Share on other sites

nvm i forgot to add the indents in the lines so now it works. but after i start the server it won't show the php things as the instalation website says "http://www.php-mysql-tutorial.com/install-apache-php-mysql.php#php"

nothing apears only white screen
Link to comment
Share on other sites

They can go anywhere. However this line:
[code]LoadModule php5_module php/sapi/php5apache2.dll[/code]
Should be:
[code]LoadModule php5_module C:/php/php5apache2.dll[/code]
Change C to the letter of your drive.

Just add them to the bottom of the httpd.conf.

Now save the httpd.conf and restart Apache. To restart Apache look at the bottom right of the screen next to the clock. Look for the Apache taskbar icon, whcih has a green triange pointing to the right, which is inside a white circle and a purple feater pointing to top left. If you left click that icon and select Apache2 then restart from the menu that appears. Wait 30 secounds. Now goto http://localhost/ and Apache should be configured to parse PHP files wth the PHP Intepreter.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.