Jump to content

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

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.