PHP Man Posted August 2, 2006 Share Posted August 2, 2006 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.dllAddType application/x-httpd-php .phpAddType application/x-httpd-php-source .phps ??? Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/ Share on other sites More sharing options...
PHPSpirit Posted August 2, 2006 Share Posted August 2, 2006 JJYou 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>... Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-67914 Share on other sites More sharing options...
PHP Man Posted August 2, 2006 Author Share Posted August 2, 2006 thnx very much Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-67917 Share on other sites More sharing options...
PHP Man Posted August 2, 2006 Author Share Posted August 2, 2006 i just added the lines to the places where you told me but when i go to start the apache server and says that the operation has failed and won't start Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-67921 Share on other sites More sharing options...
PHP Man Posted August 2, 2006 Author Share Posted August 2, 2006 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 Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-67928 Share on other sites More sharing options...
PHPSpirit Posted August 2, 2006 Share Posted August 2, 2006 Read the file "install.txt" in the directory of PHP, all information is there. Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-67946 Share on other sites More sharing options...
wildteen88 Posted August 2, 2006 Share Posted August 2, 2006 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. Quote Link to comment https://forums.phpfreaks.com/topic/16342-installing-php/#findComment-68020 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.