If you're dealing with large directories with many files or if files are really big then your PHP might need more memory and longer execution time to finish those file operations before it gets killed by the server leaving you with blank page, partially zipped files or similar errors.

You can increase this by adding these two lines in Filegator's index.php file:

ini_set('max_execution_time', 300); //300 seconds = 5 minutes
ini_set('memory_limit','256M');  


This might not work on some shared hosting plans. Their servers are configured to ignore these settings. They can also limit resource consumption in other ways preventing your scripts from taking up too many memory or processor cycles.

Alert: For Control Panel Help & Tutorials, click here: Panel Tutorials
Was this answer helpful? 0 Users Found This Useful (0 Votes)

Powered by WHMCompleteSolution