ayok Posted September 11, 2008 Share Posted September 11, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/ Share on other sites More sharing options...
Caesar Posted September 11, 2008 Share Posted September 11, 2008 Edit your php.ini file and increase the memory limit. Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639425 Share on other sites More sharing options...
jaunty_mellifluous Posted September 11, 2008 Share Posted September 11, 2008 That's is, if your host lets you. Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639426 Share on other sites More sharing options...
ayok Posted September 12, 2008 Author Share Posted September 12, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639593 Share on other sites More sharing options...
ayok Posted September 12, 2008 Author Share Posted September 12, 2008 anyone? Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639765 Share on other sites More sharing options...
kenrbnsn Posted September 12, 2008 Share Posted September 12, 2008 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 Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639799 Share on other sites More sharing options...
discomatt Posted September 12, 2008 Share Posted September 12, 2008 http://www.radinks.com/upload/config.php Quote Link to comment https://forums.phpfreaks.com/topic/123847-fatal-error-allowed-memory-size/#findComment-639840 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.