Wednesday 20 August 2008 6:16:46 am
Hello Anne, this is perhaps a PHP file size limitation issue (post_max_size) . You should look at your php.ini and verify that time-out and file-size limits are relaxed:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 900 ; Maximum execution time of each script, in seconds
max_input_time = 600 ; Maximum amount of time each script may spend parsing request data
memory_limit = 128M ; Maximum amount of memory a script may consume (8MB)
; Maximum size of POST data that PHP will accept.
post_max_size = 256M
then, restart apache and check if it works better... /usr/local/apache/bin/httpd -k restart </pascal>
|