PHP errors related to resource limits similar to this one: Fatal error: Maximum execution time of 30 seconds exceeded in /...file in line Xcan be caused by the resource limit imposed by php for the execution of scripts when cataloging huge amounts of files. You can change the default values that come with the standard php installation in the file /etc/php.ini (e.g. increasing max execution time to 45, 60 or what you need) . The important section of /etc/php.ini
is the one that follows :
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30
; Maximum execution time of each script, in seconds
memory_limit = 8M
; Maximum amount of memory a script may consume (8MB)