Page 1 of 1
need help to setu php , mysql , apache, on FREE BSD 4.5
Posted: Fri May 31, 2002 4:40 am
by home123
I have downloaded php , mysql and apache, on the Freebsd 4.5. How do I check if it working or if is setup correctly.This is a spare pc that I want to use as a serve..Thx
Posted: Sat Jun 01, 2002 4:58 am
by rats
Set up mysql first as directed by there docs. Use there tools supplied to see if it works.
Then set up apache use the apache guide..test it by using the browser to surf to your homepage directory.
http://localhost/
Set up php and test it by using a php script(test.php) in the homepage directory.
http://localhost/test.php
Usually a script like this will do.
<?
phpinfo();
?>