Uploading One File Two Different Ways

See all posts See thread Reply

Re: Uploading One File Two Different Ways new!
by Erik Greif, 9 years, 10 months ago
I am getting no info errors in Apache, but PHP just has the error I saw on screen.

[20-Jun-2014 15:02:48 US/Pacific] PHP Fatal error: Maximum execution time of 30 seconds exceeded in F:\Software Development\(PHP) SpychMed International\HTDOCS\scripts\upload\class.upload.php on line 5006

I have another domain with GoDaddy, which is where this is going to end up. So I just tested the code again, and while it took ages to upload, it did. Since we're here, might I ask how to set a maximum size (dimensions) for an upload? That way I can have a large image version, but it won't be over a certain number of pixels, like width*length.Reply
Re: Uploading One File Two Different Ways new!
by colin, 9 years, 10 months ago
I see, I missed your error. Your server seems quite slow. Anyhow, you can increase the PHP time limit in your script.

As for limiting the images that can be uploaded, check out image_max_width, image_max_height, and image_max_pixels.Reply
Re: Uploading One File Two Different Ways new!
by Erik Greif, 9 years, 10 months ago
Oh yes, my network card is having a lot of trouble. I get about 2 maybe 3 megabits up and down right now at best. Just awful. I'll be replacing it soon. However, I don't want to necessarily block large images. I want to downsize large images that are over a certain number of pixels.Reply
Re: Uploading One File Two Different Ways new!
by Erik Greif, 9 years, 10 months ago
It seems as if image_ratio, image_x, and image_y can achieve an image under a given width and height... am I right?
Just reading the documentation. Very unusual behavior for me.Reply
Re: Uploading One File Two Different Ways new!
by colin, 9 years, 10 months ago
I am not too sure I understand what you mean by "achieve".

image_ratio_xxx, image_x and image_y are used to resize an image.

Note that when you instantiate the class, you can read the images data with image_src_x, image_src_y and image_src_pixels and act accordingly.Reply
Re: Uploading One File Two Different Ways new!
by Erik Greif, 9 years, 10 months ago
Okay so all of the above worked great with an if check on the original resolution. ALL GOOD :) Starting a new topic for something else though.Reply