PHP has many environmental variables that you are able to update as needed. For example, you may need to update your php memory_limit to prevent certain scripts from running out of memory. In order to change these values, you must first be able to see what they are. To do that, you will need to create a phpinfo page. A phpinfo page shows you all of your php environment settings.
Open a text editor, paste the following code and save it as phpinfo.php
<? phpinfo(); ?>
Open a file or FTP manager and copy/upload the file to the Drupal/web root directory.
Now you can access the file with the following link:
http://yourdomain.com/phpinfo.php
The results should look similar to the screenshot.
To find the specific value of a setting, search the page for what you're looking for. You can use your browser's search feature ( Ctrl + f ) and search for the parameter (Example: Server API).

- Log in to post comments