Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

  1. Index
  2. » Plugin support
  3. » EBL_Upload

#85 2008-09-04 19:19:01

freischwimmen
Member
From: Cologne
Registered: 2007-05-28
Posts: 71
Website

Re: EBL_Upload

i think it would be great to have a multifile upload plugin that actually works, 12k is still VERY acceptable imo. Sounds great!

Offline

#86 2008-09-04 19:41:24

jstubbs
Member
From: Hong Kong
Registered: 2004-12-13
Posts: 2,395
Website

Re: EBL_Upload

Eric, not related to your post above, but is there any chance that this feature request might be possible?

Offline

#87 2008-09-04 23:56:59

TheEric
Plugin Author
From: Wyoming
Registered: 2004-09-17
Posts: 566

Re: EBL_Upload

@jstubbs – the current version already does this in a limited fashion. The category can be set prior to uploading, and the alt & image title is set according to the filename. For the next version, I’m debating various methods to do this.

Offline

#88 2008-09-09 14:00:03

TheEric
Plugin Author
From: Wyoming
Registered: 2004-09-17
Posts: 566

Re: EBL_Upload

Today I added a new feature that allows users to remove individual files from the upload queue prior to uploading. Previously in the older version, this wasn’t possible and the user would have to clear the entire list and requeue the files. Now, they just click on the file they want to remove, and POOF it’s gone. Here’s a snippet of this new code:

public function removefile (file:Object) 
{
	trace("removefiles [" + file + "]");
	var totalqueued:Number = this.file_queue.length; trace(totalqueued);

for (var i:Number = 0; i < totalqueued; i++) { if (this.file_queue[i].name == file) { trace(“remove1”); this.file_queue.splice(i,1); } else { trace(“not found”); } }
}

Last edited by TheEric (2008-09-09 14:39:49)

Offline

#89 2008-09-15 12:42:49

nardo
Member
From: tuvalahiti
Registered: 2004-04-22
Posts: 743

Re: EBL_Upload

Anyone on Textdrive/Joyent implemented this plugin successfully?
I keep getting error #2 … as reported in about page 3 or 4 of the thread – tried that workaround (htaccess in the root) but no go

Offline

#90 2008-09-15 14:45:47

masa
Member
From: Asturias, Spain
Registered: 2005-11-25
Posts: 1,091

Re: EBL_Upload

Did you also try generating a new serial no. according to Eric’s post? That did the trick for me on Textdrive.

Offline

#91 2008-09-15 21:34:25

weasol
New Member
Registered: 2008-09-06
Posts: 1

Re: EBL_Upload

Just want to say that Eric’s support is second to none! My Schoolboy errors (Read the instructions and double-check you’ve done what you think you’ve done.)

Looking forward to v2.

Last edited by weasol (2008-09-16 21:27:16)

Offline

#92 2008-09-16 04:48:05

nardo
Member
From: tuvalahiti
Registered: 2004-04-22
Posts: 743

Re: EBL_Upload

wot weasol said ; )

Offline

#93 2008-09-23 13:16:16

curiouz
Member
Registered: 2006-06-20
Posts: 56

Re: EBL_Upload

Hi Eric,

I’ve just purchased and installed your plugin, but I run into an error. When I’ve selected my images, filled in all the necessary details and click upload, the progress bar stops after uploading the first image and gives me the following error: HTTP Error, 302 occured.

What seems to be the problem?

Jonas

Offline

#94 2008-09-24 15:47:44

TheEric
Plugin Author
From: Wyoming
Registered: 2004-09-17
Posts: 566

Re: EBL_Upload

It’s actually a 406 error that you’re experiencing that is caused by mod_rewrite and flash’s incorrect header that is triggering an error. Because you don’t have a 406 error page, it’s forwarding (error 302) to the alternate location of the error page.

Just merge the included htaccess code from the archive you downloaded and merge it into your existing htaccess file. That should eliminate the 406 error.

Offline

#95 2008-09-24 18:36:59

curiouz
Member
Registered: 2006-06-20
Posts: 56

Re: EBL_Upload

That did the trick! thanks

I’ve also got a few feature requests:
  • Resizing based on the longest side
  • Resize: Width first and Height last instead of Height first and Width last.
  • thumbnail cropping!

Offline

#96 2008-09-24 18:43:35

TheEric
Plugin Author
From: Wyoming
Registered: 2004-09-17
Posts: 566

Re: EBL_Upload

I’m glad that fixed it.

Now, in reference to your requested features: It already resizes based upon the largest side, and I don’t understand what you mean by the second one? Cropping is coming in the next release.

Offline

  1. Index
  2. » Plugin support
  3. » EBL_Upload

Board footer

Powered by FluxBB