Locating php.ini File


A critical file you often need to manage is the php.ini file, also known as the PHP configuration file. It controls many import aspects of what you can and can not do with your site, including the size of files that you can upload.

Different hosts use different schemes for storing and accessing files and so you may need to access your php.ini file.

This tutorial will show you how to find the location of the php.ini file on any server.

Create phpinfo.php File

  1. Create a very simple PHP script and place it in your home directory. Using a script editor or a plain text editor (not a word processor) create file called phpinfo.php with this code:
    <?php
    phpinfo();
    ?>
  2. Save the file as phpinfo.php
  3. Upload this file to the document root

Locating php.ini File

  1. In your browser address bar, access the file by typing in: http://<your_domain_name>/phpinfo.php

    phpinfo.php file

  2. You'll get a complete list of all your PHP settings. In the phpinfo.php page you can see:
    • the PHP version at the top of the file.
    • the location of your php.ini file

If you scroll down the page, and you can find the current version of MySQL and PHP settings like register_globals and more.

  • php, configuration file, web script
  • 136 istifadəçi bunu faydalı hesab edir
Bu cavab sizə kömək etdi?

Related Articles

Video: Create Email Address in cPanel

This video tutorial demonstrates how to create an email address using cPanel Shared Hosting...

Disabling mod_security in cPanel

Mod_security is an apache module that helps to protect your website from various attacks. It is...

Video: Setup Email Forwarder in cPanel

View our Step-by-Step Tutorial Video for Setting up an Email Forwarder in cPanel Shared Hosting.

View Server PHP Environment with phpinfo.php

The phpinfo() function outputs a huge amount of information about the system you're using, such...

How to Create Sudo User on CentOS

This article provides step-by-step setup guide for adding Sudo user to CentOS system. The sudo...