Pictures Not Uploading

Grizzly Adam

Active member
We just transferred our site to our new host last night. This morning it was noticed that when users attempt to upload pics, they do not properly upload (if at all). Does anyone have any ideas?

image.webp
 
Navigate to admin.php?tools/phpinfo

Check if jpeg support is enabled.
It should be under GD.

upload_2014-10-30_12-47-21.webp
 
I suspect that's the issue then.

You need an image processor library - GD is the typical built in default.

Contact your host and ask them to install it.
 
Does this have anything to do with size? Users are now unable to upload files the same size that they have always used, even after increasing file size and pixel size limits under options.
 
Without knowing the error message it's difficult to say, but I suspect you will need to adjust some PHP values.
 
This is as close as I could find. Increase the size to 8m, still the error persists,

;;;;;;;;;;;;;;;;
; File Uploads ;
;;;;;;;;;;;;;;;;

; Whether to allow HTTP file uploads.
; http://php.net/file-uploads
file_uploads = On

; Temporary directory for HTTP uploaded files (will use system default if not
; specified).
; http://php.net/upload-tmp-dir
upload_tmp_dir = /home/server/tmp

; Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 8M

; Maximum number of files that can be uploaded via a single request
max_file_uploads = 20
 
Change post_max_size as well.

And when you're finished doing that, restart your HTTP server.
 
Top Bottom