Sometimes, you need a high value, for example when importing a very large website with installatron. If you set it to a high value like 100.000 and you still get an error like this:
Importing: Error: Compression failed: [5] System process terminated
prematurely. The web hosting PHP max_execution_time is set too low to
backup this application (detected: 100000). Contact your service
provider.
Then add this to the top of .htaccess and retry. Be sure to remove it again when ready!
RewriteEngine On
RewriteRule .* - [E=noabort:1, E=noconntimeout:1]Code language: CSS (css)