[PHP] linux: how can I check if php/mysql is working properly?

2002-06-18 Thread Phil Schwarzmann
i have some php files in /var/www/html/ and none of the php is working properly. all i've done so far is installed Linux Red Hat 7.2 and php/mysql/apache is supposedly already installed with Redhat. How do I get this stuff configured? Anyone have a nice link?

Re: [PHP] linux: how can I check if php/mysql is working properly?

2002-06-18 Thread Scott
If you told RH to install PHP/MySQL/Apache then everything should be ok. I forget the default document root, but what happens if you put a test.php with this in it: ?php echo phpinfo(); ? Other than that it should work out of the box, just make sure you get the patches. On Tue, 18 Jun

Re: [PHP] linux: how can I check if php/mysql is working properly?

2002-06-18 Thread Tyler Longren
Just for future reference, you don't actually need to put the 'echo' before the phpinfo(). Calling phpinfo() by itself will print the desired info. -- Tyler Longren Captain Jack Communications [EMAIL PROTECTED] www.captainjack.com On Tue, 18 Jun 2002 15:30:38 -0400 (EDT) Scott [EMAIL

RE: [PHP] linux: how can I check if php/mysql is working properly?

2002-06-18 Thread Steve
Link: http://www.devshed.com/Server_Side/PHP/SoothinglySeamless/page1.html -Original Message- From: Phil Schwarzmann [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 12:37 PM To: [EMAIL PROTECTED] Subject: [PHP] linux: how can I check if php/mysql is working properly? i have