• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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