Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: abl_droploader: A native drag & drop multiple image uploader
This plugin rocks! Can’t believe I didn’t use it before.
One addition would be awesome: being able to assign to a new category upon import.
Offline
Re: abl_droploader: A native drag & drop multiple image uploader
On a side note, this breaks updating images.
When saving an image (after re-uploading/replacing), rather than going back to the image list, it’s just a piece of code on the page:
{"status":1,"image_id":4624}
:(
Last edited by rossharvey (2012-08-28 10:39:53)
Offline
#39 2012-09-15 14:24:42
- element
- Member
- Registered: 2009-11-18
- Posts: 99
Re: abl_droploader: A native drag & drop multiple image uploader
Excellent plugin, but I’m missing a preference to change the path where the plugin is installed. I would like to put it in /plugins/pluginname/ where all my other plugins go instead of /res/. Otherwise they’re scattered all over different directories.
Offline
#40 2012-09-20 14:05:48
- element
- Member
- Registered: 2009-11-18
- Posts: 99
Re: abl_droploader: A native drag & drop multiple image uploader
All thumbnails are standard 100×100 cropped. If you’re using those in your website and they need to be a different size and not cropped, big problem.
Offline
#41 2012-10-07 15:28:44
- mikulas
- Member
- From: Czech republic
- Registered: 2012-03-15
- Posts: 38
Re: abl_droploader: A native drag & drop multiple image uploader
Is it possible to add a function of creating a new image-category for uploading images?
Offline
#42 2012-11-29 13:50:38
- gfdesign
- Member
- From: Argentina
- Registered: 2009-04-20
- Posts: 401
Re: abl_droploader: A native drag & drop multiple image uploader
Congratulations for this plugins. I was looking for one that be compatible with TXP 4.5.2
One thing I noticed, when I delete all images, I can’t see options to upload new images, even native TXP options.
I’ve installed soo_plugin_pref earlier.
Am I doing anything wrong?
I join to this feature too (such as has jbx_multiple_image_upload)
rossharvey dijo:
One addition would be awesome: being able to assign to a new category upon import.
Many thanks
Last edited by gfdesign (2012-11-29 16:44:05)
Offline
#43 2012-11-29 14:52:48
- uli
- Moderator
- From: Cologne
- Registered: 2006-08-15
- Posts: 4,310
Re: abl_droploader: A native drag & drop multiple image uploader
rossharvey & gfdesign wrote:
One addition would be awesome: being able to assign to a new category upon import.
Is the category dropdown not available in 4.5.2? I have it in a 4.4.1 installation. Please inspect your source code (the version that JS influenced) for the existence of its ID abl-droploader-image-cat-sel
.
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
#44 2012-11-29 15:26:00
- gfdesign
- Member
- From: Argentina
- Registered: 2009-04-20
- Posts: 401
Re: abl_droploader: A native drag & drop multiple image uploader
Thanks Uli for replying
Yes, category dropdown is available, but I mean be able to create a NEW category if this doesn’t exist (such as jbx_multiple_image_upload does it)
I take advantage to repeat again, when no there is any loaded images, I can’t upload new images. All options to do it, are disabled.
I’ve tried in two clean installation (one in Local environment and the other in a online server) with same result.
Could anybody check if this is so?
Offline
#45 2012-11-29 15:54:17
- uli
- Moderator
- From: Cologne
- Registered: 2006-08-15
- Posts: 4,310
Re: abl_droploader: A native drag & drop multiple image uploader
Generally you’re right, with abl_droploader installed, the Image panel remains inaccessible without images. The Write panel however still offers the upload link, and uploading at least one image fixes the problem. At least for me on 4.4.1.
In bad weather I never leave home without wet_plugout, smd_where_used and adi_form_links
Offline
#46 2012-12-15 19:09:43
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: abl_droploader: A native drag & drop multiple image uploader
Hi,
I finally found the time to install this plugin for the first time and I’m amazed, really a cool plugin!
Also – as stated previously in this thread – it works very well with bot_image_upload so I’ll start using them together for sure.
Even if It doesn’t seem you are following this discussion anymore I have two questions:
1) It would be nice to have this plugin to work for the ‘file’ tab (I think you mentioned this somewhwre) and even in this case it would be an ideal complement to my other plugin bot_file_upload
2) I confirm the little bug mentioned here. The problem arises also when deleting an image. It seems like the plugin isn’t reloaded.
Offline
Re: abl_droploader: A native drag & drop multiple image uploader
Hi thanks for this plugin!
(using it together with bot_image_upload)
I’m also getting that {"status":x,"image_id":xxxx}
message when replacing an image.
And also as redbot mentioned there is that issue when the plugin doesn’t get reloaded in some cases.
Offline
Re: abl_droploader: A native drag & drop multiple image uploader
OK, if I’m commenting out the echo&exit lines in the at the abl_droploader_image_uploaded
function
at the bottom of the plugin it fixes that the status-id message will not appear when replacing an image, but it causing the main uploading to not function right.
Any easy way to disable the plugin when editing an image please ?
function abl_droploader_image_uploaded($event, $step, $id) {
$response = array(
'status' => 1,
'image_id' => $id,
);
//echo json_encode($response);
//exit;
}
Offline