that error can happen when you set the upload behavior to resize the image. resizing the image can take a lot of memory on the server.
to increase the server memory, you can add the following code at line 1:
<?php
ini_set("memory_limit", "256M")
?>

