So bearbeiten Sie php.ini-Dateien

Mary-Kate Olsen
Freigeben: 2024-10-18 12:38:30
Original
667 Leute haben es durchsucht

How to Edit php.ini Files

Intro

PHP configurations are managed through the php.ini file. Editing this file allows you to customize various PHP settings such as enabling or disabling short tags, setting memory limits, and more.

This guide will show you how to edit the php.ini file on Ubuntu servers for both OpenLiteSpeed and Nginx to enable short PHP tags.

Locating php.ini File for Nginx on ubuntu

Depending on the PHP version you are using, the php.ini file is typically located in one of the following directories:

/etc/php/7.4/fpm/php.ini  # For PHP 7.4
/etc/php/8.0/fpm/php.ini  # For PHP 8.0
/etc/php/8.1/fpm/php.ini  # For PHP 8.1
Nach dem Login kopieren

We can use the command php --ini in the terminal to find the path of the php.ini file.

root@ubuntu:~# php --ini
Configuration File (php.ini) Path: /etc/php/8.1/cli
Loaded Configuration File:         /etc/php/8.1/cli/php.ini
Scan for additional .ini files in: /etc/php/8.1/cli/conf.d
Additional .ini files parsed:      /etc/php/8.1/cli/conf.d/10-mysqlnd.ini,
.... .... ....
Nach dem Login kopieren

To find the exact path, run:

php --ini | grep "Loaded Configuration File"
Nach dem Login kopieren
Nach dem Login kopieren

This is the output:

root@ubuntu:~# php --ini | grep "Loaded Configuration File"
Loaded Configuration File:         /etc/php/8.1/cli/php.ini
Nach dem Login kopieren

Locating php.ini File for OpenLiteSpeed on ubuntu

For OpenLiteSpeed, the php.ini file is usually located in:

/usr/local/lsws/lsphp74/etc/php/7.4/litespeed/php.ini  # For PHP 7.4
/usr/local/lsws/lsphp80/etc/php/8.0/litespeed/php.ini  # For PHP 8.0
Nach dem Login kopieren

If you’re unsure of the path, you can find it by running:

php --ini | grep "Loaded Configuration File"
Nach dem Login kopieren
Nach dem Login kopieren

This is the output:

root@ubuntu:~# php --ini | grep "Loaded Configuration File"
Loaded Configuration File:         /usr/local/lsws/lsphp81/etc/php/8.1/litespeed/php.ini
Nach dem Login kopieren

Editing the php.ini File

Use a text editor like nano or vim to open the php.ini file. Replace 8.1 with your actual PHP version.

For Nginx:

nano /etc/php/8.1/cli/php.ini
Nach dem Login kopieren

For OpenLiteSpeed:

nano /usr/local/lsws/lsphp81/etc/php/8.1/litespeed/php.ini
Nach dem Login kopieren

Search for the short_open_tag directive. To search in nano, press Ctrl + W, type short_open_tag, and press Enter.

Modify the line to:

short_open_tag = On
Nach dem Login kopieren

If the line is commented out (has a ; at the beginning), remove the ; to uncomment it.

  • For nano, press Ctrl + X, then Y, and press Enter to save and exit.
  • For vim, press Esc, type :wq, and press Enter.

Restart Services To Apply Changes

After making the changes, we need to restart the services to apply the changes.

For Nginx:

sudo systemctl restart php8.1-fpm
sudo systemctl restart nginx
Nach dem Login kopieren

For OpenLiteSpeed:

sudo systemctl restart lsws
Nach dem Login kopieren

Verify The Changes

To confirm that the short tags are enabled, create a test PHP file in your web server’s root directory:

<?  // Notice how we are using short tags.
    phpinfo(); 
?>
Nach dem Login kopieren

Access this file via your browser (e.g., http://yourserver.com/test.php). Check the short_open_tag value in the output to see if it is set to On.

Conclusion

Editing the php.ini file is straightforward but requires attention to detail. Always ensure you have the correct path to the php.ini file and restart the appropriate services after making changes. This guide covered how to enable short PHP tags for both Nginx and OpenLiteSpeed on Ubuntu servers.

Das obige ist der detaillierte Inhalt vonSo bearbeiten Sie php.ini-Dateien. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:dev.to
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage