> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://help.ex2.com/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How can I see the PHP limitations for my account?

# Here's how to view the PHP limitations on your server's phpinfo page:

1.  [log into your cPanel](https://help.ex2.com/en/article/how-to-log-in-to-my-cpanel-account-xyoqm0/?bust=1676305236426)
2.  then in your File Manager, create the phpinfo.php file in your public_html folder.
3.  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](https://help.ex2.com/en/article/what-is-php-and-what-is-it-used-for-x4xvdq/?bust=1784054117446) as well as other information about PHP that you may find useful.