HI I am going to install MyBB but I am not sure whether I have installed the correct version of PHP and MySQL.
PHP version 5.1.0 or above with XML Extension installed
MySQL version 4.0 or above
How to check that? Especiall the PHP XML Extension?
Is there simpler way than the <?php phpinfo() ?>
solution? I am expecting a command line solution.
Thanks a lot!
Do it from your command line:
and:
OR
Put this in your root directory:
Save it as phpinfo.php and point your browser to it (this could be http://localhost/phpinfo.php)
Use
dpkg
to find the installed package versions.Any one of these queries will tell you what the MySQL version running is once connected:
This works for MySQL 5.1+
Doing the following from the command line:
mysql -V will get you the version of the client.
mysqld -V will get you the version of the server.