4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Releases & Support) => Topic started by: V@no on April 28, 2006, 05:16:27 AM

Title: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on April 28, 2006, 05:16:27 AM
A few days ago I started making a multi-upload mod, which actualy is very simular to rroc's [MOD] multiupload (http://www.4homepages.de/forum/index.php?topic=8517.msg39355#msg39355), but it uses "modules" that allow use of other tools, such as Java applets for uploading files. Besides that, "modules" type will simplify installation process and make updates painless (just replace files with new version)
At this stage, the mod includes two "modules": basic and JUpload.
Basic - is plain multi field page, where each file must be selected manualy one-by-one like on a regular upload page.
JUpload - is a free Java applet from www.jupload.biz which supports "drag'n drop" feature :). Unfortunetly the applet is very buggy and half of the features dont work properly...:( Yet, I've tryed go around each bug, it seems to work "fine", atleast from JavaScript part. Also, I must say, at the moment JUpload module does not work with other browsers but only on Internet Explorer :(

Since this is a beta version, I will include minimum installation instruction and will not include any extra modifications to add links/buttons to multi-upload pages, you will need type url in the browser manualy (this way you can use it on your site without anyone knowing it exists, which may be a security benefit ;))

So, here it goes:

Step 1
Download file from the attachment at the end of this thread.
Unpack it and upload all files to your site, make sure restore the directory tree (create new folders if dont exist):
includes/mupload.php
includes/mu_modules/basic.php[/b]
includes/mu_modules/jupload.php
includes/mu_modules/jupload/jupload.jar
templates/<your template>/member_mupload_jupload.html
templates/<your template>/member_muploaddropdown.html
templates/<your template>/member_muploadform_basic.html
templates/<your template>/member_muploadform_basic_bit.html
templates/<your template>/member_muploadform_jupload.html


Step 2
Open member.php
Find:
Code: [Select]
include(ROOT_PATH.'includes/page_header.php');Comment it out (add # or // at the beginning of this line) or simply remove it.

Step 2.1
Find:
Code: [Select]
$sendprocess = 0;Insert below:
Code: [Select]
/*
  MOD MULTI-UPLOAD-PLUS
  BEGIN INSERT
*/
if ($action == "muploadimage" || $action == "muploadform")
{
  $dir = opendir(ROOT_PATH."includes/mu_modules/");
  $mu_modules = array();
  while ($file = readdir($dir))
  {
    if (is_file(ROOT_PATH."includes/mu_modules/".$file) && !is_dir(ROOT_PATH."includes/mu_modules/".$file) && substr(strrchr($file,"."), 1) == "php") $mu_modules[] = $file;
  }
  closedir($dir);
  include(ROOT_PATH.'includes/mupload.php');
}
include(ROOT_PATH.'includes/page_header.php');
/*
  MOD MULTI-UPLOAD-PLUS
  END INSERT
*/


Step 3
Open templates/<youre template>/header.html
Find <body (that line might contein other stuff)
Now, look if in that tag present onLoad="" (probably if its present it has some stuff between the quotes)
If you found one, then right after first quote add: {mupload_onload} tag. (i.e. if you found something like this:
Code: [Select]
<body onLoad="somestuff();">then after modification it should look like this:
Code: [Select]
<body onLoad="{mupload_onload} somestuff();">If you did not have any onload="" thing, then simply add one, after space after <body (as in the example above, but without somestuff(); ;))


That it. :D

Now, how to use it.
In the address bar of your browser (I'd suggest you test it on IE first) type:
1) for "basic" form: http://<youraddress>/path/to/4images/member.php?action=muploadform or http://<youraddress>/path/to/4images/member.php?action=muploadform&mutype=basic
2) for "JUpload form: http://<youraddress>/path/to/4images/member.php?action=muploadform&mutype=jupload

P.S.
Here is a list of planned features:
- auto resize images
- auto copy original images into "big" folder (only if resized)
- auto backup original images into user-defined directory (with additional code this could be used later for restoration and/or reading EXIF/IPTC info)
- support for watermark by SLL

Version history:

v0.3b
- fixed thumbnails wouldnt upload
- fixed template can not be found error if upload error

