hello,

on a file upload, I get the error:

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 9920 bytes) in/home/content/38/8848538/html/dynamic-site/start-page/upload-page2.php on line 176

line 176 of my upload-page2.php is:

$image=imagecreatefromjpeg($filepath);

I dont really get whats going on. Ive set the max uplaod file size before this, which i changed to:

$maxFileSize=9999999999999999999999;

to make sure it wasn't this but it had no effect. i still get the fatal error.

anyone got some ideas? i can post the whole php file if needed but may be a bit long winded

    Near the top of this page (just below where it says "Welcome, rpsep2", there is a menu bar. One of the options on that menu bar is "Search". Click that, and type [font=monospace]allowed memory size imagecreatefromjpeg[/font] into the text field that appears, and click "Go".

      rpsep2;11003835 wrote:

      $maxFileSize=9999999999999999999999;

      This will have no effect because the value, as an integer, is much larger than a 32- or 64-bit system can understand.

        Write a Reply...