How Tos > Remote
Use phpinfo() to confirm your PHP settings on your host
Cut and paste the following into a file.
<?php
/* Use the following code to show all the information about PHP. */
phpinfo();
?>
Name the file phpinfo.php. Move this file to the document root of your live website. Type the following into your browser:
https://mylivesite/phpinfo.php
You should now see the following in your browser. Remove this file when you are done verifying your settings.
Individual settings you can confirm using phpInfo
MySQL 5.6 or later
PHP 5.4.2 or later
PHP extensions required: MySQLi, cURL
upload_max_filesize 40M
post_max_size 128M (requirement not met in screenshot)
max_execution_time 300 (requirement not met in screenshot)
memory_limit 128M
max_input_vars 2000 (requirement not met in screenshot)