php apache integration

ducky16000

Baseband Member
Messages
89
I have been reading sams teach yourself PHP, MySQL and apache, but when I tried to integrate php into apache by adding Loadmodule php5_module c:/php/php5apache2.dll and the addtype it tried to get me to download the webpage but when I use 127.0.0.1 it shows me the apache test page as it should, but when I do 127.0.0.1/info.php which is a test program, it tells me that it cannot be found on the server. any help would be greatly appreciated.
 
create this file in yuor htdocs directory,

test.php
Code:
<?php
phpinfo();
?>

then browse to http://127.0.0.1/test.php and tell us what happens?

if could be that the root directory of yuor server is set to a different directory than yuo are expecting.
 
Back
Top Bottom