problem in uploading JPG files

See all posts See thread Reply

Re: the full code is here new!
by colin, 18 years, 11 months ago
You probably are running out of memory. See this thread

Try to raise your local memory to 20M, 32M or more.

You can add this in your script:
ini_set ( "memory_limit", "20M")

Or in a .htaccess file:
php_value memory_limit 20M
Reply