• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

Question panel.ini settings / panel.log errors

Gjimi

Basic Pleskian
Hello
in panel.log come these error messages:
ERR [panel] Invalid config structure in max_execution_time.0
ERR [panel] Invalid config structure in max_execution_time.1
(until 5)

Settings in panel.ini:
settings.performance.max_execution_time.custom=false
settings.performance.max_execution_time[]=30
settings.performance.max_execution_time[]=60
settings.performance.max_execution_time[]=90
settings.performance.max_execution_time[]=120
settings.performance.max_execution_time[]=150
settings.performance.max_execution_time[]=200
settings.performance.max_execution_time.default=90

and

error:
ERR [1] Sanitizer: keys of [panelIni.php.settings.performance.disable_functions.values] must be all strings.

Settings in panel.ini:
settings.performance.disable_functions.custom=false
settings.performance.disable_functions.values[]="pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait"
 
Last edited:
Do you have header

Code:
[php]

for PHP options in your panel.ini?
 
Last edited:
@Gjimi, I suggest pasting the entire panel.ini inside a code block here. Perhaps someone will be able to spot something.

Use the the word "CODE" within square brackets to begin, word "/CODE" within square brackets (no quotation marks!) to end the code block (see here)...

Or just use a preferred pastebin service, such as paste.mozilla.org, and post a link to it...
 
PHP:
settings.performance.disable_functions.custom=false
settings.performance.disable_functions.values[]="pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait"

settings.performance.max_execution_time.custom=false
settings.performance.max_execution_time[]=30
settings.performance.max_execution_time[]=60
settings.performance.max_execution_time[]=90
settings.performance.max_execution_time[]=120
settings.performance.max_execution_time[]=150
settings.performance.max_execution_time[]=200
settings.performance.max_execution_time.default=90

settings.performance.memory_limit.custom=false
settings.performance.memory_limit.values[]="64M"
settings.performance.memory_limit.values[]="128M"
settings.performance.memory_limit.values[]="192M"
settings.performance.memory_limit.values[]="256M"
settings.performance.memory_limit.values[]="384M"
settings.performance.memory_limit.default="128M"
 
Back
Top