Osclass forums
Development => Plugins => Topic started by: teseo on February 19, 2016, 06:48:20 pm
-
(http://market.osclass.org/oc-content/uploads/market/496.jpg)
Pre-resize Images
Hi,
This plugin is aimed to save PHP memory on images uploading. No more "Fatal error: Allowed memory size of xxxxxxxxx bytes exhausted" when your users try to send their big smartphone images! :D
It's already in the Market for a while now, but I didn't want to announce it here until having a quite solid version (1.1.0 now). Some issues have been detected by its first users and now they are fixed. Download, configure and enjoy:
http://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
Regards
-
i replace it here but it not work for me
<div class="box photos">
<?php
if(osc_images_enabled_at_items()) {
if(cammarket_is_fineuploader()) {
// new ajax photo upload
//ItemForm::ajax_photos();
if (function_exists('przi_ajax_uploader')) przi_ajax_photos();
else ItemForm::ajax_photos();
}
} else { ?>
<h2><?php _e('Photos', 'tt'); ?></h2>
<div id="photos">
<div class="row">
<input type="file" name="photos[]" />
</div>
</div>
-
Hi,
What theme are you using and what is the name of that file (item-post.php, item-edit.php)? ???
Regards
-
Anyone wanting to translate text strings to another lang, you can do it on index.php
e.g "Make primary image" on line 315
Don't forget to convert the file to UTF-8 from ANSI.
-
Hi,
That string is included in oc-content/languages/[language code]/core.po, so it should appear already translated to the current language... ???
Regards
-
I use one theme
It also in item post and edit the same code
-
yep, found 'Make primary image' string on latest 3.6.1 core lang file. Had to update it. ;)
Some other strings are still not translated.
e.g
'Cancel','Retry','Delete' around 113 line.
-
Hi,
Some other strings are still not translated.
e.g
'Cancel','Retry','Delete' around 113 line.
You're right, will be fixed on next update 1.1.1
I use one theme
I've sent you a PM.
Regards
-
Thx the plugin work's great. Can you please add the image rotator with the plugin?
-
Hi,
Sorry, what do you mean by "image rotator"? ???
Regards
-
it's like olx ..
images uploaded can rotation and drag for main photo,
i think may be you can do it well with js
regard
-
My main goal was to stop PHP memory errors from happening. The plugin already adds "Make primary" thas is missing in most themes, but I included it only because the basis is already there and it wasn't too hard. So no plans to add new features, sorry.
i replace it here but it not work for me
I assume you got it working and there's no bug in the current code...
Regards
-
Osclass needed such a plugin. Will check soon, and write back.
Thanks teseo!
-
I must say thanks too, i use it on my site.
-
teseo, can we make this work with the backend (admin) as well, meaning for images uploaded from admin section please?
-
teseo, can we make this work with the backend (admin) as well, meaning for images uploaded from admin section please?
No. Again, this is just a replacement for Ajax Uploader where it is already working (frontend).
Regards
-
Thanks teseo, this looks great. But for some reason, I get an error about wrong format of the file, should be .jpg, .png of gif, but the file I'm attaching is .jpg?
-
Hi,
???
What theme are you using? Please copypaste here the exact error message.
Regards
-
Theme is Infinity. Nothing in debug.log though.
"File has an invalid extension, it should be one of png,gif,jpg,jpeg."
I've changed like it says in plugin:
from<?php if( osc_images_enabled_at_items() ) {
ItemForm::ajax_photos();
} ?>
to <?php if( osc_images_enabled_at_items() ) {
if (function_exists('przi_ajax_uploader')) przi_ajax_photos();
else ItemForm::ajax_photos();
} ?>
-
Hi teseo,
When I upload .jpg pictures on my website, then your plugin resize the images but it feels like it does not stop uploading the pictures so that I can continue to click on publish the ad.
When I click on publish button the ad with pictures is published and the pictures are resized.
BUT before I clicked on the publish button, It feels like it continues to upload the picture forever and does not stop uploading as it does when I did not use your plugin. This is a very good plugin but please explain why it does not finish uploading the pictures?
Do you have a solution for this?
-
Theme is Infinity. Nothing in debug.log though.
??? No problems with Infinity theme here... Have you tried with different images? Can you test it with another theme?
...........
@sunshine, what theme are you using?
Regards
-
I am using this theme: http://market.osclass.org/themes/general/ctg-classifieds_422
I am using the browser: Google Chrome.
-
Theme is Infinity. Nothing in debug.log though.
??? No problems with Infinity theme here... Have you tried with different images? Can you test it with another theme?
Yeah, sorry, my fault, I've tried on another site with OsclassWizard and works like a charm.
I should have known that like most of plugins this will have issues with me, since, as you may remember, I have complex and quite modified website (twenty sites, same image folder etc..), so I would have to make adjustments also here.
But congrats on great plugin, will keep using it on second site! ;)
-
Oh, I see. This modification here:
http://forums.osclass.org/general-help/upload-path/msg133389/#msg133389
If you kept it to make the whole thing working, you need to do the same in the plugin (index.php line 307), because that whole core function ajax_photos() is being replaced by the modified clone przi_ajax_photos().
Regards
-
Oh, I see. This modification here:
http://forums.osclass.org/general-help/upload-path/msg133389/#msg133389
If you kept it to make the whole thing working, you need to do the same in the plugin (index.php line 307), because that whole core function ajax_photos() is being replaced by the modified clone przi_ajax_photos().
Regards
index.php line 307 is this
$(li).append('<div class="ajax_preview_img"><img src="<?php echo osc_base_url(); ?>oc-content/uploads/temp/' + responseJSON.uploadName + '" alt="' + responseJSON.uploadName + '"></div>');
and the message in upload path topic you are referring to, suggest i should edit this like I did row 1485 in item.form.class.php, If I understand you correctly.
But if you check below that post, you told me this is not the right way and provided a great solution, which worked and didn't require modification of any other file than functions.php. So I believe this (modifying plugin index as item.form.class) wouldn't work here as well?
-
Hm... Those functions I gave you operate after ad submission and the Ajax Uploader part is executed before, so everything that works with vanilla mechanism should work with the plugin... ??? As i saw you had changed oc-content/uploads/temp/ (this is the folder used by the Ajax Uploader) seemed to me like a possible cause of your issue, but looks like the problem is elsewhere... ???
Regards
-
Hm... Those functions I gave you operate after ad submission and the Ajax Uploader part is executed before, so everything that works with vanilla mechanism should work with the plugin... ??? As i saw you had changed oc-content/uploads/temp/ (this is the folder used by the Ajax Uploader) seemed to me like a possible cause of your issue, but looks like the problem is elsewhere... ???
Regards
Well, I'll look into it when I'll have time, but for now thank you teseo, don't waste your time figuring out, as not many of others here complicate their lives with a website like mine, so it won't be useful to general public :P I'm planning on buying your multilanguage custom field plugin next week though, maybe I'll need you there ;)
-
When I upload .jpg pictures on my website, then your plugin resize the images but it feels like it does not stop uploading the pictures so that I can continue to click on publish the ad.
Not really a plugin issue, your theme "insists" in showing elements of same type as the spinner and the "Cancel" and "Retry" elements:
(http://s12.postimg.org/pa3mickrx/Issue.png)
Edit /oc-content/plugins/preResize_images/index.php
Find:
<style>
.qq-hide {
display: none;
}
Replace with:
<style>
.qq-hide {
display: none !important;
}
This little patch should fix your problem until next plugin update.
Regards
-
Thanks for a great plugin,
I found some problem please fix if possible,
The thumbnails of uploaded images are not visible after following the bellow procedures.
1. Upload image other then supported format so that message "xxxxxxx.xxx has an invalid extension. Valid extension(s): png, gif, jpg, jpeg." appears.
2. Now upload supported format e.g JPEG
3. The image will be uploaded but will not be visible in thumbnails.
the same problem also occurs when
1. Upload some supported images.
2. Change primary image.
3. Upload another supported image(This image will not be visible in thumbnails).
-
Hi,
Confirmed. What theme are you using?
Regards
-
I am developing a new theme, it is based on bender theme.
-
@Syed, already fixed in next update 1.1.1 (pending of Market review).
Thanks for your input, regards
-
Hi,
That was quick... :) Version 1.1.1 already available on the Market.
Regards
-
sir,
does this plugin will work on modern theme version 3.4.3 . because some of the
allowed image extensions (jpg,jpeg) are saying message as"File has an invalid extension, it should be one of png,gif,jpg.",
some times same images are accepted but showing as processing and no thumbnails are showing, if i click the post ad button than no image is uploaded.
how to solve this help me
-
Hi,
Modern 3.4.3? Are you sure that's the version of the theme, not Osclass? ??? Look in modern/index.php
Regards
-
Hi Teseo,
Is there anyway we can reduce the intensity of the plugin. The lower resolution pictures seem to be pixelated with the plugin.
Thanks
-
Hi,
Please give me a sample image where you notice that issue... ???
Regards
-
sir,
does this plugin will work on modern theme version 3.4.3 . because some of the
allowed image extensions (jpg,jpeg) are saying message as"File has an invalid extension, it should be one of png,gif,jpg.",
some times same images are accepted but showing as processing and no thumbnails are showing, if i click the post ad button than no image is uploaded.
how to solve this help me
Modify message
sorry my mistake
it is osclass 3.4.3
modern theme 3.0.3
please tell me will this plugin works with this version
-
I'm afraid not, too old:
This plugin should be compatible with any theme that includes Ajax Uploader for images ("Click or drop for upload images").
This feature Ajax Uploader was introduced in Modern v. 4.0
Regards
-
ok will update my theme and report you back
-
Hi,
Please give me a sample image where you notice that issue... ???
Regards
Here is one (there are a few more pictures which are pixelated a bit too much)
-
But that's not the plugin fault, try disabling the plugin and you'll get same results. I guess it's something that should be fixed on Osclass core.
Regards
-
thanks teseo
;D
work perfect on osclass 3.6.1 with OsclassWizards Free Responsive Theme v 2.0.4
(http://img.prntscr.com/img?url=http://i.imgur.com/VuFQk6U.png)
-
Teseo,
I just found something. Though the plugin works great on computers, when i make a post using a mobile, i get this error -
"Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59"
Though the listing gets posted properly, but this error appears too.
Any ideas?
Thanks
-
Hi,
"Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Thanks
First time I see that error. ??? At first glance, looks like a problem with a given image (EXIF information). Please specify browser and put here the original image that is provoking the error.
....
@anuituanu, you're most welcome. :)
Regards
-
Hi guys,
I have 3 osclass website, and all using Pre-resize Images plugin.
For 2 of these sites it's working 100% perfect.
For the third one, i'm having the same issue all time :
Warning: exif_read_data(qqfile_574c472e425a4.JPG): Illegal IFD size in /home/labour9/public_html/velos/oc-includes/osclass/classes/ImageResizer.php on line 59
Warning: exif_read_data(qqfile_574c472e425a4.JPG): Illegal IFD size in /home/labour9/public_html/velos/oc-includes/osclass/classes/ImageResizer.php on line 59
Do you know, where it could come from ?
all my osclass websites are using the same theme (flatter) with same plugin installed and same osclass version (3.6.1)
many thanks for you help
Vincent
-
Hi,
Check the message previous to yours (mine), I don't think that problem has anything to do with Osclass, but with a given image. ???
Regards
-
well, thanks for your reply, but i tried with around 20 different images.
So I don't think it's coming from here...
and these images are uploading correctly on my other osclass website.
any other idea which could help ? :)
thanks
vincent
-
I see. Please disable the plugin and repeat the test. No problems then?
Regards
-
i just tried after disable the plugin, and yes it's working well.
any idea?
Vincent
-
???
all my osclass websites are using the same theme (flatter) with same plugin installed and same osclass version (3.6.1)
All three of them on the same server? ???
Regards
-
I'm facing a similar situation. It'd be great if there is a solution. For me, i see the error when using an ios mobile device
-
Hi,
As said, never saw this problem myself, but let's make a little experiment. Replace line 268 in oc-content/plugins/preResize_images/index.php:
includeExif:false,
with
includeExif:true,
Regards
-
includeExif:false,
with
includeExif:true,
Regards
Hi teseo,
Could you tell us what exactly does this change do (technically)?
-
hi, @stevejohnson on line : 268 on index.php file
Use notepad++ for find it
I not tried the plugin on live service... in soon I will do that.
Good plugin teseo :)
Regards
-
hi, @stevejohnson on line : 268 on index.php file
Use notepad++ for find it
I not tried the plugin on live service... in soon I will do that.
Good plugin teseo :)
Regards
That's not what i was asking Fog
-
Sorry my mistake. :D
For part of your question, and is not a good answer by me to you, but you can find in jquery.fineuploader.min the code related.
Regards
-
Could you tell us what exactly does this change do (technically)?
Look for "exif' in Google ( sorry no internet connection right now)
-
It appears EXIF is nothing but meta data about some file formats like jpeg, jpg. Well, nothing wrong in giving a shot. I'll try your test and reply here tomorrow.
-
Hi Teseo,
To reply to your question, yes it's the same server.
I just tried your solution and it's look like to work ;) great job !
many thanks
vincent
-
You're welcome. :) Waiting for the input of stevejohnson to release a new update of the plugin fixing this issue.
Regards
-
You're welcome. :) Waiting for the input of stevejohnson to release a new update of the plugin fixing this issue.
Regards
Hi teseo, pardon me for the delay. Right now i'm at work, give me 1 day and i will tell you.
(ps can't reply on PM, i don't know why the option to reply has been removed :-\)
-
No problem, just want to confirm that yours is the same issue and this little modifcation fix it before releasing a new version.
Regards
-
..the fix does not work for me teseo. I get the same errors.
-
Hi,
"Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59
Warning : exif_read_data(qqfile_7547234.jpg) Illegal IFG size in ..../osclass/classes/imageresizer.php on line 59"
Though the listing gets posted properly, but this error appears too.
Let's see, are we talking here about a mere warning and the images are indeed being published?
Regards
-
That's correct. The image gets uploaded, resized, published... But when we push the publish button, a white screen with these errors appear.
-
Make sure you have in your config.php:
define('OSC_DEBUG', false) ;
define('OSC_DEBUG_LOG', false);
so no warnings will be shown on frontside.
Regards
-
done, no errors now. thanks teseo
-
You're welcome.
Just released version 1.1.2 adding the original EXIF information to the resized images to address this latest issue.
Regards
-
thank you for the plugin.
ı have problems with mobile image uploads.
ı try Pre-resize Images.it's ok to upload but when ı publish it's going to white index page .therefore no images in the add
-
Hi,
May I see your site?
Regards
-
alsat.tk
-
Seems that you din't make the required modification on your theme item-post.php, look at the Help of the plugin.
Regards
-
thnks for answer ı was trying someting else.
you can see it in action now from mobile.when ı try size 1,5 mb-2 mb size photo its going to white page
-
Admin Dashboard / Settings / Media, which are your values for "Maximum size" (Current and max allowed)? ???
-
FU is free again :)
-
yes it 's ok.media size is 2048 kb in dashboard.(php limit) (alson in my another web site its 8 mb)
as ı say the plugin upload photo but when ı try to publish it's going to white index page.
-
ı couldn't find a solution for mobile image upload problem :(
-
I think you have something wrong on your installation or you don't have enough memory to handle your images. ??? In any case, it's not the plugin fault, so this is all I can do for you.
@dev101: Thanks for the info, I'll take that into account for next update.
Regards
-
I think you have something wrong on your installation or you don't have enough memory to handle your images. ??? In any case, it's not the plugin fault, so this is all I can do for you.
Regards
thanks for answer.
it's happening just on mobile.yes,it's not the plugin fault.
-
so far includeExif:false, did the trick.
from true to false... now , zero illegal IFD and such.
Regards. Thanks teseo.
-
Hello Tesro,
There have any hope for changing the primary image from the admin panel..
Can you help me how to edit manually from the mysql database.
-
Hi everyone,
so far includeExif:false, did the trick.
from true to false... now , zero illegal IFD and such.
:o
So, looks like depending on the server setup, both presence and absence of EXIF may provoke problems? ??? Then I'm thinking that the best strategy will be to make this a configurable setting on the plugin...
There have any hope for changing the primary image from the admin panel..
Can you help me how to edit manually from the mysql database.
This is not the plugin domain. For the frontside there is this old plugin, Picture Director, for Admin there's no other way than alter the database directly. Here's how you may do that:
Run this query in PhpMyAdmin:
SELECT * FROM oc_t_item_resource WHERE fk_i_item_id = [Ad ID]
(Change here [Ad ID] -and table prefix oc_ if your tables have other).
Now, the primary image is determined by the lowest pk_i_id value, you need to manually switch the ID's: lowest pk_i_id <=> new primary pk_i_id.
Regards
-
Dear Teseo,
regrettably I did everything as in instructions , but still if the PHP LIMIT less than picture size , not allow to upload
I use Glider theme
please advise
best regards,
-
Hi,
but still if the PHP LIMIT less than picture size , not allow to upload
I'm afraid that's normal and unavoidable, you still need to be able to handle images as if the plugin wasn't there. Ask your hosting to raise upload limits.
Regards
-
thank you teseo
my PHP limit is up to 32000 but I have specified 2048
you mean that normal to maximize the limit and after upload your plugin will resize?
best regards,
-
my PHP limit is up to 32000 but I have specified 2048
you mean that normal to maximize the limit and after upload your plugin will resize?
Then you can't upload images bigger than 2MB, raise up that limit.
Osclass core code running in parallel to the plugin still needs to analyze the original image, and anyway, if your user is using some old browser like Internet Explorer 8, the plugin won't have any effect and you need to be able to handle the original image.
Regards
-
ı notice that ,there is no "mobile image upload problem" when watermark is not on ..any advice or personal experiences?
-
Hi,
At first glance looks more like memory problems. ??? Enable debug:
https://doc.osclass.org/Debug_PHP_errors
Keep watermark and upload from mobile, then open /oc-content/debug.log to check for errors.
Regards
-
Hi,
At first glance looks more like memory problems. ??? Enable debug:
Since i have that error also, YES it seems like a short memory problem, since it happens once in a while ONLY to my multicountry Osclass and not to the others.
-
Thanks teseo, this looks great. But for some reason, I get an error about wrong format of the file, should be .jpg, .png of gif, but the file I'm attaching is .jpg?
I've found the solution to this problem. It was not my custom modifications, it was the core itself. I had older version of Osclass (3.4.2) and it displayed this error, but when updated to 3.6.1 it works great. Now all I need is to figure out what else I edited so I can do it again in 3.6.1 ;)
-
Hi,
Thanks teseo, this looks great. But for some reason, I get an error about wrong format of the file, should be .jpg, .png of gif, but the file I'm attaching is .jpg?
I've found the solution to this problem. It was not my custom modifications, it was the core itself. I had older version of Osclass (3.4.2) and it displayed this error, but when updated to 3.6.1 it works great.
I'll study that issue to include a warning on the plugin info.
Now all I need is to figure out what else I edited so I can do it again in 3.6.1
For that I recommend using the free WinMerge (http://winmerge.org/) program. It'll show you the differences between files in two folders.
Regards
-
Hi,
Thanks teseo, this looks great. But for some reason, I get an error about wrong format of the file, should be .jpg, .png of gif, but the file I'm attaching is .jpg?
I've found the solution to this problem. It was not my custom modifications, it was the core itself. I had older version of Osclass (3.4.2) and it displayed this error, but when updated to 3.6.1 it works great.
I'll study that issue to include a warning on the plugin info.
Now all I need is to figure out what else I edited so I can do it again in 3.6.1
For that I recommend using the free WinMerge (http://winmerge.org/) program. It'll show you the differences between files in two folders.
Regards
Awesome, that'll make things easier, thanks teseo! :)
-
Hi Teseo
Please help me my website has the invalid extention problem when you edit and upload images.
Here is the screenshot http://prntscr.com/c56m0z
Thanks in advance
Fais
-
Hello I use OSClassWizards theme and wonder
if you can somehow get to autorotate the picture with
Pre-resize images
when the users published the ad
Thanks in advance
and for a good plugin :)
-
Hi,
Auto-rotation is only possible if the image itself includes instructions to do that (orientation in EXIF metadata). Is this what you are referring to? Because rotation on demand is not possible...
Regards
-
Ok
but can you add a button to rotate image when it is uploaded ?
see image
-
Sorry, this plugin extends vanilla Fine Uploader plugin to compress original images, Fine Uploader doesn't include any other manipulation feature.
Regards
-
ok thank you for the fast reply
Regards
-
I need Help, the Plugin work on my bender theme but after installing another theme i get error file has invalid extension, it should be one of png, gif, jpg, jpeg and i have tried different images with all those extension but couldn't get it. i need help
-
Hi,
What theme is that?
Regards
-
Hi,
What theme is that?
Regards
It's a mobile theme http://www.osclassmobile.com
-
Hi teseo,
is it possible to make this plugin compatible with Mcfly theme.
It doesn't use Fine Uploader but Dropzone.js
Regards.
-
Hi,
I'm afraid that's not possible, this is a mod for Fine Uploader.
Regards
-
Hi,
Released v. 2.0.0, big enhancements:
Changelog:
Version: 2.0.0 (2016.12.14)
+ Upgrade to Fine Uploader 5.11.10 (MIT license).
+ Much better resizing of images by using Pica library (MIT license).
+ Now images to be uploaded are fully sortable by dragging thumbnails.
+ Support for Decent Mobile Theme plugin.
+ Added languages folder for translation of plugin specific strings.
+ Fixed a bug affecting proper rotation of images including EXIF orientation.
- Discarded embedding of original EXIF information of the images.
Now with the latest Fine Uploader going back to free license (MIT) and with a new mechanism to allow using a external library for resizing images, I've added Pica (https://github.com/nodeca/pica) to obtain perfect-looking final images even with the default maximum dimension of 1280 pixels (see attachments).
Also, no more "Make Primary image", now all freshly uploaded images are fully re-arrangeable (By "freshly" I mean that on Edit Ad, you only can do that for new images).
Enjoy!
Best regards
-
The plugin generated 1 characters of unexpected output during the installation. Output: " " .. I can not install
-
Hi,
No, I still don't know what is provoking that with some plugins ??? but the plugin should have been installed anyway, please check again.
Regards
-
The plugin generated 1 characters of unexpected output during the installation. Output: " " .. I can not install
Installs just fine, that error has been there for ages for many plugins (random) and doesn't seem to harm.
-
At last I've found it. :D index.php of the plugin ends like this:
?>[space]
That sneaky space is to blame for the infamous 1 characters of unexpected output during the installation. Output: " " :D
Regards
-
At last I've found it. :D index.php of the plugin ends like this:
?>[space]
That sneaky space is to blame for the infamous 1 characters of unexpected output during the installation. Output: " " :D
Regards
Thank you. worked perfectly :)
-
You're welcome. Anyway, it's a purely aesthetic matter, the plugin is correctly installed regardless that scary notice. ;)
Regards
-
Hello.
Sorry, I write through a translator.
osclass 3.6.1
after the last update stopped working rss feed.
I had to be rolled back.
-
Hi,
I don't know how the plugin could be related to that problem, I've done the test here and normal RSS seems to be working fine (/search/sFeed,rss/category,cars). ??? Maybe are you using some plugin for RSS? ???
Regards
-
I use a lot of plug-ins.
Weekend try to understand.
-
Hello,
thank you for great plugin.
I have a little problem with installing this version. It seems it is installed and it works but I get this message.
And also I want able to just update it automatically because I've got message that it is paid plugin and I should buy it first.
Thank you
-
Hi,
There's already a hotfix (v 2.0.1) waiting for approval on the market. In the meantime, you can download v 2.0.0 from here:
https://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
Uncompress, edit index.php to delete that space after last ?> and upload to your server, oc-content/plugins.
If you already have a previous version, that would be all. In case contrary, Install.
Regards
PS.- The plugin is free, so the automatic update should work. If not so, it's a Market issue, I can't do anything about it. ???
-
site.com/feed
-------------------------------------------
This page contains the following errors:
error on line 1 at column 7: XML declaration allowed only at the start of the document
Below is a rendering of the page up to the first error.
--------------------------------------------------------
localhost
site.com/feed
--------------------------------------------------------
Warning: Cannot modify header information - headers already sent by (output started at Z:\www\oc-content\plugins\preResize_images\index.php:339) in Z:\www\oc-includes\osclass\controller\search.php on line 562
-
Hi,
Warning: Cannot modify header information - headers already sent by (output started at Z:\www\oc-content\plugins\preResize_images\index.php:339) in Z:\www\oc-includes\osclass\controller\search.php on line 562
Likely the same problem that is provoking the message "The plugin generated 1 characters of unexpected output..." on install. Follow the procedure described on my previous post.
Regards
-
Ok. Thank you.
-
Hi,
v. 2.0.1 with a hotfix addressing this problem is already available in the Market:
https://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
Regards
-
hello Tesco
I was just wondering if you ever do freelance work on osclass based sites, I am currently looking for someone to help me on a project
-
Hi,
Already available update 2.1.0:
Changelog:
+ Fixed Drag & Drop images on Microsoft IE 11 / Edge (Thanks to developerchris :)
+ Restored "Make Primary Image" buttons (only on Publish Ad).
+ Fixed bug on Edit Ad when Decent Mobile Theme plugin is used.
Regards
-
Thanks teseo, really nice update! ;)
-
Hi teseo,
can you have a look at the deletion of uploaded files in latest version?
After uploading 5 files with ad, deleting two again I can see in tmp folder still all 5 uploaded files, they are not removed.
In code I see you call the Osclass "delete_ajax_upload" in url but when looking at Osclass ajax.php it also needs a parameter called "qquuid" to actually delete the uploaded file in the temp folder. I messed around with the url string by adding "&qquuid=" but I haven't been succesful in getting the right filename/id when deleting an image.
Regards,
Eric
-
Hi Eric,
Couldn't see any issue here, when I click on Delete on the frontside, the file in /oc-content/uploads/temp is immediately deleted... ???
Regards
-
Even if not deleted (could be permissions/user issue), cron should take care of them in an hour or two, eventually.
-
Hmmm weird.
Uploads/tmp folder is owned by apache and has correct rights.
If I upload images they appear in uploads/temp folder as expected.
When I upload three images at once and I do not publish the ad and start removing the images I just uploaded only 1 out of three is removed from temp folder. -> Not good.
Now if I upload only 1 image, do not publish ad and remove image again the image is indeed removed from the temp folder. -> Good
Scenario Publish Ad:
Upload images -> I do publish ad -> OK - all images have been moved from temp folder to image folder and ad is published -> Good
Scenario Edit Published:
Edit published ad, removing images OK - images are removed from image folder -> Good
Now, I am pretty sure if 1 gets deleted or all get moved there is no issue of folder rights/ownership.
The issue is ONLY happening when uploading more than 1 image and in all cases only 1 image really gets deleted and all others are not removed from temp folder.
Regards,
Eric
Hi Eric,
Couldn't see any issue here, when I click on Delete on the frontside, the file in /oc-content/uploads/temp is immediately deleted... ???
Regards
-
:)
As for the cron cleaning, I wasn't aware of that.
Should that also work with auto-cron turned off using a serverside cron?
Asking because I noticed the load of files in my temp folder after having messing around with ads and images while testing whole system looking for PHP warnings/notices to get rid of.
Regards,
Eric
Even if not deleted (could be permissions/user issue), cron should take care of them in an hour or two, eventually.
-
Yes, cron is cron, however triggered.
-
Thanks dev, meaning even if bug in system it would not be flooded with left-over files. (http://forums.osclass.org/Smileys/default/grin.gif)
With regard to cron I have other finding/question.
I have seen plugins that make use of the Osclass 'cron' hooks but found that these will *not* run if you have disabled the auto-cron in Admin and using a server cron for Osclass jobs. So in short, the Osclass cron created on server-side does run but somehow plugin that hooks into an Osclass cron is not triggered. Is this correct?
Yes, cron is cron, however triggered.
-
Hi SmaRTeY,
I think I might found a "bug" in cleanup function, which, under certain conditions, might return "wrong" values. Do you still keep your rogue qq files on your server, if you do I'd like you to run some simple test? update: never mind, I have figured it out, will propose some changes to the cron file.
Sorry, just haven't much time lately, so I just "glide" through forum posts, obviously skipping messages:
With regard to cron I have other finding/question.
I have seen plugins that make use of the Osclass 'cron' hooks but found that these will *not* run if you have disabled the auto-cron in Admin and using a server cron for Osclass jobs. So in short, the Osclass cron created on server-side does run but somehow plugin that hooks into an Osclass cron is not triggered. Is this correct?
I have no idea, care to elaborate? I don't see how this can happen, cron mechanism is a simple hook system where functions are triggered, if they are properly "hooked" and still do not work, something else might be wrong with them (assuming you are sure cron ran (past tense) in the first place).
-
Cool, something to benefit :)
I have no idea, care to elaborate? I don't see how this can happen, cron mechanism is a simple hook system where functions are triggered, if they are properly "hooked" and still do not work, something else might be wrong with them (assuming you are sure cron ran (past tense) in the first place).
Sure, I will have to dig in a little to be able to elaborate more but will do so. I 'solved' the issue in the mean time by taking it out of the cron-hook and use on of the hooks when someone visits the site.
Thanks
-
and use on of the hooks
:) ? (don't understand what you mean by this)
In any case, I always disable auto-cron on production servers, as I do not wish to collide or shift my custom/precise definitions in the server's crontab.
P.S.
here's the fix/finding of the "bug": https://github.com/osclass/Osclass/pull/2136
-
Thanks dev!
and use on of the hooks
Should be: and use onE of the hooks :)
Elaboration of cron-hook will follow a bit later, for now working on some other changes.
-
Hi Teseo, after last osclass upgrade (i think 99%), your plugin not working from mobiles. I tried to uninstall/install the plugin, change php version ...etc, but i recive this error when i upload any image "Failed to scale". From deskop is working fine.
-
Hi,
That's latest Osclass 3.7.3? Have you tried with different mobile devices?
Regards
-
@Teseo Any chance of getting an update to the latest Fine Uploader (https://github.com/FineUploader/fine-uploader/releases) and Pica (https://github.com/nodeca/pica) versions?
Thanks!
-
Tested with 2 phones:
Samsung S5 - is working fine with Chrome and Default browser "Internet"
Samsung S6 - is working fine with Chrome and the error appear only in Default browser "Internet" - with plugin disabled, is working fine with both.
-
@Veromon,
What can I tell you? :( You can see there how an older device works fine while the newest is failing. I'm afraid Android Stock Browser is a real nightmare for any programmer (just take look at this page (http://slides.com/html5test/the-android-browser#/)).
In fact in the Scaling page of the Fine Uploader docs (Scaling is the key feature for this plugin), they state:
Supported Browsers
This feature is supported on all browsers other than IE9 and older, Android 2.4 or older, and Safari 5.1 or older. Note that Android's stock browser is also not supported, due to multiple long-standing bugs in that browser with Blobs and data URIs. Chrome on Android is supported, though.
All I could do is to disable the plugin if Android Stock browser is detected (and even that looks quite difficult, seems that there's no real standards for this browser) :(
Any chance of getting an update to the latest Fine Uploader (https://github.com/FineUploader/fine-uploader/releases) and Pica (https://github.com/nodeca/pica) versions?
I'll consider this for the next update.
Regards
-
I understand, thank you for your time.
-
All I could do is to disable the plugin if Android Stock browser is detected (and even that looks quite difficult, seems that there's no real standards for this browser) :(
..sounds like a fairly good solution Teseo. Thanks.
-
Hi, How can I Turn the "Post image" to responsive.
When user try to upload photos, that part is hard in cellphones
-
Hi,
For that you need to modify your theme, nothing to do with this plugin.
Regards
-
Is there any way to change the text "Click or drop for upload images"?
-
Hi,
See here:
https://forums.osclass.org/general-help/translation-of-'click-or-drop-for-upload-images'/
Regards
-
Hello,
I've tested this pluging with my osclass 3.4.3 bender, I have a problem :"File has an invalid extension, it should be one of png,gif,jpg,jpeg."
there is nothing on debug.log
thx
-
Hi,
https://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
Compatibility: v3.5.0 - v3.7.4
Regards
-
thanks you
-
It occurs to me that if you can't upgrade Osclass because of massive modifications in core files, you could backport a bit of latest Osclass version code to make this plugin work.
oc-includes/osclass/classes/Scripts.php
Replace this function almost at the end of the script:
/**
* Print the HTML tags to load the scripts
*/
public function printScripts()
{
foreach($this->getScripts() as $script) {
echo '<script type="text/javascript" src="' . $script . '"></script>' . PHP_EOL;
}
}
with:
/**
* Print the HTML tags to load the scripts
*/
public function printScripts()
{
foreach($this->getScripts() as $script) {
echo '<script type="text/javascript" src="' . osc_apply_filter('theme_url', $script) . '"></script>' . PHP_EOL;
}
}
That should do it, regards
-
Teseo, any idea why all photos processed by your plugin become redish (a lot of red color) ?
Also with Firefox it works a bit strange (shaking) when selecting with drag and drop.
All images i tried.
Thanks
-
Hi,
any idea why all photos processed by your plugin become redish (a lot of red color) ?
??? Weird, never seen that effect, as far as I can see the uploaded images are pretty much the same, color is all right.
Also with Firefox it works a bit strange (shaking) when selecting with drag and drop.
Yes, looks like latest versions of Firefox are provoking that issue:
https://github.com/FineUploader/fine-uploader/issues/1862
Regards
-
Hi,
any idea why all photos processed by your plugin become redish (a lot of red color) ?
??? Weird, never seen that effect, as far as I can see the uploaded images are pretty much the same, color is all right.
You mean the images i uploaded here look the same color ?
-
No, indeed they are different, but I've just attached your original image to an ad on my installation and it's still all right, no reddish effect. ???
-
No, indeed they are different, but I've just attached your original image to an ad on my installation and it's still all right, no reddish effect. ???
Well i have uploaded 10+ images from various sources and all appear red-ish. Tried both GD and Imagick, same problem.
-
No, indeed they are different, but I've just attached your original image to an ad on my installation and it's still all right, no reddish effect. ???
Believe it or not, it is a Firefox only thing maybe from an addon. Damn. Chrome and Edge 100% right colors and all.
-
do you have firefox 55.x or the nightly 57.x?
mozilla announced alot of changes for 57... but its only available as nightly version
https://www.mozilla.org/en-US/firefox/nightly/all/
maybe the error dont appear there
-
do you have firefox 55.x or the nightly 57.x?
mozilla announced alot of changes for 57... but its only available as nightly version
https://www.mozilla.org/en-US/firefox/nightly/all/
maybe the error dont appear there
No 55, 64 bit. I'm only following the official channel as all users do.
-
Thanks teseo for the plugin. Didn't had a use/need for it, until now.
Works great, again thank you very much. For everything you do here.
-
do you have firefox 55.x or the nightly 57.x?
mozilla announced alot of changes for 57... but its only available as nightly version
https://www.mozilla.org/en-US/firefox/nightly/all/
maybe the error dont appear there
It is not a Firefox only problem Liath. Edge has problems also. The problem is that apparently we run a tired script, imho, called Osclass.
::)
-
@aficionado: Too kind, thanks.
Regards
-
Hi all.
i have installed Pre-resize images with veronika theme, but it not works. when you want to publish an Item the "click or drop images" disapears from the publish page.
can you help me please.
Note: i follow carefully the plugin setting instructions.
-
Hi,
Sorry, looks like this plugin and Veronika theme might not be compatible.
Regards
-
Thanks Teseo. :-[
Can you list all themes wich are compatible?
Especially Premium themes.
-
That's not possible, a lot of premium themes out there and I couldn't buy them all just to test a free plugin... :D
Sometimes theme developers introduce their own modifications to standard Fine Uploader module, that might be the issue here. ???
Regards
-
Plugin generate javascript errors on a lot of themes, even there are no modifications on script of fine uploader and all the javascripts are added using osclass register function ;)
-
Maybe it is Osclass/theme using older libs related?
I remember having upgraded some scripts on my own and both Bender and my other theme are doing great with the pre-resizer plugin besides some smaller bugs which are being taken care of.
Plugin generate javascript errors on a lot of themes, even there are no modifications on script of fine uploader and all the javascripts are added using osclass register function ;)
-
Some warnings/notices:
[28-Aug-2017 06:29:24 Europe/London] PHP Notice: Undefined index: name in /home/oc-content/plugins/preResize_images/index.php on line 43
[30-Aug-2017 07:08:41 Europe/London] PHP Warning: Invalid argument supplied for foreach() in /home/oc-content/plugins/preResize_images/index.php on line 68
-
Thanks, will be fixed in the next update.
Regards
-
Hi,
Version 2.2.0 already available on the Market:
https://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
+ Upgrade to Fine Uploader 5.15.0
+ Fixed Image Orientation bug when multiple images are being selected.
+ Optimization of scripts loading.
+ Several bugs fixed.
All the problems on Edit Ad should be addressed now. Also, PHP warnings and notices shouldn't appear anymore. Thanks to SmaRTeY and dev101 for their kind assistance. :)
Regards
-
The latest update seems to freeze for a while Firefox. Works with difficulty.
-
Also Edge doesn't work at all.
-
Good update, teseo please make premium version of the plugin where it would be possible to change primary image and image order when editing listings.
We´re receiving so many letters from customers who hate the fact that they have to delete all images if they want to reorder images.
-
Hi,
The latest update seems to freeze for a while Firefox. Works with difficulty.
There are problems with Drag & Drop on latest Firefox version (as we discussed in other thread, I think), flickering and not always working the first time, but it's the same with the previous Pre-resize 2.1.0. Please provide more details.
Regarding Edge, I don't have it, but Smartey was beta-testing using it and he said to me that everything is fine there... ??? I'll contact him again.
Good update, teseo please make premium version of the plugin where it would be possible to change primary image and image order when editing listings.
We´re receiving so many letters from customers who hate the fact that they have to delete all images if they want to reorder images.
Unfortunately once some images are already stored in the database, the process to reorder the images is totally different, you'd need a whole different plugin. There's this old plugin, Picture Director (https://forums.osclass.org/plugins/(new-plugin)-picture-director/) aimed to do that.
Regards
-
Regarding Edge, I don't have it, but Smartey was beta-testing using it and he said to me that everything is fine there... ??? I'll contact him again.
Regards
Checked once more a few minutes ago (just to be 100% sure) and it doesn't do anything. Doesn't work.
Apparently this is due to the uploader script. Pitty. Damn browsers. They force us to use Chrome and i don't want to do that.
-
Hi Aficionado,
see if your edge works on my website, I'll email you a test account so you can try to upload some images using Edge.
I recently (yesterday) added a new ad with Edge and I am using (only) Edge but it also works fine for me using FF.
All I can say is that the plugin works fine in my setup, there were some minor issues but Teseo fixed those and all = A-OK. The thing is, there are more possible issues in a theme/system than only the plugin but that doesn't Always mean the plugin is not working correctly. In this case all I can say is that it works for me and if it works for me it should work for others as well.
I'm on Windows 10 Home with Edge, I haven't tried IE11 but I am pretty sure it will work just fine. Also using the plugin with my Windows mobile Phone (Edge) works great.
Whatever is bugging you, you never know a 100% but I'm pretty sure it is related to something else.
P.s. if you value a little privacy better not use Chrome, feels like 'legit' spyware to me having read the Google 'terms'.
Regards,
Eric
Regarding Edge, I don't have it, but Smartey was beta-testing using it and he said to me that everything is fine there... ??? I'll contact him again.
Regards
Checked once more a few minutes ago (just to be 100% sure) and it doesn't do anything. Doesn't work.
Apparently this is due to the uploader script. Pitty. Damn browsers. They force us to use Chrome and i don't want to do that.
-
Eric,
I will test your site, but i don't think Edge works with drag'n'drop upload, with or without Teseo's plugin.
I have tested a virgin Bender also and it just doesn't work.
About Chrome: i never use Chrome because i also use ALL Google services (Adsense, Adwords) and i don't want Google to relate all that info. I always use Firefox for years now, but it seems 55 version is broken (in many areas).
-
Tested it at Eric's site with Edge. Same behavior as mine (of cource).
If you try to drop the image inside the area, it doesn't work. IF you play with it, until GREEN hover shows, it may work. Actually you need to drop the image BELOW the actual area and that is something users don't know and they will fail.
(as we talked with Eric, a bigger area would help and also some kind of message for the users would help. Some message telling them how it works, that GREEN should show and then drop the image. or something like that)
-
It's working ok, a bigger drop area might be a good improvement but anyway you can see it in action here: https://youtu.be/6bxfcLbvdDM
8)
-
It's working ok, a bigger drop area might be a good improvement but anyway you can see it in action here: https://youtu.be/6bxfcLbvdDM
8)
It is strange because in your video seems to work fine. When i tried your site, Edge didn't do so well.
who knows ....
-
Hi,
Maybe you two have a different version of Edge? ???
I've managed to solve the issue on latest Firefox (flickering). I'll upload an update to the Market soon, still waiting to see if I'm able to do something about this other issue described in this thread (https://forums.osclass.org/general-help/image-distortion-after-upload-like-picasso). BTW, it would be most useful if more people could do some testing using Chrome on Android with large images and provide feedback.
Regards
-
Hi,
Maybe you two have a different version of Edge? ???
I'using Microsoft Edge 40.15063.0.0 (Microsoft EdgeHTML 15.15063) 64bit. This is the latest available.
-
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
-
Interesting, there are more but this one does not seem to have the option for users to 'move' uploaded images and/or set a primary image which I think is added value for users uploading their images.
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
-
Interesting, there are more but this one does not seem to have the option for users to 'move' uploaded images and/or set a primary image which I think is added value for users uploading their images.
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
Eric what is important IMHO is the "right" selection of a script like this. What Osclass currently use seems abandoned somehow at Github (they are looking for a maintainer).
So features are not so important, but the script's "future" is.
I 'm not an expert in all this, but i am an expert in research and in "trending". I always look what others do in my field and i try to follow (if i can).
What i posted above seems to be used by Wordpress. And i NEVER had any problems with WP drap/drop and uploads.
-
Hi guys,
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
Sorry, not an option for me, that would mean to build a completely different plugin. :o
Anyway, @SmaRTeY, what's your Edge version on desktop? ???
Regards
-
Hi guys,
Sorry, not an option for me, that would mean to build a completely different plugin. :o
I'm not asking for something like that. Just saying ....
-
Hi teseo,
Afaik simply latest version.
Desktop Edge:
- Microsoft Edge 40.15063.0.0
- Microsoft EdgeHTML 15.15063
It also works fine on my Windows Mobile 10 (Edge).
Regards,
Eric
Hi guys,
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
Sorry, not an option for me, that would mean to build a completely different plugin. :o
Anyway, @SmaRTeY, what's your Edge version on desktop? ???
Regards
-
Well we have a working uploader and we have a plugin alternative so there's still some time ;)
Interesting, there are more but this one does not seem to have the option for users to 'move' uploaded images and/or set a primary image which I think is added value for users uploading their images.
How about this (instead of the current drag and drop script used in the plugin and Osclass):
http://www.plupload.com/
Not sure if there are any licensing issues .....
Eric what is important IMHO is the "right" selection of a script like this. What Osclass currently use seems abandoned somehow at Github (they are looking for a maintainer).
So features are not so important, but the script's "future" is.
I 'm not an expert in all this, but i am an expert in research and in "trending". I always look what others do in my field and i try to follow (if i can).
What i posted above seems to be used by Wordpress. And i NEVER had any problems with WP drap/drop and uploads.
-
Hi,
I'using Microsoft Edge 40.15063.0.0 (Microsoft EdgeHTML 15.15063) 64bit. This is the latest available.
Desktop Edge:
- Microsoft Edge 40.15063.0.0
- Microsoft EdgeHTML 15.15063
Same version, usually this points to some cacheing problem on the client side. Did you clean up your cache, @Aficionado? ???
Regards
-
Well, i re-did the Edge test, after clearing everything locally and remotely, and ...
:'( :'( :'( :'(
it works. For Edge that is.
:-[ :-[
Hi,
I'using Microsoft Edge 40.15063.0.0 (Microsoft EdgeHTML 15.15063) 64bit. This is the latest available.
Desktop Edge:
- Microsoft Edge 40.15063.0.0
- Microsoft EdgeHTML 15.15063
Same version, usually this points to some cacheing problem on the client side. Did you clean up your cache, @Aficionado? ???
Regards
-
Great! :)
Now I'm waiting for the results of some external tests (trying to solve this issue here (https://forums.osclass.org/general-help/image-distortion-after-upload-like-picasso)), then I'll release a new update.
Regards
-
Hi,
New update 2.2.1:
+ Solved image orientation issues when using ImageMagick on browsers not supporting pre-resizing.
+ Solved occasional image corruption in Chrome on Android.
+ Fixed flickering on Drag & Drop in Firefox.
Regards
-
New update 2.2.1:
+ Fixed flickering on Drag & Drop in Firefox.
Thanks for the update. Seems to work just fine with Firefox drag and drop.
8)
-
Excellent plugin thank you very much Teseo.
Only issue is it doesn't validate the max amount of items allowed.
I can upload past that limit, but the listing doesn't show anything more than the limit.
before, I would get client side-validation that I can't upload more than X items (zara theme).
-
Hi,
As far as I can see that's working fine, as in the previous versions. First a Javascript alert: "Too many items (5) would be uploaded. Item limit is 4." and then the same text on an internal error element.
Regards
-
Hmm, that's strange. I think it must be some modification I made to validation.
I'll have a look into it. Thanks again for the amazing plugin, honestly, saved me so much time.
-
When i uploaded Plugin and configured it in manner i was not able to Upload images when Image require plugin is enabled but after disabled image require plugin it worked well?
Can anyone suggest which Plugin's fault is it?
@Teseo have you checked it before?
And obviously Thanks for the Plugin
-
Hi,
Maybe nobody's fault, different plugins from different developers using same mechanisms to achieve their goal may be uncompatible. ???
I don't have that premium plugin so I can't tell you more, I guess you'll have to give up on one of them. :(
Regards
-
Hey, Teseo
Can you write me on bhattvatsal23@gmail.com and will talk more about this problem as I cannot attach that plugin I think!
I know no one is better than you to understand this plugin and you are the only one who can solve this problem Faster.
please consider this, to make your plugin more compatible, reliable and easy to use for all.
Thanks In advance!
-
when i try to upload an image using pre sized imagine plugin i get this error
upload failed
XHR returned response code 0 on google chrome, but i dont see on mozilla fire fox
Modify message
-
Hi,
Same image with both browsers? ???
Regards
-
To see if this is Plugin - Chrome related, are there others experiencing the same issue using Chrome?
I am now on Android 7 mobile and it all works fine, also using ff, ie and edge, I don't use Chrome myself.
when i try to upload an image using pre sized imagine plugin i get this error
upload failed
XHR returned response code 0 on google chrome, but i dont see on mozilla fire fox
Modify message
-
A small (?) problem with the latest version. It adds an empty script in the header:
<script type="text/javascript" src=""></script>
in the header. Not sure why. But disabling the plugin, that is gone. It was reported in Firefox debugger.
thanks !
-
Hi,
Couldn't reproduce the issue here. ??? Please check that these scripts are being loaded:
jquery.fineuploader.min.js
pica.min.js
jquery.ui.touch-punch.min.js
Regards
-
Hi,
Couldn't reproduce the issue here. ??? Please check that these scripts are being loaded:
jquery.fineuploader.min.js
pica.min.js
jquery.ui.touch-punch.min.js
Regards
Loaded where ? Home page ? Post page ?
ok, they load allright on Post pages.
-
@Teseo this shows ONLY at HOME page.
-
Yes, I just found that. Doesn't make any harm, I wanted to stop Fine Uploader from being loaded on pages other that Publish and Edit and this is the only way to ensure that safely.
Thanks, regards
-
Yes, I just found that. Doesn't make any harm, I wanted to stop Fine Uploader from being loaded on pages other that Publish and Edit and this is the only way to ensure that safely.
Thanks, regards
If you did that for a reason and it doesn't hurt, no need to change anything.
8)
-
Can someone help me ? since today for no reason (I didn't change anything) I got this error message while trying to upload image
Upload failure reason unknown
where it could come from ?
many thanks
Vincent
-
Should this plugin reduce size / byte of uploaded images? On my sites, it is not reducing . If I load a photo 400 kb , it stays same into UPLOADS folder.
Even many times it is increasing bytes, When I loaded images 70-100 bytes, I see into UPLOADS folder 115-120 bytes.
I did not change OSCLASS orignal media sizes; 240x200, 480x340, 640x480,
Please advice how to reduce bytes of photos while loading, I see on many WP or other CMS portals big secreen photos max 40,50 kb,
into famous ads portals I tried to load 1 MB photos, after publishing ads I visited URL and download loaded images, I suprised, it is max 40-50 kb size my loaded 1 MB photos. How they reduce 1 MB photo to 40 KB and why I can not reduce with Osclass?
-
Resizing of images to be uploaded is done only if the image has any dimention bigger that Maximum Size plugin setting (by default 1280 pixels), so for such small images your issue has nothing to do with the plugin.
I've answered in this other thread (https://forums.osclass.org/plugins/osclass-image-upload-size-higher-than-orginal-size-bender-theme) with all I know about internal Osclass mechanisms for this task, I can't help you with this.
Regards
-
Hey author. For some reason this plugin doesn't work for me. Tried everything a newbie can do.
-
Hi,
You don't provide any details, did you modify item-post.php in your theme as shown in Help page? ???
Regards
-
Hello teseo,
I use Gum Theme, how do I set up this plugin
I have this in my item-post.php
<div class="col-xs-12 form-group box-border"><?php _e('<strong>Add Photos: </strong>','gum'); ?><?php _e('If you have any issues uploading pictures,kindly use another browser','gum'); ?> <?php if( osc_images_enabled_at_items() ) { GumItemForm::ajax_photos(); ?> <?php if(!$edit) { ?> <p class="text-info" style="font-weight: 600;"><i class="fa fa-info-circle"></i> <?php _e('Ads with 2-3 images get more views and sales.', 'gum'); ?></p> <?php } ?> <?php } ?> </div>
Where do I pit this?
if (function_exists('przi_ajax_uploader')) przi_ajax_photos();else ItemForm::ajax_photos();
-
Hi,
Sorry, looks like Gum theme is not compatible with this plugin.
Regards
-
Hi Teseo and many thanks for shared with community this wonderful plugin.
So, I've one problem! All working fine but, sometimes "Make Primary" don't work and primary photo is set randomly.
Can you help me to find this bug? I'use WizEstate and OSClass 3.7.1
Thanks! Any help would appreciate.
-
Hi,
???
To reproduce the issue here I'd need a specific sequence of events that always produce that error. Or is it absolutely random?
Regards
-
Absolutely Random! It Work for some day then on some ads "Make Primary" doesn't work!
I used it on two site and the problem is on both.
-
In that case, I can't do anything about it. It might be something specific to your Osclass setup or server. ??? Come back if you find some kind of pattern.
Anyway, you can always change primary image dragging thumbnails, so at least there's that.
Regards
-
Hi, I've tested with the images that cause the bug but, the images upload with the correct filename as you seen in the next photo:
https://imgur.com/a/RqFtH3B (https://imgur.com/a/RqFtH3B)
When miniature or the slideshow is loaded the image fill in the inverse order as you seen in the next photo:
https://imgur.com/a/bKhfAjj (https://imgur.com/a/bKhfAjj)
https://imgur.com/a/zCGbgqe (https://imgur.com/a/zCGbgqe)
Have you any idea?!
I see now that in the Database the image as write in the inverse order:
https://imgur.com/a/Un3YMmk (https://imgur.com/a/Un3YMmk)
I think that is necessary to order the file before write in the database.
-
Finally I've solved the bug!!! The solution is in the oc-includes/osclass/model/ItemResource.php on line 104
I add this code: $this->dao->orderBy('pk_i_id', 'ASC');
and all working fine!
-
hey teseo,
this plugin dosn't work with modern theme,
please test it with modern theme and see it,
when you are choosing the images, images don't sit correctly side by side!
i guess css file set just to bender
would you please help me to set the css file to modern?
thanks
-
In that case,
No help?
-
Hi,
I have tested the plugin with latest Modern 5.1.0 and I couldn't see other problem than the "Make Primary Image" link appearing inside the image sometimes (this is indeed a CSS issue). Of course, this is for desktop view, Modern theme has never been responsive.
Regards
-
Hi everyone,
Version 2.3.0 is already available in the Market. Now the plugin includes a new system allowing full rearrangement of images in any circumstances (not only for newly uploaded images).
Please notice that texts shown to the user have changed, so you'll need to rebuild your translation file if you're using a language other than english or spanish (bundled with the plugin).
https://market.osclass.org/plugins/miscellaneous/pre-resize-images_496
Enjoy, regards
-
Hi,
I have tested the plugin with latest Modern 5.1.0 and I couldn't see other problem than the "Make Primary Image" link appearing inside the image sometimes (this is indeed a CSS issue). Of course, this is for desktop view, Modern theme has never been responsive.
Regards
Please try different resolutions. When i test, images sort up to down, not side by side and left to right.
Yes its css problem. So can't we design a plugin that its css works in all themes?
-
Hi,
I have tested the plugin with latest Modern 5.1.0 and I couldn't see other problem than the "Make Primary Image" link appearing inside the image sometimes (this is indeed a CSS issue). Of course, this is for desktop view, Modern theme has never been responsive.
Regards
Please try different resolutions. When i test, images sort up to down, not side by side and left to right.
Yes its css problem. So can't we design a plugin that its css works in all themes?
Modern theme is discontinued and it hasn't been updated since 20 Jan 2016. So it is dead and buried.
No reason to support discontinued versions.
-
Hi @teseo,
First of all thank you very much for your effort and excellent plugin. ;)
After updating to the latest version I have problems updating images in ad. I use the Amazon S3 plugin to save the images outside.
It seems that the images are renamed in application but in Amazon S3 they are left with the old name and then they are not found by url in frontend web
I think it's more Amazon S3 plugin problem and I have to add the hook "uploaded_file" on it
I have detected some errors in - function przi_reorder_photos_process would have to check if $new_order is array - if(is_array ($new_order))
Do you know how it would be best to fix the Amazon S3 plugin?
Would not it be easier to have a column in the table, such as "resource_order" instead of increasing index and renaming the files? Later sort or select images by this order?
Thanks
-
Hi,
I have tested the plugin with latest Modern 5.1.0 and I couldn't see other problem than the "Make Primary Image" link appearing inside the image sometimes (this is indeed a CSS issue). Of course, this is for desktop view, Modern theme has never been responsive.
Regards
Please try different resolutions. When i test, images sort up to down, not side by side and left to right.
Yes its css problem. So can't we design a plugin that its css works in all themes?
Teseo please help me to fix this thanks
-
Teseo please help me to fix this thanks
It is SAD SAD SAD people to bump topics, disrespect the users and developers and everyone. And it is not the first (or last) time.
It is also SAD that the forums are practically unmoderated and no care is taken for such bad-behaved and unpolite abusing users as youself.
-
Teseo please help me to fix this thanks
@Sophia_OS your web url please?
-
This is from my debug.log
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 33
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 49
-
Teseo please help me to fix this thanks
It is SAD SAD SAD people to bump topics, disrespect the users and developers and everyone. And it is not the first (or last) time.
It is also SAD that the forums are practically unmoderated and no care is taken for such bad-behaved and unpolite abusing users as youself.
I asked you several times not to leave comments for my posts. This is my last warning, otherwise i will ask Osclass admins to step in. Please be respectful.
-
Teseo please help me to fix this thanks
@Sophia_OS your web url please?
Thank you for replying, I'm working localhost. If you test it with modern theme you can see what i mean. Please download modern theme from osclass website. Thanks.
-
I asked you several times not to leave comments for my posts. This is my last warning, otherwise i will ask Osclass admins to step in. Please be respectful.
Please keep the warnings for your self. Feel free to contact whoever you want. You better learn to behave and be helpful in this community and leave the attitude for your home.
-
Hi everyone, out for a while, sorry.
First, a few days ago someone reported an issue with newest Osclass 3.8.0, warning about plugin uncompatibility. Usually, when a new Osclass version is released, plugins on the Market are automatically marked as compatible with it, but something went wrong this time, so I was forced to do it manually for Pre-resize 2.3.0. Problem is that I didn't know that this little change means that the latest plugin version is deactivated on the market until Osclass team revision, so right now the downloadable version is the old 2.2.1 :(
Anyway, I've replaced now v 2.3.0 with v. 2.3.1, addressing the problem pointed out by @Aficionado...
This is from my debug.log
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 33
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 49
...and fixing another bug with Delete link on mobile view. So it will be this 2.3.1 what should be available for download once the Osclass team gives the green light.
Hi @teseo,
First of all thank you very much for your effort and excellent plugin. ;)
After updating to the latest version I have problems updating images in ad. I use the Amazon S3 plugin to save the images outside.
It seems that the images are renamed in application but in Amazon S3 they are left with the old name and then they are not found by url in frontend web
I think it's more Amazon S3 plugin problem and I have to add the hook "uploaded_file" on it
I have detected some errors in - function przi_reorder_photos_process would have to check if $new_order is array - if(is_array ($new_order))
Do you know how it would be best to fix the Amazon S3 plugin?
Would not it be easier to have a column in the table, such as "resource_order" instead of increasing index and renaming the files? Later sort or select images by this order?
Thanks
I understand your issue, but I cannot guarantee compatibility with any 3rd party plugins and less when they require an API key to paid external services. Now, I would be willing to do this task if you (or some other person interested) share temporarily your Amazon API key with me while I program the thing. If you're interested leave your mail address so I could reach you (PM are disabled in the forum).
About this:
Would not it be easier to have a column in the table, such as "resource_order" instead of increasing index and renaming the files? Later sort or select images by this order?
Yes, that would have been my preferred option, but unfortunately in this case that approach would require a lot of modifications on theme files.
Regards
-
[quote
author=teseo
[/quote]
Please fix this:
In mobile, after dropping the images, "Delete" and "Make primary image" dosent work. Nothing happen when you touch them.
Thanks
-
Hi, is possible to have the same function "Make primary image" when users and admin item editing ? Regards
-
When I edit the ad from the administrator the following problems arise!
What is the reason for this error with the plugin and how to solve it?
/plugins/preResize_images/reorder_functions.php on line 38
/plugins/preResize_images/reorder_functions.php on line 51
-
Hello!
Sorry, I'm using Google translator.
There were problems with the plugin after the last update.
After the image is deleted, a link to an already non-existent image remains!
administrator can not delete the link to the deleted image!
(http://i.piccy.info/i9/0f5c573c2827dcccfe2efb3536f08912/1541091767/7866/1279379/2018_11_01_185653.png) (http://[URL=http://piccy.info/view3/12736714/b287f4a9784ff2a3a6e65d3fbc28ab60/)(http://i.piccy.info/a3/2018-11-01-17-02/i9-12736714/278x277-r/i.gif) (http://i.piccy.info/a3c/2018-11-01-17-02/i9-12736714/278x277-r)
(http://i.piccy.info/i9/d2816b31df48bef2aaa7188677a72dfd/1541092080/10625/1279379/2018_11_01_185829.png) (http://piccy.info/view3/12736729/7123bd9033328248796ad2826bb66b05/)(http://i.piccy.info/a3/2018-11-01-17-08/i9-12736729/547x440-r/i.gif) (http://i.piccy.info/a3c/2018-11-01-17-08/i9-12736729/547x440-r)
I had to roll back the plugin on Version: 2.3.0
-
Not fixed in recent update:
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 38
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 51
-
Also:
jquery-3.3.1.min.js:2 Uncaught Error: Cannot find template script at ID 'qq-template'!
at j (jquery.fineuploader.min.js:7)
at new qq.Templating (jquery.fineuploader.min.js:7)
at new qq.FineUploader (jquery.fineuploader.min.js:7)
at n (jquery.fineuploader.min.js:3)
at w.fn.init.t (jquery.fineuploader.min.js:3)
at HTMLDivElement.<anonymous> (jquery.fineuploader.min.js:3)
at Function.each (jquery-3.3.1.min.js:2)
at w.fn.init.each (jquery-3.3.1.min.js:2)
at w.fn.init.e.fn.fineUploader (jquery.fineuploader.min.js:3)
at HTMLDocument.<anonymous> (new:599)
-
I'm having problem with the latest version.
I mean the plugin works fine and all, the drag and drop functionality for the users is nice, but what I noticed is, that once I edit the advert inside admin panel, the order of the images changes once I click Save (Update listing). Why is this so? :o
-
Hi Teseo,
Your plugin is a must have and it works very well with bender but not with my theme, even with the coding provided. Images are elongated to a point you cant see what it is.
Does someone had this problem and know how to solve it ? Thank you.
I'm on 3.8 using Eva theme.
-
Not fixed in recent update:
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 38
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 51
I have the same problem, amateur did you find a solution to the problem?
-
Hi ,
I am using SAHARA theme and I have intalled and configured Pre-resize plugin but it doesn't work. When I try to post an ad with an image of about 4.5 MB, it is saved as 1.3 MB with Pre-resize but when I try to post the ad this is the error I get:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 13968 bytes) in /homepages/43/d766855380/htdocs/oc-includes/osclass/classes/ImageProcessing.php on line 75
Please Can I get some help? Thanks
-
Hi everyone, out for a while, sorry.
Regards
Hola Teseo, llevo meses mandándote mensajes, perdistes el corro?.. es Maikel ... el de xfini.com
-
This is from my debug.log
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 33
[11-Sep-2018 12:23:07 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 49
I am also receiving this above given error
-
Hello Teseo,
Thank you for this great plugin.
I'm having some issues using your plugin (v 2.3.1) with Osclass 3.8.0 and Sakela theme (v1.0.0) from Osclasswizards: Whatever the image type that I try to upload, I get this error:
File has an invalid extension, it should be one of png, gif, jpg, jpeg.
What's wrong?
-
me having same issue... anyone have any idea about this?
Not fixed in recent update:
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_slice() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 38
[02-Nov-2018 12:51:15 Europe/London] PHP Warning: array_flip() expects parameter 1 to be array, string given in /home/oc-content/plugins/preResize_images/reorder_functions.php on line 51