What versions of PHP and MySQL do you have in your servers?
The default version of PHP used by our hosting is updated as official versions are released.
How to view installed Apache modules
To view all installed Apache modules on the hosting, you can create a .php file (info.php for example) within the /public/ folder and run it in your browser at the URL "http://www.yourdomain.com/info.php".
The content of this file should be this PHP function:
phpinfo();
This will generate a web page with all the details of the web server.
How to get the MYSQL version from PHPMyAdmin
Regarding the MYSQL version, we use the latest stable version available and try to keep it updated whenever possible.
It is possible to locate the MySQL version by running an SQL query from PHPMyAdmin by executing this query from the "SQL" tab:
SELECT @@version;