How can I see the PHP limitations for my account?
Here's how to view the PHP limitations on your server's phpinfo page:
log into your cPanel
then in your File Manager, create the phpinfo.php file in your public_html folder.
You need to add the following code to your newly created phpinfo.php file:
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?>
Save and close the file.
Once it's done, call this file by going to: http://yourdomain.com/phpinfo.php
This will give you access to all the limitations of PHP as well as other information about PHP that you may find useful.
Updated on: 14/02/2023
Thank you!