Alrighty then!
Sorry it took me so long to finalize this test. I had to drop it for a while, but now it’s working!
I upgraded to 1.6.1 and the problems still existed. So I took a second look at my php.ini file. I bumped up some settings and poof! It works fine.
(Just a note that even though I did get a blank screen, the images were processed and did get put into the gallery folder, but EE didn’t recognize that they were there, nor see them as Entries)
I changed these PHP.INI settings and now is working no problem:
max_execution_time = 90 ; Maximum execution time of each script, in seconds
max_input_time = 90 ; Maximum amount of time each script may spend parsing request data
memory_limit = 64M ; Maximum amount of memory a script may consume (8MB)
; Maximum size of POST data that PHP will accept.
post_max_size = 64M
; Maximum allowed size for uploaded files.
upload_max_filesize = 100M
I think what did it was the post_max_size setting. It was 8MB and I changed to 64MB.
Give that a shot!