class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
I am trying to upload the same file twice. Once as a thumbnail (128x128 scaled) and a second time as the original image.
I'm not sure if this place accepts BB code or anything so I'll give you a link to my current file: https://dl.dropboxusercontent.com/u/57282495/Temporary/upload_photo.zip
I originally built this from an example. This script works flawlessly if I comment out either one of the upload processes. As you see, I have now named the second upload process under a different $handle/$handle2 name, but it didn't make a difference. My server times out (30 seconds) on line 5010 of class.upload.php, sometimes 5013 or 5007, which are all inside a couple of nested for loops. I get the idea one of them is looping infinitely because the server always kills it inside of the loop at 4999:
for ($y = 0; $y < $this->image_dst_y; $y++) {
which is for jpg and bmp files.
So down to my point: I need to render two copies of the same upload, and quite frankly I know next to nothing about this upload script/library/class, although it is quite fantastic. Thanks a ton to anyone who can help me.Reply
I'm not sure if this place accepts BB code or anything so I'll give you a link to my current file: https://dl.dropboxusercontent.com/u/57282495/Temporary/upload_photo.zip
I originally built this from an example. This script works flawlessly if I comment out either one of the upload processes. As you see, I have now named the second upload process under a different $handle/$handle2 name, but it didn't make a difference. My server times out (30 seconds) on line 5010 of class.upload.php, sometimes 5013 or 5007, which are all inside a couple of nested for loops. I get the idea one of them is looping infinitely because the server always kills it inside of the loop at 4999:
which is for jpg and bmp files.
So down to my point: I need to render two copies of the same upload, and quite frankly I know next to nothing about this upload script/library/class, although it is quite fantastic. Thanks a ton to anyone who can help me.