v0.2b
- added support for [MOD] Categories upload dropdown form  (http://www.4homepages.de/forum/index.php?topic=7722.0) (replace includes/mupload.php)

v0.1b
- original release


Some screenshots:
Basic:
(http://img101.imageshack.us/img101/116/basicselected3ws.th.png) (http://img101.imageshack.us/my.php?image=basicselected3ws.png)
(http://img101.imageshack.us/img101/220/basicuploaded4ym.th.png) (http://img101.imageshack.us/my.php?image=basicuploaded4ym.png)

JUpload:
(http://img56.imageshack.us/img56/5176/juploadselected9fd.th.png) (http://img56.imageshack.us/my.php?image=juploadselected9fd.png)
(http://img101.imageshack.us/img101/8151/juploaduploaded0gx.th.png) (http://img101.imageshack.us/my.php?image=juploaduploaded0gx.png)
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: edu on April 28, 2006, 08:59:09 AM
wow !, this is exactly what I requested in this message (http://www.4homepages.de/forum/index.php?topic=12726.0).

I will try this ...

Thank you V@no.
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: mawenzi on April 28, 2006, 09:51:11 AM
Hi V@no,

... the planned features
Quote
- auto copy original images into "big" folder (only if resized)
- auto backup original images into user-defined directory (with additional code this could be used later for reading EXIF/IPTC info)
are very interesting and would be absolutely new !
I hope that these features will follow soon ...  :wink:

mawenzi
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: Loda on April 28, 2006, 11:40:28 AM
wow, fantastic mod!
but i think everything is wrong with the user rights..
if you open the links as gast you can see all kategories in the dropdownfield..
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: V@no on April 28, 2006, 02:57:57 PM
but i think everything is wrong with the user rights..
if you open the links as gast you can see all kategories in the dropdownfield..
Try open http://<youraddress>/path/to/4images/member.php?action=uploadform and you will see the exact same dropdown.

But, I guess, adding support for [MOD] Categories upload dropdown form (http://www.4homepages.de/forum/index.php?topic=7722.0) is a good idea :)

Redownload the package, replace includes/mupload.php (check version of the file, it should be 0.2b now) and install the mod above if you wish ;)
Title: Re: [MOD-beta] Multi-upload PLUS v0.2b
Post by: Fastian on April 28, 2006, 04:40:09 PM
Waoo
Another Great Mod by V@no :)
Cant wait to have it in my site.
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: Loda on April 28, 2006, 09:25:18 PM
but i think everything is wrong with the user rights..
if you open the links as gast you can see all kategories in the dropdownfield..
Try open http://<youraddress>/path/to/4images/member.php?action=uploadform and you will see the exact same dropdown.

But, I guess, adding support for [MOD] Categories upload dropdown form (http://www.4homepages.de/forum/index.php?topic=7722.0) is a good idea :)

Redownload the package, replace includes/mupload.php (check version of the file, it should be 0.2b now) and install the mod above if you wish ;)

jeppp... works perfekt! thank you very much, v@no!
Title: Re: [MOD-beta] Multi-upload PLUS v0.2b
Post by: Loda on April 29, 2006, 11:30:29 AM
uppsss.. i'm too fast.. it doesn`t work..
if i upload an image i can't see this :http://img101.imageshack.us/my.php?image=juploaduploaded0gx.png
without java it show me after sending the images a blank member.php page...
Title: Re: [MOD-beta] Multi-upload PLUS v0.2b
Post by: JensF on April 29, 2006, 01:32:19 PM
Is this Mod now working with Version 1.7 ???
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on April 29, 2006, 02:33:59 PM
uppsss.. i'm too fast.. it doesn`t work..
if i upload an image i can't see this :http://img101.imageshack.us/my.php?image=juploaduploaded0gx.png
without java it show me after sending the images a blank member.php page...
no clue why would it show a blank page especialy with java version, cause there its javascript that being executed when you hit submit button, no form actualy being submited...try new version, reupload mupload.php, basic.php and jupload.php


Is this Mod now working with Version 1.7 ???
I havent have chance test it, but theoreticaly it should work...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Loda on April 29, 2006, 10:53:00 PM
hmm.. i don't know where the mistake is...
maybe it is the step 3
i couldn't find any "onload" tag... and now i put it after the body tag:
Code: [Select]
<body onLoad="{mupload_onload}" bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475"
{pm_popup_header}>

is it right?

now I have upload the version 0.3 and install it, but i get a blank member.php if i want to upload an image (with basic upload). 
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on April 29, 2006, 10:58:57 PM
can I see it?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Loda on April 30, 2006, 07:57:10 AM
yes.. i send you a pm..
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: impss on May 01, 2006, 03:27:46 PM
V@no,

this is a awesome mod , but now i no longer get  popup  notifications with  PM v.2 mod - http://www.4homepages.de/forum/index.php?topic=6692.0

please advise

thank you
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 01, 2006, 03:37:35 PM
In includes/page_header.php replace
Code: [Select]
$pm_popup_header = " onload=\"Javascript:confirm_newpm()\"";with this:
Code: [Select]
$pm_popup_header = "confirm_newpm();";And then in header.html move {pm_popup_header} next to {mupload_onload}
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: impss on May 01, 2006, 04:44:36 PM
what should my body tag look like with just the Multiupload and pm popup ?

when i tried the above, i just got a blank screen
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: JensF on May 01, 2006, 08:08:41 PM
Hi there,

i think it´s a very good Mod but is there a way to upload images in more than one categorie???

I mean i upload image 1 in cat "a" and image 2 in cat "b"......etc.

Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 02, 2006, 02:03:21 AM
@impss:
Sorry, I left out a ";" at the end of the line (post corrected)

Hi there,

i think itґs a very good Mod but is there a way to upload images in more than one categorie???

I mean i upload image 1 in cat "a" and image 2 in cat "b"......etc.


This mod almost supports such feature, I mean, the upload process already has build it in, but the part that creates forms does not yet.

My original idea was to use one global category dropdown plus for each file individualy. That way all files will be uploaded into "global" selected category and only these that were individualy selected different category would be uploaded in the chosen category...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: impss on May 02, 2006, 03:28:13 PM
V@no, im sorry for being a pain, but I still do not get a pop up notification.
I no longer the blank screen however when using the alteration.

should my body tag look like this

Code: [Select]
<body onLoad="{mupload_onload} {pm_popup_header}">
thanks
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 02, 2006, 03:30:07 PM
open the page when the popup supposed to be showed, and look in the page source how the <body> tag looks like.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: impss on May 02, 2006, 04:10:16 PM
open the page when the popup supposed to be showed, and look in the page source how the <body> tag looks like.

Code: [Select]
<body onLoad="">
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 03, 2006, 12:29:56 AM
ok, can you create a test account, send a pm to that account and show me url to your gallery with login info for the test account ? (pm me if you dont want publish it)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: impss on May 03, 2006, 04:47:03 AM
V@no, it seems to be working now  :oops:

<--Scratching head

Thanks for this great mod  8)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: BartAfterDark on May 03, 2006, 04:37:53 PM
I can only sellect 1 image at a time, when I use basic :/
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 04, 2006, 12:20:29 AM
describe please
I can select more then one, so how doest it help? - it doesnt...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: edu on May 04, 2006, 09:23:59 AM
I have same problem, only I can upload 1 image

(http://img63.imageshack.us/img63/5585/multiupload9ge.gif)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 04, 2006, 02:38:20 PM
Oh, right...I made a misstake in the last version, I set a wrong variable to "1"...
in mupload.php change number in this variable:
Code: [Select]
$config['mu_max_files'] = 1; //maximum allowed files per upload
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: edu on May 04, 2006, 04:43:24 PM
Ok, thanks V@no.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: TIMT on May 13, 2006, 04:59:53 PM
Hi V@no

Could this Mod be the solution of my request...

http://www.4homepages.de/forum/index.php?topic=12592.msg68013#msg68013

Thanks for information.

TIMT
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: elvedix on May 13, 2006, 10:57:05 PM
works fine on IE but not on Firefox "JUPLOAD" hmm
maybe my firefox not suport java or?

sorry for bad english.....
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 14, 2006, 12:32:36 AM
Also, I must say, at the moment JUpload module does not work with other browsers but only on Internet Explorer :(


@TIMT:
yes, it can be modifyed for your request.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: TIMT on May 14, 2006, 08:11:08 AM
Hi V@no,

Can you post the code for this requirement (store file size and dimension of the original file in the database)?

Define new fields in 4images and create them in the db is not the problem.
But to do the modification in this MOD... I  have not the knowledge in PHP/Java to do that by my own.

Would be great!

Thanks
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: flo31083 on May 16, 2006, 01:23:29 AM
Quote
tep 2
Open member.php
Find:
Code:
include(ROOT_PATH.'includes/page_header.php');
Comment it out (add # or // at the beginning of this line) or simply remove it.

I do not understand that, i hav find this code, but whats that -> Comment it out (add # or // at the beginning of this line) or simply remove it
my english is vervy but, kann mir jemand das genauer erklären ? to me more exactly someone can explain  ?

thank you ahead
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on May 16, 2006, 01:36:05 AM
remove the line
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: flo31083 on May 16, 2006, 01:38:54 AM
ok thanks
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: TIMT on May 17, 2006, 11:59:32 PM
Hi V@no

Please give me a short feedback, if you see a possibility to post the required code or not.

Thank you!

Quote
Can you post the code for this requirement (store file size and dimension of the original file in the database)?

Define new fields in 4images and create them in the db is not the problem.
But to do the modification in this MOD... I  have not the knowledge in PHP/Java to do that by my own.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: TIMT on May 20, 2006, 04:34:26 PM
Hi V@no,

If there is no chance for me that you post the code, I will place an order by a developper and pay for the realisation.

Please give me a short feedback.

Thanks!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: idijotaz on June 01, 2006, 04:54:03 PM
ok... java upload works and its really cool, but in standart mode i cant select how many pictures i want upload, shows only 1  :cry:
and 1 more thing... java applet dont want to use lithuanian letters (ą, ę, ė, į, š, ų, ū, ž, č)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on June 01, 2006, 11:54:15 PM
Yeah, the java applet is so bugy, I'm stuck because of it...still looking for a free applet that would allow use additional form with extra info for each file, otherwise the whole concept of uploading must be rewriten, that would require edit each image after uploading before its getting validated or added to the gallery...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Jan-Lukas on June 03, 2006, 09:58:16 PM
ist bestimmt ein toller Mod, aber dafür jetzt noch mein Schulenglisch von Anfang 1970 auffrischen  :cry:
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sir Sky-Walker on June 07, 2006, 12:13:06 AM
Sehr geiler MOD

Aber eins fehlt noch. Wenn man beispielsweise 100 Datein von der Festplatte auswählt (geht ja durch einfaches makieren) wäre es ganz praktisch wenn der MOD automatisch z.B. Bild 1 -100 nennt. Oder ich schreibe "Ausflug Hamburg Bild" und dann die Zahlen.
Oder er übernimmt gleich die Bildernamen. Denn bei 100 Bildern ist es aufwändig, jedes einzellne zu benennen!
Ist sowas möglich???

-----------------------------

It is possibel to set automaticly Pic number at upload? For example Pic 1 -100 ? So i muss not put in all the names for 100 pics.
Or the mod takes the name from the pic on fly. The same name i have gave the picture on my pc.
(sorry for my englich)
It s realistic?

Thanks
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on June 07, 2006, 01:04:16 AM
hmmm...I like this idea, will see what I can do in the future versions ;)

Thanks.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Zyga on June 10, 2006, 01:28:51 PM
Quote from: V@no
I must say, at the moment JUpload module does not work with other browsers but only on Internet Explorer :(

hmmmm?
On Jupload site when we can view movie they use it in firefox
 :?:

http://www.jupload.biz/screencasts/DragAndDropPlugin-001.html


What with resizing pictures?
resizing on client side - is it possible with this java aplet ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on June 10, 2006, 05:30:47 PM
hmmmm?
On Jupload site when we can view movie they use it in firefox
 :?:

http://www.jupload.biz/screencasts/DragAndDropPlugin-001.html


What with resizing pictures?
resizing on client side - is it possible with this java aplet ?

I was only talking about the module. Because of the bugs in the applet, I had to do alot of work arounds to achive how I wanted it to work, there are alot of javascript I had to add, thats why it doesnt work with other browsers at the moment.
as of picture resize, yes, you could configure the applet in the template, feel free to experiment ;)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Zyga on June 11, 2006, 05:06:51 PM
could someone (probably V@no  :wink: ) add again files to download there is a some strange problem with archiwum
"unexpected end of file/broken file"

edit
-----
checked with newest rar and zip
-----
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on June 11, 2006, 07:09:06 PM
The file is fine, delete your internet cache and redownload the file.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Garcya on July 24, 2006, 09:38:54 PM
I have a question please :
Is it possible that normal users who don't know the link to the multiupload to use the MOD? I want that so how can i make a button near upload named "multiupload" or something like that, when clicked to open the multiupload section and the normal users to upload as many photos as they want ?
And a problem also, when i try to upload with that java applet it working fine untill i try to click the "submit" button, i can chose the photos, its showing info and the rest, but i can't upload them, i click submit but nothing hapens. I get on the taskbar "done, but with errors on page"
Any clue ? my website with the javaupload is here : http://adrfer.freehostia.com/photos/member.php?action=muploadform&mutype=jupload
Thanks in advance
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: troopers on August 11, 2006, 11:41:02 PM
looks good, a new version of the appled is also out, but if i upload a picture, i get an error

Fatal error: Call to a member function on a non-object in /srv/www/htdocs/includes/mu_modules/jupload.php on line 81
line 81:     $table_fields = $site_db->get_table_fields((($direct_upload) ? IMAGES_TABLE : IMAGES_TEMP_TABLE));

hmm, don't know .......

i'm using the 1.7 version.

Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Garcya on August 13, 2006, 01:02:02 PM
Can you simply modify the "upload" button so when you click it it goes to "multiupload" directory ? i mean when you click "upload" it redirects you to http://photogallery.com/member.php?action=muploadform instead of the normal upload? i have my multiupload form here http://adrfer.freehostia.com/photos/member.php?action=muploadform and i want the upload button to redirect me to that adress ! Is it possible ? what do i need to modify ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: troopers on August 13, 2006, 05:45:08 PM
i've commented out the line 81, and now it works fine.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on August 14, 2006, 12:05:39 AM
a new version of the appled is also out
forgot to ask you, where did you get that information? on the website the current version is still v0.86 and v0.90 is "entered beta state" but I couldnt find a link to download it...so, its not out yet (?)
Untill v0.90 is out development of this mod will remain on hold.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: troopers on August 19, 2006, 01:49:26 PM
ahh, mein fehler, hatte nicht darauf geachtet, obs man downloaden kann oder nicht, sah nur 0.9 beta blablabla, und dachte wäre zum testen freigebegeben.

Aber andere sache, kann man bei dem Upload irgendwie einstellen, das er nur 1 BEschreibung etc... für alle nimmt, anstatt für jedes Bild ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: troopers on August 19, 2006, 09:05:56 PM
another problem. how is it possible to add an dropdown for each file ? i added

Code: [Select]
'<select class="input" name="test'+i+'">'+
               '<option value="Ja">Ja</option>'+
               '<option value="Nein">Nein</option>'+

and this works... but only the first entry in the dropdown. The other Options  like "nein" or "blabla" or anything else doenst work. Each File have everytime "Ja" .

Regards...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: terryjianlin on September 01, 2006, 12:32:45 PM
Dear V@no:
I just find out that I am unable to upload any file by using the basic uploadform,, page stays there afer click upload button. I am using the 4images V.1.73?   
Also, are we suppose have to delete the <noscript></noscript> in the member_muploaddropdown.html
Quote
<form method="get" action="{url_member}" name="changenum" style="margin:0px;">
  <input type="hidden" name="action" value="muploadform" />
  {if cat_id}<input type="hidden" name="cat_id" value="{cat_id}" />{endif cat_id}
  <select name="numupload" class="categoryselect" onchange="if (this.options[this.selectedIndex].value != 0){ get_id('numupload').value = this.options[this.selectedIndex].value; forms['changenum'].submit() }">{numupload_dropdown}</select>
  <noscript><input type="submit" name="Submit" class="button" value="{lang_numupload_submit}"></noscript>
</form>
,
otherwise we are unable to select the file number :lol:
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: alphavto on October 08, 2006, 03:41:47 PM
Here is a list of planned features:
- auto resize images
- auto copy original images into "big" folder (only if resized)
- auto backup original images into user-defined directory (with additional code this could be used later for restoration and/or reading EXIF/IPTC info)
- support for watermark by SLL

Thanks for the great MOD. I like these Module-Version of Multi-Upload.
Is functionally with 4images 1.7.3.
@Vano: I hope you insert the Auto-Image-Resizer in the modul, than it's perfect!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: picster on January 03, 2007, 01:48:20 PM
Hi V@no,
This is, what I was looking for - again, superMOD :D
Oh, right...I made a misstake in the last version, I set a wrong variable to "1"...
in mupload.php change number in this variable:
Code: [Select]
$config['mu_max_files'] = 1; //maximum allowed files per upload

Unfortunately I still have the same issue in standard mode (s.a.) After I have changed the variable to 10 the dropdown-panel on the uploadform still remains at "1" ???
Thanks for helping,
picster

PS.:  it's working for me with FF1.5 in standard-mode on 4homepages 1.7.4


Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: picster on January 03, 2007, 11:31:06 PM
Hi V@no,

after playing around with your multiuploadMOD, which is still phantastic - aside the bug posted above  :D  I've got an idea:
As you write on the ToDo-list to integrate image-resizing, annotation and keeping the EXIF and IPTC-data alive, maybe this could be a much simpler approach (as all these things are already done by you, namely in your mega-phantastic MOD 'checkNewImages').
So my idea is, why not giving the administrator the ability to define a certain upload-directory, in which the files will be uploaded  without being written into the database? This way, the uploaded files could be recocnized by 'checkNewImages' and could be proceeded simply to get annotation, resizing etc with one klick, without "killing" the IPTC and EXIF-Data...
As I am using 4homepages to build up a photocommunity, where I definetely ask the members for uploads and also to set keywords in advance, plus, that in a photocommunity people are very interested in technical details, this would be perfect. As I will have to check all uploads before publishing them, this would be a very interesting and comfortable workaround, what do you think???

Greetings (and I forgot that before - a happy new year for you and the 4homepage-team :D)
picster
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: maziggy on January 08, 2007, 03:41:06 PM
Does the JUpload applet still work with IE only ? I'm wondering if there are any efforst to make it work with Firefox.

Thanks, Martin
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: maziggy on January 09, 2007, 07:20:24 PM
Does the JUpload applet still work with IE only ? I'm wondering if there are any efforst to make it work with Firefox.

Thanks, Martin


No idea?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: jamstave on January 10, 2007, 10:50:38 PM
I removed the image name,description and keywprds and uploading is working but very first time when i add image i getting this warning message.

(http://www.isaithenral.com/Cosis/images/75834error.jpg)

I click on the ok button then i click on the submit button file uploaded please some help me to correct this error.

My javascript in the member_muploadform_jupload.html

Code: [Select]
<script type="text/javascript" language="javascript">
  var filescache = new Array();
  var img_file_cache = new Array();
  var numfiles = 0;
  var uploadednum = null;
function get_id(id)
{
 if (document.getElementById) return document.getElementById(id);
 if (document.all && !document.getElementById) return document.all[id];
 if (document.layers) return document.layers[id];
}
function replaceDocument(content)
{
  get_id('result').innerHTML += content;
  get_id('result').style.display = "block";
}
function muploadinit()
{
  if (!get_id('JUpload')) return;

  // check if jupload is up and running
  if (get_id('JUpload').jsIsReady())
  {
    // Register the listeners
    get_id('JUpload').jsRegisterUploaded('Uploaded');
    get_id('JUpload').jsRegisterAddedListener("AddedListener");
    get_id('JUpload').jsRegisterRemoveListener("RemoveListener");
    get_id('JUpload').jsRegisterProgressListener('ProgressListener');
    RemoveListener();
  }
  else
  {
    // wait and try again until JUpload is ready
    window.setTimeout('muploadinit()',400);
  }
}

function printfields(i,num)
{
  return '<input type="hidden" name="media_file_number" value="'+num+'">';
}
function AddedListener()
{
  var num = get_id('JUpload').jsGetFileNumber();
  if (!num) return;
  var fvar = "";
  numfiles = num;
  for(i=0; i<num; i++)
  {
    var img_file = get_id('JUpload').jsGetFileAt(i);
    if (filescache[i] && filescache[i] == img_file)
    {
     
    }
    else
    {
     
      filescache[i] = img_file;
    }
    fvar += printfields(i,img_file,i+1)
  }
  get_id('fields').innerHTML = fvar;
  get_id('fields').style.display = "block";
}

function RemoveListener()
{
  var num = get_id('JUpload').jsGetFileNumber();
  var fvar = "";
  var tempcache = new Array();
  if (uploadednum == null && numfiles != num)
  {
    if (num)
    {
      for(i=0; i<numfiles; i++)
      {
        for(j=0;j<num;j++)
        {
          var img_file = get_id('JUpload').jsGetFileAt(j);
          if (img_file == filescache[i])
          {
           
            fvar += printfields(j,img_file,i+1);
            tempcache[j] = img_file;
            break;
          }
        }
      }
      filescache = tempcache;
    }
    numfiles = num;
    get_id('fields').innerHTML = fvar;
    get_id('fields').style.display = "block";
  }
  window.setTimeout('RemoveListener()',400);
}
function submitupload()
{
  var num = get_id('JUpload').jsGetFileNumber();
  if (num)
  {
    for(i=0; i<num; i++)
    {
      img_file_cache[i] = get_id('JUpload').jsGetFileAt(i);
     
    }
    if (uploadednum == null) uploadednum = 0;
    get_id('fields').style.display = "none";
    get_id('fields').innerHTML = printfields(0,img_file_cache[0],1);
    get_id('result').style.display = "none";
    get_id('result').innerHTML = "";

  }
  get_id('JUpload').jsClickUpload();
}
function Uploaded()
{
  uploadednum++;
  if (uploadednum < numfiles)
    get_id('fields').innerHTML = printfields(0,img_file_cache[uploadednum],uploadednum+1);
  else
    ProgressListener('',100);
}
function ProgressListener(command,percentage)
{
  if (percentage >= 100)
  {
    uploadednum = null;
    filescache = new Array();
    img_file_cache = new Array();
    get_id('fields').innerHTML = "";
  }
}
    </script>
Title: How do i remove the file path in the success message
Post by: jamstave on January 12, 2007, 08:29:39 PM
How do i remove the file path in the success message.

Jamstave
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: mag on January 14, 2007, 03:54:53 PM
das mod ist endlich das was mann braucht,
um das uploaden für user zu erleichtern

wie sieht es denn mit der weiterentwicklung bez.

- bildgrößen anpassung
- und bild benennung aus? < ist hierzu nicht was einfaches zu  machen das er nicht einfach den dateinamen verwendet?

lg
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: tisi on February 10, 2007, 06:08:24 PM
Does the JUpload applet still work with IE only ? I'm wondering if there are any efforst to make it work with Firefox.

Thanks, Martin


yes, what about Firefox ?  I doesn't work with my favorite browser  :(
any idea why it doesn't ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: picster on February 10, 2007, 10:58:11 PM
It does! Look at www.jupload.biz where the actual version has been released (v.0.90) It's working fine with FF :D

Greetz, jens
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: tisi on February 11, 2007, 08:02:38 AM
Hallo Jens,

hast du schon laufen auf deiner Seite ?
Habe die jupload.jar ausgetauscht, aber das scheint nicht auszureichen.
Danach läuft's auch nicht mehr im IE und noch immer nicht im FF.
Da müssen sicher noch andere Dateimanipulationen gemacht werden  :?:
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: picster on February 11, 2007, 11:26:32 PM
Hi tisi,

ich hab's auf meinem lokalen Server laufen, "right-out-the-box", ohne irgendwelche veränderungen o.ä. In meine 4homepages hab ich es noch nicht eingestrickt, dazu reichen mein js/php-wissen noch nicht- Aber vielleicht liest V@no mit???? :wink:

ciao, jens
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: tisi on March 02, 2007, 05:40:01 PM
It does! Look at www.jupload.biz where the actual version has been released (v.0.90) It's working fine with FF :D



Hello V@NO,

did you already try to implement the newest version from www.jupload.biz in your mod ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: grease082 on June 06, 2007, 12:35:49 AM
kann man den bug irgendwie beheben? dass das im firefox auch geht?

und irgendwie einstellen dass immer bild1, bild2, bild3 usw. kommt damit man den bildnamen nicht für jedes bild eingeben muss?

bitte um hilfe!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: grease082 on June 06, 2007, 12:39:00 AM
und kann man auch links hinzufügen die z.B.: nur Moderatoren sehen? wenn man
http://www.4homepages.de/forum/index.php?topic=17408.0

den mod installiert hat?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: abramelin on June 09, 2007, 08:29:24 PM
can i display the two pics in the same page when viewing them ? how can i do it?
i mean i want user to upload 2 images and the system then will show them in one page not seperate?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: egyptsons on June 11, 2007, 06:51:51 PM
Hello,
I read the 5 page :) and do all the work by steps as you say but
I got this error when I try to upload
http://gallery.egyptsons.com/member.php?action=muploadform&numupload=2

Code: [Select]
Fatal error: Call to a member function on a non-object in /home/egyptson/public_html/gallery/includes/mu_modules/basic.php on line 82
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: rufpix on June 21, 2007, 09:50:53 PM
im getting crazy with this mod!

my english is good, thats not the problem... the problem is: IT DOESNT WOOORK... damn, ich tried a lot of things but nothing worked!

http://www.rufpix.de/member.php?action=muploadform&mutype=jupload  (i am using firefox and it shows nothing - just the website with the "Kontrollzentrum" - no upload form)

my friend told me, that there is a script error.. but i dont know where... ive done what was written in the first post! please help..

appreciate, tim
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Marc0083 on June 21, 2007, 09:57:54 PM
(i am using firefox..)


runs only with internet Explorer
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: rufpix on June 21, 2007, 10:15:25 PM
some pages before someone wrote it should work with firefox also if u use these new version...

but anyway, with ie - dont work ;)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: rufpix on July 06, 2007, 05:25:49 PM
please help =(
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: egoplawi on July 17, 2007, 06:53:29 PM
Hello,
I read the 5 page :) and do all the work by steps as you say but
I got this error when I try to upload
http://gallery.egyptsons.com/member.php?action=muploadform&numupload=2

Code: [Select]
Fatal error: Call to a member function on a non-object in /home/egyptson/public_html/gallery/includes/mu_modules/basic.php on line 82



Hello!

I had the same error. The reason is if you add some aditional fields to your database (table 4images_images) the file \gallery\includes\mu_modules\basic.php do not work anymore. I dont know why. But you can deactivate this part of the file

Code: [Select]
/*load data for additional fields
  if (!empty($additional_image_fields))
  {
    $table_fields = $site_db->get_table_fields((($direct_upload) ? IMAGES_TABLE : IMAGES_TEMP_TABLE));
    foreach ($additional_image_fields as $key => $val)
    {
      if (isset($HTTP_POST_VARS[$key.$i]) && isset($table_fields[$key]))
      {
        $HTTP_POST_VARS[$key] = $HTTP_POST_VARS[$key.$i];
      }
    }
  }*/

until we know the reason.

Egoplawi
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: misi208 on August 05, 2007, 06:58:20 PM
Hi

I have attachede the mod. I would all picture the same name by uploading. That I not all picture a name with hand write.

############

Hi

ich habe den Mod installiert, es gibt glaub ich einen thread schon wo erklärt wird wie man für alle Bilder die man hochladen möchte den gleichen Namen angeben kann, und nicht jedes Bild extra einen Namen verpassen muß. Nur ich finde diesen nicht mehr. Kann mir da trotzdem einer helfen.

MiSi
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 05, 2007, 07:37:28 PM
Quote
Fatal error: Call to a member function on a non-object in /home/egyptson/public_html/gallery/includes/mu_modules/basic.php on line 82

In includes/mu_modules/basic.php file,

find:

Quote
global $config, $cat_id, $additional_image_fields, $search_match_fields, $cat_id_backup;

replace:

Quote
global $site_db, $config, $cat_id, $additional_image_fields, $search_match_fields, $cat_id_backup;

Quote
until we know the reason.

No do. Only damage MOD. Now - you have reason. ;)

Quote
I would all picture the same name by uploading.

All same picture name ? No do ... must all be diff name ...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: misi208 on August 05, 2007, 08:26:24 PM
Quote
I would all picture the same name by uploading.

All same picture name ? No do ... must all be diff name ...

I mean that by upload i Fill out this form once only for all picture.

Picture 1 (http://www.misiworld.de/_datei/fehler2mf.jpg) Picture 2 (http://www.misiworld.de/_datei/fehler3.jpg)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 05, 2007, 08:31:30 PM
Like that MOD ?

http://www.4homepages.de/forum/index.php?topic=14170.0

Can do import with ZIP - all once. Long time done. ;)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: misi208 on August 05, 2007, 09:07:50 PM
Very good mod but any user can't handle with ZIP.
I have the function found in the forum before my pc shutdown after I have not found the site again.

I hope you understand me with my bad english.

I want keywords and picture description enter once only by all pictures.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 05, 2007, 09:36:44 PM
Quote
I want keywords and picture description enter once only by all pictures.

True. ZIP Import no do with once by picture ...
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: egoplawi on August 06, 2007, 02:31:32 AM
@egyptsons

Hello,
I read the 5 page :) and do all the work by steps as you say but
I got this error when I try to upload
http://gallery.egyptsons.com/member.php?action=muploadform&numupload=2

Code: [Select]
Fatal error: Call to a member function on a non-object in /home/egyptson/public_html/gallery/includes/mu_modules/basic.php on line 82


Hi egyptsons!

Wellcome to my gallery as one of the first members.

I saw that your multi uploade form http://gallery.egyptsons.com/member.php?action=muploadform&numupload=2 (http://gallery.egyptsons.com/member.php?action=muploadform&numupload=2) now works without errors. No aditional image fields, but no errors.

Did you use my "solution" for this problem?

Would you like to upload some of your nice pictures to my gallery?
I created an off-topic category and i created also a subcategory for your pictures:
http://punksy.com/gallery/categories.php?cat_id=77&l=english (http://punksy.com/gallery/categories.php?cat_id=77&l=english)

Greatings from Vienna!
Egoplawi

@thunderstrike

Quote

In includes/mu_modules/basic.php file,

find:


global $config, $cat_id, $additional_image_fields, $search_match_fields, $cat_id_backup;


replace:


global $site_db, $config, $cat_id, $additional_image_fields, $search_match_fields, $cat_id_backup;

Hi thunderstrike!

No Fatal error but still no aditional image fields in multi upload form.   ???

Egoplawi


Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 06, 2007, 03:15:55 AM
Quote
No Fatal error but still no aditional image fields in multi upload form.   ???

Enable error_reporting from global. Go multi-upload once more. Error should appear.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: egoplawi on August 06, 2007, 07:34:01 AM
Hi!

Ignore my last posts in this thread.

I forgot to add the rows for the additional image fields to the upload and multiupload templates. :oops: :oops:

Since i saw appear this additional rows in the admin area automatic i turned off my brain.

Egoplawi
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 06, 2007, 07:59:53 AM
Thank for posting.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: beule on August 13, 2007, 05:30:34 PM
Hey bin Deutscher und versteh nur Bahnhof, wollte mal fragen ob es schon ne Lösung zum benutzen für FIREFOX Mozilla gibt?

Wenns geht auf deutsch! Danke!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on August 13, 2007, 08:33:45 PM
No get german ... sorry.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Tino23 on August 15, 2007, 05:18:30 PM
Ja, ne Anleitung in Deutsch würde ich auch mal Super finden. Würde zumindest für eine de Domain passend sein und sonst wird die Deutsche Sprache ja auch in 4images Unterstützt.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: lemccoy on September 06, 2007, 11:10:40 PM
this mod is great, and might help me get back some users from facebook! TRAITORS! anyways...

has anyone been able to get the resize BEFORE upload (on the client-side) working?  I uploaded the new JUpload file and it seems to be working.

Thanks!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: lemccoy on September 06, 2007, 11:52:29 PM
OK I answered my own question...sortof...

to resize the images, add the following to the file member_muploadform_jupload.html:

find:
Code: [Select]
   <!-- Languages -->
   <param name="labelFiles" value="{lang_files}">

add ABOVE:
Code: [Select]
<param name="convertImagesToFormat" value="jpg">
<param name="resizeImageMaxWidth" value="1024">
<param name="resizeImageMaxHeight" value="1024">

I tried:
Code: [Select]
<param name="convertImagesToFormat" value="jpg">
<param name="resizeImageMaxWidth" value="{max_media_imagewidth}">
<param name="resizeImageMaxHeight" value="{max_media_imageheight}">
but this didn't work?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: skidpics on October 15, 2007, 05:10:14 PM
(i am using firefox..)


runs only with internet Explorer

What can we do to get it to work for Firefox?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: skidpics on October 15, 2007, 05:16:58 PM
How can we get the jupload module to use the default filename that is being uploaded for the Image Name field without dropping down numberous file boxes to enter the info in? 
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: infors2 on February 13, 2008, 04:43:05 PM
Hi.
I have a problem to fit in Step 3. I found "<body" and I found no "somestuff".
The line I found "<body" was this: <body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475onLoad="{mupload_onload)">

If I fit in the necessary part, is this right? <body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475onLoad="{mupload_onload)">
Or what do I have to do?
Greetnings,
infors.


Step 3
Open templates/<youre template>/header.html
Find <body (that line might contein other stuff)
Now, look if in that tag present onLoad="" (probably if its present it has some stuff between the quotes)
If you found one, then right after first quote add: {mupload_onload} tag. (i.e. if you found something like this:
Code:
<body onLoad="somestuff();">then after modification it should look like this:
Code:
<body onLoad="{mupload_onload} somestuff();">If you did not have any onload="" thing, then simply add one, after space after <body (as in the example above, but without somestuff(); )


And one more question. How kann I copy and past the name of the pictures? Everytime I try I got the Copyright popup. Do you have any idea?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: infors2 on February 13, 2008, 11:02:59 PM
looks good, a new version of the appled is also out, but if i upload a picture, i get an error

Fatal error: Call to a member function on a non-object in /srv/www/htdocs/includes/mu_modules/jupload.php on line 81
line 81:     $table_fields = $site_db->get_table_fields((($direct_upload) ? IMAGES_TABLE : IMAGES_TEMP_TABLE));

hmm, don't know .......

i'm using the 1.7 version.



Now I have the same problem. You wrote that you recommended out the file. But how can I do that?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: regina on February 14, 2008, 07:14:50 PM
Hi.
I have a problem to fit in Step 3. I found "<body" and I found no "somestuff".
The line I found "<body" was this: <body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475onLoad="{mupload_onload)">

If I fit in the necessary part, is this right? <body bgcolor="#FFFFFF" text="#0F5475" link="#0F5475" vlink="#0F5475" alink="#0F5475onLoad="{mupload_onload)">
Or what do I have to do?
Greetnings,
infors.

And one more question. How kann I copy and past the name of the pictures? Everytime I try I got the Copyright popup. Do you have any idea?
Hi guys,
i have the same problem... everything is showing corretly , I click the uploud button but the page don't do anything...  :cry:

can somebody help us ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on February 15, 2008, 12:48:42 AM
This work ?

http://www.4homepages.de/forum/index.php?topic=20072.0
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: regina on February 15, 2008, 12:47:10 PM
This work ?

http://www.4homepages.de/forum/index.php?topic=20072.0
yes it works correctly...
but i want to Multi-upload PLUS v0.3b... Actually there is no problem with scripts,, but when i click the uploud button,page doesnt do anything
i am confused  :?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: regina on February 18, 2008, 06:41:37 PM
sorry  :oops:

is there any Suggestion ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: thunderstrike on February 18, 2008, 08:22:17 PM
sorry  :oops:

is there any Suggestion ?

I say before ... new version publish and you want use old version ... what can be solution ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: kkdai on March 04, 2008, 09:05:49 PM
Dear V@no,
Thanks this mod, it is great and it work.
I just have one suggestion.

Does it can auto add PIC when I choose file from JupLoad?
Because I found if I forgot fill the image name, it will not upload any more.

Thanks you

Evan
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: ProDez on April 09, 2008, 09:50:05 AM
Hallo zusammen.

MANY THANX TO V@NO FOR THIS GREAT MOD!

Ich bin mir jetzt nicht ganz sicher, ob der MOD überall läuft.
die Einen scheinen Probleme mit Firefox zu haben;
andere sagen, daß der Gast auch Kategorien sehen kann,
die nicht für ihn bestimmt sind.

Bei mir scheint es soweit keine Probleme zu geben obwohl ich Firefox benutze,
und die geheimem Kategorien sind in der Uploadform auch nicht für Gäste sichtbar.
k.A. was wirklich los ist. Allerdings gabs ein paar kleine Veränderungen an den Multiupload Dateien,
z. B. damit bei einem Upload automatisch die Multiuploadform erscheint...

Wärt ihr bitte so freundlich, ein paar Bilder in meine Galerie hochzuladen?
Bisher hat das noch keiner der Gäste getan, daher weiß ich nicht ob alles OK ist.

http://www.portavision.de/mediacenter/ (http://www.portavision.de/mediacenter/)

Vielen Dank
ProDez
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: wulfseidel on April 21, 2008, 10:18:53 PM
THANKS V@no for this nice MOD

Testet it with 1.7.4 & 1.7.6 works fine. :D

still it would be nice to have the possibility to name all pics at once
(ascending by numbers)




Habe diesen MOD mit 1.7.4 & 1.7.6 getestet und er funktioniert einwandfrei  :D


Trotzdem wäre es schön die Möglichkeit zu haben, alle Bilder gleichzeitig zu benennen.
(durchnummeriert)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: shadowhunter on April 26, 2008, 12:37:48 PM
Hallo!

Ich finde diesen MOD im Grunde genial. Thanks V@no.
Nur funktioniert er noch nicht vollständig
Was muss man alles machen, dass dieser einwandfrei funktioniert? Ich habe den Überblick nicht mehr!
Könnte man diesen MOD bitte fertig programmieren, sodass man ihn gut gebrauchen könnte.
Ich würde ihn nämlich sehr gerne auf meiner Seite verwenden. Es ist ein super Tool!

Noch ein Hinweis zu dem Firefox-Problem:
Der Firefox hört nur auf "<applet ....." und nicht auf "<object ...." in der "member_mupload_jupload.html"
Dies müsste man ändern, dann würde es im Firefox auch funktionieren.

Ein weiterer Hinweis:
Es ist inzwischen eine neuere, bessere Version von dem JUpload verfügbar.
Ich würde sagen, man sollte diese neue Version in diesem MOD einbauen.

Was ist mit den "planned features"? (auto resize images, auto copy original images into "big" folder (only if resized), auto backup original images into user-defined directory (with additional code this could be used later for restoration and/or reading EXIF/IPTC info) & support for watermark by SLL)
Könnte man diese nicht programmieren?
Der Original Post von V@no ist auch sehr lange nicht mehr aktualisiert worden und somit nicht mehr auf dem neusten Stand (ein durcheinander in diesem MOD).

Ich bin kein Programmierer und bin hier überfordert...
Vielen Dank...
Grüsse Jones
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: masumcis on May 03, 2008, 08:16:20 AM
SUPER MOD MAN. GOOOOOOOOOOOOOOOOOOOOD :lol: :D :P :roll: :roll:
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sunny C. on July 15, 2008, 10:28:37 PM
Hallo!

Ich finde diesen MOD im Grunde genial. Thanks V@no.
Nur funktioniert er noch nicht vollständig
Was muss man alles machen, dass dieser einwandfrei funktioniert? Ich habe den Überblick nicht mehr!
Könnte man diesen MOD bitte fertig programmieren, sodass man ihn gut gebrauchen könnte.
Ich würde ihn nämlich sehr gerne auf meiner Seite verwenden. Es ist ein super Tool!

Noch ein Hinweis zu dem Firefox-Problem:
Der Firefox hört nur auf "<applet ....." und nicht auf "<object ...." in der "member_mupload_jupload.html"
Dies müsste man ändern, dann würde es im Firefox auch funktionieren.

Ein weiterer Hinweis:
Es ist inzwischen eine neuere, bessere Version von dem JUpload verfügbar.
Ich würde sagen, man sollte diese neue Version in diesem MOD einbauen.

Was ist mit den "planned features"? (auto resize images, auto copy original images into "big" folder (only if resized), auto backup original images into user-defined directory (with additional code this could be used later for restoration and/or reading EXIF/IPTC info) & support for watermark by SLL)
Könnte man diese nicht programmieren?
Der Original Post von V@no ist auch sehr lange nicht mehr aktualisiert worden und somit nicht mehr auf dem neusten Stand (ein durcheinander in diesem MOD).

Ich bin kein Programmierer und bin hier überfordert...
Vielen Dank...
Grüsse Jones

Ich sehe das auch so! Was ich überhaupt garnicht verstehe ist das mit dem Onload.... da verkack ich völlig! Was ist gemeint, wodrauf muss ich achten?
Wenn ich die Basic Version nehme und Bilder hochladen will, kommt folgender Fehler:
Code: [Select]
Fatal error: Call to a member function get_table_fields() on a non-object in C:\xampp\htdocs\1\includes\mu_modules\basic.php on line 82
Auszug:
Code: [Select]
//load data for additional fields
  if (!empty($additional_image_fields))
  {
    $table_fields = $site_db->get_table_fields((($direct_upload) ? IMAGES_TABLE : IMAGES_TEMP_TABLE));
    foreach ($additional_image_fields as $key => $val)
    {
      if (isset($HTTP_POST_VARS[$key.$i]) && isset($table_fields[$key]))
      {
        $HTTP_POST_VARS[$key] = $HTTP_POST_VARS[$key.$i];
      }
    }
  }

//load data from searchible database fields

Die zeile 82 wäre diese:
Code: [Select]
    $table_fields = $site_db->get_table_fields((($direct_upload) ? IMAGES_TABLE : IMAGES_TEMP_TABLE));
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: pish180 on August 22, 2008, 03:24:05 PM
Is there any updates to the uploader?  I'm sorry I can not read German so please write the update in English.  Is there a way to take the latest jupload from their website and updates this existing build?

I want to be able to:
1. Set different categories for each image
2. Auto populate the "image name" field with the existing image name.

Thanks for any help
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: RatedRWHC on August 31, 2008, 06:03:10 AM
if ur jus gonna use it for urself is there really ne point in having it cant u jus upload all your pics by ftp lol
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: gums on September 05, 2008, 08:34:48 AM
Can anyone Help,

How can make the script change can let the user upload the file more than 10mb.

Now all the user only can upload 100kb-500kb photo.

Please help. Thanks  :oops: :oops:

Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on September 05, 2008, 03:04:24 PM
Change the limit in 4images settings:
Max. image size in KB
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: shadowhunter on January 18, 2009, 08:17:42 PM
Hallo!

Thanks V@no. Ich finde diesen MOD im Prinzip super.
Aber funktioniert dieser einwandfrei mit 4images 1.7.6?
Es gibt inzwischen eine neue Version des JUploades: v0.90 (http://www.jupload.biz)

Könnte man bitte diesen MOD bitte fertig programmieren, sodass alle ihn gebrauchen könnte, da es ist ein super Tool wäre!
Viele Andere und ich würden ihn nämlich sehr gerne verwenden.
Danke!

Schönen Abend
Gruss
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: meier on January 24, 2009, 11:14:48 AM
Hallo, kann man mit diesem Mod mehrere Bilder mit der Umstelltaste markieren oder muß man auch jedes einzelne Bild anklicken?

Bei 100 Bildern ist das dann etws aufwendig.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: kyzer on April 20, 2009, 04:34:40 PM
Where are the files to download?  :roll:
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Nicky on April 20, 2009, 05:51:32 PM
on the V@no's first at bottom
but here is it: http://www.4homepages.de/forum/index.php?action=dlattach;topic=12742.0;attach=714
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Farina on May 30, 2009, 02:14:13 AM
any demo web for this... multi upload means what ? are we allow to upload few photos for one post ?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sebas Bonito on June 18, 2009, 06:56:28 PM
Gibt es denn mal ne überarbeitete Version der MOD unter Einbeziehung der aktuellen JUpload 0.90?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sunny C. on June 18, 2009, 08:05:16 PM
Wäre interessant!
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sebas Bonito on June 18, 2009, 08:07:59 PM
Denn SOOO sehr stecke ich nicht in der Materie, als dass ich ein derart eigenständiges Skript in diese MOD umwandeln oder integrieren könnte. Und dennoch ist dieses "Multi-Upload"-Gedöns offenbar sehr beliebt und auch gefragt. Vielleicht nimmt sich einer von den Cracks mal die Zeit für uns niedres Pöbelvölk? Danke :)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Rantanplan1966 on July 01, 2009, 02:52:57 PM
Oh, right...I made a misstake in the last version, I set a wrong variable to "1"...
in mupload.php change number in this variable:
Code: [Select]
$config['mu_max_files'] = 1; //maximum allowed files per upload

Hi V@ano,

I have included your MOD for Multiupload and "$config['mu_max_files'] = 20;", so that users have the opportunity to upload max. 20 files
It works perfect... great MOD!

One further question I have:
Is it possible to set the standard value... which users see, if they enter the page... to 1 as default.
(With the poossibility to choose between 1 and 20 pics they want to upload)

A sample pic I've attached!

Can you tell me what I have to change therefore?

Thanks for your assistance,
Matthias (Rantanplan1966)
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sunny C. on July 02, 2009, 12:25:57 PM
Dont work with 1.7.7 !?
Dont Work: member.php?action=muploadform&mutype=jupload
But, the Basic Multipload ist working fine!

Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Rantanplan1966 on July 03, 2009, 07:05:51 PM
I'm working with the basic variant and I have found the solution!

I have changed the link parameters

Standard was:
"my domain"/member.php?action=muploadform&cat_id=128&numupload=20

I switched to:
"mydomain"/member.php?action=muploadform&cat_id=128&numupload=1

It works fine!



Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sunny C. on July 03, 2009, 07:31:44 PM
Dont work with 1.7.7 !?
Dont Work: member.php?action=muploadform&mutype=jupload
But, the Basic Multipload ist working fine!



Can you made this for 1.7.7 with the New Jupload version?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sebas Bonito on July 04, 2009, 03:59:14 PM
Can you made this for 1.7.7 with the New Jupload version?
Yes PLEASE !!!  8O
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: WWTNET on August 02, 2009, 12:58:26 PM
Hi ,

can someone modify this mod for the new version - JUpload v0.90. This way will work with Firefox also...

Also, who can tell me, why at the end of the upload, it shows me 2 times the uploaded image (in small size). What is the problem?

Thanks
A.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: crs on August 03, 2009, 04:30:34 AM
I installed this mod for my safety 3 times, but i have the following problem:

I am not able to choose more than 1 upload-formular, as you can see it on my screenshot.

Thanks for help
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: WWTNET on August 03, 2009, 07:31:55 PM
Hi,

@crs edit mupload.php search $config['mu_max_files'] = 1; and modify the number by the max. you want

A.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: crs on September 23, 2009, 03:03:15 AM
Can i use the multiupload also in the categories?
At the moment i have only the "normal upload" in the categories.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on September 23, 2009, 03:17:25 AM
What do you mean?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: MikeK on November 15, 2009, 11:26:47 AM
Is there any chance to get the full features of jupload running on new systems like Vista, Win7 with the newest java and browsers ?

The disfunction of the mass-uploader (java) should be fixed.

Thanks a lot in advance !
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: sigurd on November 25, 2009, 06:08:12 PM
Habs ausprobiert - funktioniert tadellos bei version 1.7.7

have try it on ver. 1.7.7 - and it works.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Yan on December 20, 2009, 12:00:05 AM
Dont work jupload  :(

Quote
Java Plug-in 1.6.0_11
Using JRE version 1.6.0_11 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\Admin
----------------------------------------------------
c:   clear console window
f:   finalize objects on finalization queue
g:   garbage collect
h:   display this help message
l:   dump classloader list
m:   print memory usage
o:   trigger logging
q:   hide console
r:   reload policy configuration
s:   dump system and deployment properties
t:   dump thread list
v:   dump thread stack
x:   clear classloader cache
0-5: set trace level to <n>
----------------------------------------------------


20.12.2009 0:56:00 JUpload.startup <init>
INFO: startup()
20.12.2009 0:56:00 JUpload.startup init
INFO: init()
20.12.2009 0:56:00 JUpload.startup start
INFO: start()
20.12.2009 0:56:00 JUpload.startup jsIsReady
INFO: JavaScript call: jsIsReady()
20.12.2009 0:56:00 JUpload.utilities.e <clinit>
INFO: User preferences created: C:\Documents and Settings\Admin\.jupload.properties
20.12.2009 0:56:00 JUpload.swingVersion.JUpload init
INFO: JUpload initializing
JUpload v0.88 at xxx: sitexxx: /
20.12.2009 0:56:01 JUpload.swingVersion.r <init>
INFO: Creating file system view
20.12.2009 0:56:01 JUpload.utilities.e G
INFO: Number of preselected files: 0
netscape.javascript.JSException: Unspecified error invoking method or accessing property "AddedListener"
   at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
   at JUpload.swingVersion.g.a(Unknown Source)
   at JUpload.swingVersion.JUpload.init(Unknown Source)
   at JUpload.swingVersion.JUpload.<init>(Unknown Source)
   at JUpload.startup.start(Unknown Source)
   at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
   at java.lang.Thread.run(Unknown Source)
Exception: netscape.javascript.JSException: Unspecified error invoking method or accessing property "AddedListener"
20.12.2009 0:56:33 JUpload.startup <init>
INFO: startup()
20.12.2009 0:56:33 JUpload.startup init
INFO: init()
20.12.2009 0:56:33 JUpload.startup start
INFO: start()
20.12.2009 0:56:33 JUpload.swingVersion.JUpload init
INFO: JUpload initializing
JUpload v0.88 at xxx: sitexxx: /
20.12.2009 0:56:33 JUpload.swingVersion.r <init>
INFO: Creating file system view
20.12.2009 0:56:34 JUpload.utilities.e G
INFO: Number of preselected files: 0
netscape.javascript.JSException: No registered plugin for applet ID 1
   at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
   at JUpload.swingVersion.g.a(Unknown Source)
   at JUpload.swingVersion.JUpload.init(Unknown Source)
   at JUpload.swingVersion.JUpload.<init>(Unknown Source)
   at JUpload.startup.start(Unknown Source)
   at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
   at java.lang.Thread.run(Unknown Source)
Exception: netscape.javascript.JSException: No registered plugin for applet ID 1
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: hongoctrien on December 22, 2009, 05:37:20 AM
In member.php?action=muploadform&mutype=jupload, I can't see box upload.
(http://xxx: xxx: xxx: c. uploadanhxxx: /upload/1/1009/0. 4602120_1_1. jpg)
xxx: c. uploadanhxxx: /upload/1/1009/0. 4602120_1_1. jpg
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: MikeK on December 31, 2009, 09:35:36 AM
Habs ausprobiert - funktioniert tadellos bei version 1.7.7

have try it on ver. 1.7.7 - and it works.

Aber sicher NICHT mit jupload!? Und wenn doch, wäre es nett, wenn du schreibst mit welchem Browser, welchem OS und welcher Java-Version!?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: parkstad on January 11, 2010, 09:29:38 AM
I installed it and I get the java window but after I get the error message below
--
Java Plug-in 1.6.0_15
Using JRE version 1.6.0_15-b03 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\Administrator
----------------------------------------------------
c:   clear console window
f:   finalize objects on finalization queue
g:   garbage collect
h:   display this help message
l:   dump classloader list
m:   print memory usage
o:   trigger logging
q:   hide console
r:   reload policy configuration
s:   dump system and deployment properties
t:   dump thread list
v:   dump thread stack
x:   clear classloader cache
0-5: set trace level to <n>
----------------------------------------------------


Reading certificates from 12312 xxx: xxx: mywebsite. nl/galerie/includes/mu_modules/jupload/jupload. jar | C:\Documents and Settings\Administrator\Application Data\Sun\Java\Deployment\cache\6.0\29\3873145d-2fb49e27.idx
8-jan-2010 21:47:14 JUpload.startup <init>
INFO: startup()
8-jan-2010 21:47:14 JUpload.startup init
INFO: init()
8-jan-2010 21:47:14 JUpload.startup start
INFO: start()
8-jan-2010 21:47:14 JUpload.utilities.e <clinit>
INFO: User preferences loaded: C:\Documents and Settings\Administrator\.jupload.properties
8-jan-2010 21:47:14 JUpload.startup jsIsReady
INFO: JavaScript call: jsIsReady()
8-jan-2010 21:47:14 JUpload.swingVersion.JUpload init
INFO: JUpload initializing
JUpload v0.88 at xxx: xxx: gespotin. nl/galerie/
8-jan-2010 21:47:14 JUpload.swingVersion.r <init>
INFO: Creating file system view
8-jan-2010 21:47:15 JUpload.utilities.e G
INFO: Number of preselected files: 0
netscape.javascript.JSException: Unspecified error invoking method or accessing property "AddedListener"
   at sun.plugin2.main.client.MessagePassingJSObject.newJSException(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.waitForReply(Unknown Source)
   at sun.plugin2.main.client.MessagePassingJSObject.call(Unknown Source)
   at JUpload.swingVersion.g.a(Unknown Source)
   at JUpload.swingVersion.JUpload.init(Unknown Source)
   at JUpload.swingVersion.JUpload.<init>(Unknown Source)
   at JUpload.startup.start(Unknown Source)
   at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
   at java.lang.Thread.run(Unknown Source)
Exception: netscape.javascript.JSException: Unspecified error invoking method or accessing property "AddedListener"
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: sebastian10 on January 11, 2010, 03:39:22 PM
muy bueno  :D :D

xxx: tucumancalientexxx: . ar
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: Sebas Bonito on January 15, 2010, 03:45:42 AM
Wieso gibt es immer noch kein komfortables Upload-Formular für die User?  8O

Natürlich ist es für Admins eine Leichtigkeit, per FTP die Bilder zu batchen.
Doch Websites, die den Usern freie Hand lassen, sehen verdammt alt aus.
Die bisherigen Multi-Upload-Formulare sind einfach nicht mehr zeitgemäß!
50 Fotos, aber schon ab 5 Bildern wird das ganze zu einer hakeligen und
ungemütlichen Angelegenheit für die registrierten Benutzer.

Der Ansatz dieser MOD hier ist sehr gut, doch wieso gibt es keine Möglichkeit,
dieses Skript umzuschreiben, oder ein ähnliches anzubieten... gerade wo der
Bedarf doch unglaublich groß ist (siehe nur die vielen Such-Einträge bei "Upload).
Für die aktuelle Version 1.7.7. gibt es kein komfortables Upload-Tool.

Ich finde, das ist das einzige Manko an der Galerie, aber auch das Größte,
und hoffe, dass es jemandem gelingt, etwas derartiges umzusetzen.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: jzaboo on January 19, 2010, 12:07:10 PM
Also tried to use the mod with 1.7.7. In FF I even don't see the script, in IE 8 I get the already mentioned JAVA error.
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: jaromir on February 21, 2010, 12:44:30 PM
Ich hab das Addon installiert und kann es auch aufrufen, aber wenn ich dann die Bilder in dieser Java Applikation drinhabe und auf "abschicken" klicke, steht unten links "Fehler auf der Seite". Weiß jemand woran das liegen könnte?
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: surferboy on February 28, 2010, 03:19:55 AM
Thanks for the MOD. Got it working just fine.

May I suggest the following edit on your first post:

Step 4:

The multiupload basic form is preconfigured to upload one image. To define your users' maximum upload files setting, open: includes/mupload.php

change :  $config['mu_max_files'] = z;

to: $config['mu_max_files'] = XX;
where XX is the maximum number of files a user can upload in one send.  You note this step later in the topic, on the second page but since you are striving to put all the steps and the updates in the first post, I just thought I would suggest this additional information.

-Brian
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: surferboy on April 18, 2010, 12:42:55 AM
Hey V@no,

Thanks for the reply about Simplify Image Upload. I got the MOD installed and working perfectly.

As you can see from my post on here, I have this MOD installed. Any chance to change the code so that the default file name is the image name? I know someone else asked for that in an earlier post but there was no answer.

In other words, a solution similar to what you made from the Simplify Image Upload:

Quote
if (!$image_name)
{
  $image_name = $HTTP_POST_VARS['image_name'] = get_file_name($new_name);
}
"now, image name entry is not necerry, it will use filename (without extention) if its empty."

?

Thanks so much for considering the question.

- Brian
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: V@no on April 18, 2010, 12:49:43 AM
You can do the same modifications in includes/mupload.php
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: surferboy on April 18, 2010, 01:48:35 AM
Wow! Thanks makes all the difference in the world for our members who will be trying this upload process for the first time.

Thanks so much!

- Brian
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: x23piracy on November 06, 2010, 06:42:48 AM
Hallo!....

Hi,

ich habe hier den gleichen Fehler wie Benny mit 1.7.8 beim basic upload egal ob 1 oder mehrere Bilder,
hat das jemand funktionierend hinbekommen?

Mir reicht der basic upload...


Gruß Jens


unnötiges vollzitat entfernt @Rembrandt
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: jacobmathias on June 09, 2011, 10:47:35 PM
I really wish you'd update the JAVA, so it will work in IE and Firefox, I'd love to use that function! Please look into it, thanks
Title: Re: [MOD-beta] Multi-upload PLUS v0.3b
Post by: cch on May 20, 2012, 01:00:36 PM
Hi V@no

This Mod won't let me upload multiple images on my install of 4images, I've followed all the steps.

It uploads 1 image at a time but no more than that, if I try to upload 2 images I get this error:

File number 2 "Erann DD - Greatest Hits - Back.jpg"
Error uploading image file:
Erann_DD_-_Greatest_Hits_-_Back.jpg: Invalid file type (jpg, image/jpeg)

That file type is allowed so I'm stumped.

Any ideas??

Thanks
Title: Re: [MOD-beta] Multi-upload PLUS
Post by: BlackM on March 10, 2013, 05:38:58 PM
wow !, this is exactly what I requested in this message (http://www.4homepages.de/forum/index.php?topic=12726.0).

I will try this ...

Thank you V@no.

Hello I do anything did you wrote, but nothing does.
I dont find in the Templates header your Information.

Sorry my english is not perfect, pleas can you help met  8O