I’ve used this plugin for a long time.
Regrettably, I’ve had to find another solution, as it fails in WP 4.41. Namely, you cannot change the size options: the update-options function fails because of deprecated PHP.
Good news: I found this:
Resize After Upload
https://www.ads-software.com/plugins/resize-image-after-upload/
PHP Deprecated: mysql_real_escape_string(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead
Well, this plugin continues to work great even on WordPress 4; but from php 5.5 on, the mysql extension is officially deprecated and this plugin makes use of mysq_real_escape
(that needs an active mysql connection) to escape posted parameters maxwidth
and maxheight
on its option page.
The fix is really simple: use the WP escape function for sql query esc_sql
! Just substitute the 2 occurences of mysq_real_escape
with esc_sql
:
FROM:
$maxwidth = trim(mysql_real_escape_string($_POST['maxwidth']));
$maxheight = trim(mysql_real_escape_string($_POST['maxheight']));
TO:
$maxwidth = trim( esc_sql($_POST['maxwidth']) );
$maxheight = trim( esc_sql($_POST['maxheight']));
Don’t know if the author is still interested in update this little usefull plugin, but I’ve posted this just in case someone else is looking for a solution to the problem.
]]>Is this resizing or resampling or both?
What ppi is the uploaded image? Is it good enough for Mac retina displays?
]]>This and the older plugin break the media uploader with 3.5.1
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>I have tried the plugin and it does not seem to work on the forum or activity page in buddypress. (photo was uploaded in the forum part)
Am I missing something or does it not work on these pages.
Thanks
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>I found no setting for jpeg image quality.
It can be useful for certain condition. For example, 80% quality is good for most situation, but for photo/graphics websites at lest 90% will be adequate.
Will this jpeg quality setting be implemented in future release?
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>Is it multisite compatible?
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>I have a lot of 1600 px width original images and I want to regenerate all these previous uploaded originals (so not the thumbnails!).
Instead of downloading and re uploading originals with “Resize at Upload Plus”. Is it possible to do this in a batch for previous uploaded originals? (Just like regenerate thumbnails plugins, but then for originals). Want to get rid of all those 1600 px width images and replace them by 1024 px.
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>Beautiful plugin ! Saves me a fortune amount of headache ??
Simply works !
Steve
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>Hello,
Using gravity forms to create a new post from the front end.
Uploaded images do not get resized.
Any ideas why?
thanks
Andy
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>This is a great little plugin, but when I deactivate it, the functionality persists. Now, it resizes all my images no matter what. Please help, thanks.
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>I’m, using this plugin with WP 3.3.1 and it works great. But it fires a warning when you switch to debug mode in WP.
The function ‘add_option_page‘ on line 49 of resize-at-aupload-plus.php, contains a deprecated argument: the user level.
Just substitute the third argument (8) with its corresponding capability ‘administrator‘ and you are done!
So line 49 becomes:
add_options_page('Resize at Upload Plus','Resize at Upload Plus','administrator','resize-upload-plus','hz_uploadresize_options');
Hope to see this patched in a future release.
P.S.: Daniel, can you please specify the differences between the plus and the old version (‘resize at upload’) of this plugin? thanks!
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
The resizer works great…but for some reason, it may be encoded in the images, it automatically rotates some of my pictures after upload. Does anyone know why?
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>Hi,
We had a report that WordPress for Android was not able to correctly post photos when the Resize at Upload plugin was activated. Can it be checked to still work correctly with XML-RPC?
https://www.ads-software.com/extend/plugins/resize-at-upload-plus/
]]>