Phpinfo serves to display a page that contains information and php settings used on the server. This information is needed to find out the limitations of the server.
When you upload files to your website and then get a timeout, or when you want to import data to the server, but often fails, you can try to check the server limitations through this php info.
With Phpinfo you can see PHP information on your hosting such as:
- PHP Version that you use
- max_execution_time
- memory_limit
, post_max_size
- And so on
To make it, here are the steps:
1. If you are using Cpanel:
Please login your cpanel
Then select FILE MANAGER>>>PUBLIC_HTML>>>pilih File>>>then create a file phpinfo.php.>>>Then in Create New FIle
After that, type the following script:
<?php phpinfo(); ?>