• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Question panel.ini settings / panel.log errors

Gjimi

New 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