configure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
configure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0 [2023/06/21 17:58] wikiadminconfigure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0 [2023/06/21 18:39] (current) wikiadmin
Line 4: Line 4:
  
 <code> <code>
-:~$ sudo cd /etc/php/8.1/apache2/+:~$ cd /etc/php/8.1/apache2/
 :~$ /etc/php/8.1/apache2/$ :~$ /etc/php/8.1/apache2/$
 :~$ /etc/php/8.1/apache2/$ ls :~$ /etc/php/8.1/apache2/$ ls
Line 66: Line 66:
 Executing: /lib/systemd/systemd-sysv-install enable mysql Executing: /lib/systemd/systemd-sysv-install enable mysql
 :~$ :~$
 +</code>
 +
 +Use Vim to open php.ini again to enable opcache extension and configure its options and behavior.
 +
 +<code>
 +cd /etc/php/8.1/apache2/
 +vim php.ini
 +</code>
 +
 +First, uncomment the 'zend_extension=opcache' option to load the opcache extension. Uncomment means to remove the leading semi-colon ";" at the front of the line containing ';zend_extension=opcache' which will enable this extension in php.
 +
 +<code>
 +Before
 +;zend_extension=opcache
 +
 +After (uncommented)
 +zend_extension=opcache
 +</code>
 +
 +Now, move down to the '[opcache]' section of the php.ini file and add the following configuration.  Basically, just find the appropriate line and uncomment the line by removing the leading ';' semi-colon. You can safely ignore the . . . lines in the code box below.
 +
 +<code>
 +[opcache]
 +...
 +....
 +.....
 +opcache.enable = 1
 +opcache.interned_strings_buffer = 8
 +opcache.max_accelerated_files = 10000
 +opcache.memory_consumption = 128
 +opcache.save_comments = 1
 +opcache.revalidate_freq = 1
 +</code>
 +
 +Press ESC button to exit the INS mode of Vim and save the configuration by entering :w [enter], then exit by entering :q!
 +
 +Now restart the apache service to apply new changes using the command below.
 +
 +<code>
 +sudo systemctl restart apache2
 </code> </code>
configure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0.1687370334.txt.gz · Last modified: 2023/06/21 17:58 by wikiadmin