Jump to content

Fatal error: Allowed memory size...


ayok

Recommended Posts

Hi,

 

I have an upload page for images. It can upload multiple images.

However I've got problem when I upload bigger images, and getting this error

Fatal error: Allowed memory size of 16777216 bytes exhausted (tried to allocate 9152 bytes)

Is it something to do with the memory_limit? In my phpinfo, I see memory_limit = 16MB.

 

Any idea how I can solve this error?

 

Thanks,

ayok

Link to comment
https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/
Share on other sites

Edit your php.ini file and increase the memory limit.

 

To how much? What 'tried to allocate 9152 bytes' means?

 

I can upload some pictures without this error. What size limit that I can set for the user knowledge to avoid this error?

I have no access to php.ini.

 

Thanks,

ayok

You can try using ini_set() to up the memory limit:

<?php
$old_mem = ini_set('memory_limit','32M');
if (!$old_mem) echo 'Could not set memory_limit to 32Mb';
else echo 'Memory_limit has been changed from ' . $old_mem . ' to 32Mb';
?>

 

Ken

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.