Quote:
Originally Posted by Gemma
Try editing your php.ini file settings to something like
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 128M ; Maximum amount of memory a script may consume (8MB)
Or, if you don't have access to your php.ini file, temporarily up your limits by editing your includes/config.php file and add this lines right under the <?php line:
ini_set('memory_limit', 128 * 1024 * 1024);
You may need to change the 128 to 256 or 512
See if that helps
|
That worked perfectly with the number 512.
I have to say how great it is to get advice from someone who has a clue.
Thanks, great work.