Install Config Wiki

All about installing, configuring and troubleshooting

User Tools

Site Tools


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
Last revisionBoth sides next revision
configure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0 [2023/06/21 03:31] wikiadminconfigure_certain_settings_in_php_ini_ubuntu_22_04_nextcloud_27_0 [2023/06/21 18:37] 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 24: Line 24:
 max_execution_time = 300 max_execution_time = 300
 date.timezone = America/New_York date.timezone = America/New_York
 +</code>
 +
 +Here is another author's similar list for making changes.  For the basic nextcloud deployment, change the default options using the following configuration.
 +
 +<code>
 +file_uploads = On
 +allow_url_fopen = On
 +memory_limit = 512M
 +upload_max_filesize = 500M
 +post_max_size = 600M 
 +max_execution_time = 300
 +display_errors = Off
 +date.timezone = Europe/Amsterdam
 +output_buffering = Off
 </code> </code>
  
Line 52: 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'
 +
 +<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.txt · Last modified: 2023/06/21 18:39 by wikiadmin