need help
Posted by: haxclan
Posted on: 2006-07-26 18:48:00
How do I find out what version of PHP, MySQL, and Apache I am running? Can I find this stuff out using my control panel?
Thanks
Posted by: haxclan
Posted on: 2006-07-26 18:48:00
How do I find out what version of PHP, MySQL, and Apache I am running? Can I find this stuff out using my control panel?
Thanks
Posted by: Raz2133
Posted on: 2006-07-26 20:54:00
In reply to:How do I find out what version of PHP, MySQL, and Apache I am running?
Probably the easiest way is to create a file called showinfo.php with the following contents and upload it to the domain you are interested in.
<?php
phpinfo();
?>
Browse to this file and the information you want will be displayed (together with a lot of other info).
Mark