SSH Befehle – Memory Limit, Execution Time
Oftmals überschriten gewissen SSH Prozesse das Memory Limit oder die Execution Time.
Beides könnt ihr via Kommandozeile verändern.
Memory Limit
php -d memory_limit=2048M [ssh_command]
Execution Time
php -d max_execution_time=1800 [ssh_command]
Kombiniert
php -d memory_limit=2048M -d max_execution_time=1800 [ssh_command]

