Open php ini in terminal

Open php ini in terminal
php.ini file location.

What is the php.ini file, why we use it ? Where do I find this file on Ubuntu ? How I open and edit the php.ini file on a terminal. This is the most common questions asked by beginners who are either new to PHP or Linux.

php.ini File

The php.ini file is a default configuration file used when your PHP application runs. When PHP starts it reads the configuration setting from the php.ini file.

If you have installed LAMP on a Ubuntu operating system and unable to find and edit this file then this tutorial is for you.

PHP Script to Find php.ini Location

If you are working on  Windows, Ubuntu or any operating system. You can easily find the location of php.ini configuration file using simple PHP script.

Create a PHP file. Let’s name it inipath.php (you can choose any name with a .php extension) .

Open this file in your browser and you will get the path of  the php.ini.

Open php ini in terminal

I am using Ubuntu and the location of php.ini in Ubuntu is /etc/php5/apache2/php.ini . Similarly, if you are running this script on Windows and Mac you’ll get the path as per their directory structure.

For version 7.4.3, the php.ini path is /etc/php/7.4/apache2/php.ini.

Open php ini in terminal

php.ini File Location in Ubuntu

For PHP5

The path of php.ini in Ubuntu is /etc/php5/apache2 . Open the terminal and start typing following commands.

$cd  /etc/php5/apache2

$ls

To view the files present in apache2 directory, type ls command. The files present in this directory (conf.d and php.ini) are displayed.

For PHP 7.4 version

The path of php.ini is

$cd  /etc/php/7.4/apache2

$ls

If you are not familiar with Linux commands then read my previous post on Linux Commands with Examples .

The other easiest way to locate the php.ini location is using locate command.

How to open & edit the php.ini configuration file on a Terminal

To open & edit the php.ini file I am using vim/vi editor.

Read more about Beginners guide for vi/vim editor.

You can directly open this file using the following command.

$  sudo vim/etc/php5/apache2/php.ini

NOTE – Once you have done the changes in the php.ini file. You need to restart the apache web server so that the new changes get reflected.

To restart the Apache WebServer.

$sudo/etc/init.d/apache2 restart

or

$sudo service apache2 restart

Abstract vs Interface in PHP

Abstract class in PHP

Programming Videos Tutorial

Conclusion

I hope this tutorial helped you to find and edit the php.ini file. If you are still facing any issue you can ask your question through comments.

How do I open PHP ini in terminal?

To open the default php. ini file for editing, use one of the following commands (depending on which Linux distribution you're using): Ubuntu 16.04: sudo nano /etc/php/7.0/apache2. CentOS 7: sudo nano /etc/php.

Where is the PHP ini file in Terminal?

Your answer.
You can get a full phpinfo() using : php -i..
And, in there, there is the php.ini file used : $ php -i | grep 'Configuration File' Configuration File (php.ini) Path => /etc Loaded Configuration File => /etc/php.ini..
On Windows use find instead: php -i|find/i"configuration file" Hope this is helpfull!!.

How do I open PHP ini file?

If you can access one of your PHP files, open it in a editor (Notepad) and insert phpinfo(); after php on a new line. This will tell you the php. ini location.

How do I open a PHP ini file on Mac?

Show activity on this post..
Find .ini location path. Open Terminal and run command php --ini..
copy this path /usr/local/etc/php/7.4/php.ini and open it by command nano /usr/local/etc/php/7.4/php.ini..
Make changes and Quit with the keyboard combination Ctrl+X to exit nano..
run apachectl restart after finish..