Blank Page after upload.

See all posts See thread Reply

Re: Blank Page after upload. new!
by Dan Patterson, 12 years, 3 months ago
Thanks for the suggestion. But, I have tried this but it doesn't work. I used the following, which I use on the same server account for other file processing:

set_time_limit(6000);
ini_set("max_input_time", "6000");
ini_set("max_execution_time", "6000");
ini_set("memory_limit", "650M");
ini_set("upload_max_filesize", "20M");
ini_set("post_max_size", "20M");

Also, tried uploading a php.ini file to the root. My host does allow this as I have used this before.

I have no problems with FF, IE9 and Safari 5

Thanks, DanReply
Re: Blank Page after upload. new!
by colin, 12 years, 3 months ago
You need to check if the ini_set calls are actually modifying the PHP config. On most shared hosts, you cannot change some settings.

You say it works on FF, IE9 but not IE8? With the exact same image? The browser shouldn't matter at all.Reply