Quote:
Originally Posted by snakes1100
php is trying to allocate more memory than its allowed when executing that file.
edit php.ini & raise the "memory_limit"
|
Thanks for replying.
Should this not refresh itself?
What would you suggest i set it to?
--------------- Added [DATE]1262440856[/DATE] at [TIME]1262440856[/TIME] ---------------
Im inside the private php file now
PHP Code:
// ############################### start download pm ###############################
// downloads selected private messages to a file type of user's choice
if ($_REQUEST['do'] == 'downloadpm')
{
if (($current_memory_limit = ini_size_to_bytes(@ini_get('memory_limit'))) < 128 * 3024 * 3024 AND $current_memory_limit > 0)
{
@ini_set('memory_limit', 128 * 1024 * 1024);
That is what the limit currently reads. However, chaning it still raises the same message.