• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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