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.

MAMP

Individual settings you can confirm using phpInfo

MySQL 5.6 or higher

MAMP

PHP 5.4.2 or higher

MAMP

PHP extensions required: MySQLi, cURL

MAMP

MAMP

upload_max_filesize 40M

MAMP

post_max_size 128M (requirement not met in screenshot)

MAMP

max_execution_time 300 (requirement not met in screenshot)

MAMP

memory_limit 128M

MAMP

max_input_vars 2000 (requirement not met in screenshot)

MAMP