Gossamer Forum
Home : Products : Links 2.0 : Customization :

NEW - Upload Mod

Quote Reply
NEW - Upload Mod
I decided to start a new thread to make it easy to find.

I've made an upload mod. You will need to add an extra field in your database to store the file name and make a few tweaks to the templates, add.cgi and links.cfg but apart from that it is easy to install Cool

I just have to test it a bit and then I'll post instructions/code asap
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
btw, it supports unlimited uploads.
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
thank you thank you thank you very much ....

.. can't wait

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
The File Upload Mod is finished and you can download it here:

http://www.wiredon.net/gt/download.shtml

Please let me know if you find any problems. (There may be bugs Angelic)


Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Hi!

ready for additional questions Smile
1. I'm using password mod. does this mod affects in any way this upload mod or reverse.
2. Tag <%File%> can be used in templates?
3. Will be file deleted with resource?
4. How to allow only i.e. 60x60 pxl pics

I hope this is not too much what i'm asking Unsure

thanx in advance

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
1. I'm using password mod. does this mod affects in any way this upload mod or reverse.

I've never used the password mod. But it shouldn't matter.

2. Tag <%File%> can be used in templates?

Yes.

3. Will be file deleted with resource?

How are you deleting them?

4. How to allow only i.e. 60x60 pxl pics

You'd need Image::Size for that. I can supply the code if you have that module.
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
To get the image to delete when you delete a record from admin would require modifications to db.pl
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Hi!

Image:Size would be great since i would use it so link owners can supply pics of their hot air balloons at http://www.balonarstvo.com/imenik/

what modifications would be nedeed for deleting a link via admin and also a image with this link.

thanx in advance

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
Right well firstly you'll need to install Image::Size if you don't have it.

shell> perl -MCPAN -e 'install Image::Size'

Then in add/modify.cgi in sub parse_me_and_upload under

$file_name = $rand . $file_name; # Prevent files being overwritten by giving them a random prefix

...add........

($x, $y) = imgsize("$upload_path/$file_name");

($x > $size_x) or ($y > $size_y) and &cgierr("Image dimensions are $x x $y. Max allowed in $size_x x $size_y");


Then in links.cfg add $size_x and $size_y with the size you want. eg....

$size_x = 50;
$size_y = 50;

...oh an remember to add

use Image::Size;

to the top of both scripts.

I'm not sure whether to add this to the default copy for everyone :( ...not everyone has Image::Size

Last edited by:

PaulW: Nov 28, 2001, 8:23 AM
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Right well firstly you'll need to install Image::Size if you don't have it.

shell> perl -MCPAN -e 'install Image::Size'

...hmm this one looks strange to me ... "shell" where do i have to install this ...

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
That means you have to do it from telnet or ssh

You need root access which you don't have.

Hmmm may need to contact your host to ask if they'll install it and/or if they have it installed already.
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
yep .. because i don't have access to telnet ... i'll contact them

thenx

Gregor
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Hi!

just droped in to say i'm doing very good with this mod. Now i'm going to try Image:Size ...

can u please explain what modification should i made in db_utils so image gets deleted when link is delted. I think that Eliot has posted this a long time ago .. but in this crowd and mess of articles regarding upload i cannot find it ..

thanx

Gregor
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Hi!

with this definition in links.def

Code:
File => [17, 'alpha', 1, 50, 0, '', '^[^\.]+\.(gif|GIF|jpg|JPG)$']

add.cgi still wants File i mean i get error

File (Invalid format)

??

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
That will only accept gif/GIF/jpg/JPG
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
yes but it is marked as not necessary .. i mean that users can left it blank .. with no file ...

Gregor
Quote Reply
Re: [sc2utp] NEW - Upload Mod In reply to
Hmm thats weird.

Could you try removing the regex to see if that helps.

Im not sure what that will do though as I have a copy working with that regex without problems.
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
i did some mistakes with language mod when modifying files for upload mod, so i reset everything .. i'm starting upload mod from the beginning ...

i'll post any problems here ... hope there wont be any Wink

Gregor
Quote Reply
Re: [PaulW] NEW - Upload Mod In reply to
Hi, I've got an interesting problem!

Set up for 5 (image) File uploads called from modify.html only. If all 5 upload fields are complete images load ok. If all are left blank we get the error notice 'File1 (Invalid format)', five times. If some of the upload fields are complete the empty fields auto fill with expanded file names based on the last file entered (the rand time # is added to the last filename, in an expanding format)! And 0kb files are created in the upload directory. You can see txt versions of my modify.cgi, modify.html and links.def by clicking these links. You can also check out the problem at http://www.antique-seekers.co.uk, use Account Key: 9 and Password: test to try and modify a listing. The sites under construction!

Also think there will be another problem when returning to modify because the upload fields will show empty and the user won't know the original file names!

Hope you can give me some pointers to solving probs - thanks

Gra
Quote Reply
Re: [seeker] NEW - Upload Mod In reply to
Hi, done some slight tweaks to 'sub parse_me_and_upload ' code in modify.cgi, all seems fine! Apart from when returning to modify, as expected if file upload fields are left empty previous files are cleared from the links.db. Any one got any ideas how to side-step this?

Here's the modified parse:

sub parse_me_and_upload {

use CGI qw(:standard);

my (%in);
my ($fnum,$file_field,$file_name,$ext,$bytes_count,$size,$buff);
my ($num)=1;
my ($IN) = new CGI;

# create a hash for all input - name => value
for ($IN->param) { $in{$_} = $IN->param($_) }
# loop through the input
for (keys %in) {
# if the field name matches File(DIGIT) create an array of file fields
if (/^(File\d*)$/i) {
# establish and number associative files in array
$fnum = $num++;
$file_field = $1;
$in{$file_field} =~ /([^\/\\]+)$/ and $file_name = $1;
# check for new file to upload
if (length($in{$file_field}) < 1 ) {
$file_field = $in{file_name};
}else{
# split the file name and get the file type extension
@divprts=split(/\./,$file_name);
$prts=@divprts; $prts--;
$ext=lc($divprts[$prts]);
# create new filename based on client id and file number, enables client to overwrite existing file!
$file_name = "$in{'ID'}_$fnum.$ext";
open U, ">$upload_path/$file_name" or &cgierr("Can't open $upload_path/$file_name : $!");
binmode U; # needed for Windows servers
while ($bytes_count = read($in{$file_field},$buff,2096)) {
$size += $bytes_count;
print U $buff;
} close U;
$in{$file_field} = $file_name;
# create an array of upload fields so we can unlink if there's a booboo
push @uploads, $in{$file_field}
}
}
}
# return the %in hash as normal
return %in

}

Gra
Quote Reply
Re: [seeker] NEW - Upload Mod In reply to
Hi, can't get past the modify.cgi clearing the previous image uploads when re-modifying the fields! So I'm going to flag a warning message by each File# field if an image has previously been uploaded using:-

<%if File#%>WARNING image <%File#%> will be removed<%endif%>

in modify.html. Means the client will have to upload again or replace that particular image. But other than that the client user experience will be pretty clean having only one form to update.

Many thanks to PaulW for the UploadMod, will create a credits page on the site(s) with acknowledgement and link to wiredon.

Ta Mate


Gra
Quote Reply
Re: NEW - Upload Mod In reply to
Does this mod make links 2.0 more vulnerable to hackers? Or does it not change it at all?

I'm just wondering because lots of big download sites (eg. www.download.com) don't use an upload thing like this.

It seems like a great mod but I am just concerned with the amount of hacking going on lately.

Thanks,

Andrew
Quote Reply
Re: [Tramstones] NEW - Upload Mod In reply to
Hi Andrew - I believe allowing any form of file upload will always be open to abuse by the scurrilous types. This mods author (and thread initiator) has reduced the risk by limiting the file types that can be uploaded within the field definitions in links.def (i.e. '^[^\.]+\.(gif|GIF|jpg|JPG)$'],). As an extra precaution I only allow file upload from the modify form and not from the initial add form. This allows some choice and limited control over who can upload files, plus you have a good idea of the submitters id. Hope this is helpful, have a good 2002..
Gra
Quote Reply
Re: [seeker] NEW - Upload Mod In reply to
Thankyou for your reply.

It will probably be a bit risky for me to have this mod on my site because it's based on all types of files (*.zip, *.exe etc.).

Still I congatulate the author on a great mod.

Andrew
Quote Reply
Re: [RedRum] NEW - Upload Mod In reply to
Paul - THANKS!

I have everything installed and the templates have been mod'd, BUT there is a slight problem. When I click "Add Resource" I get an error:

Unkown Tag: Title



Those three words are all it says on the page.

http://www.carsonscorner.com/cgi-bin/links/add.cgi
Quote Reply
Re: [shiner] NEW - Upload Mod In reply to
Can you add a test category to make sure that isnt the problem.
Quote Reply
Re: [RedRum] NEW - Upload Mod In reply to
Paul,
There is a category called Pictures already in place, but I added a category called test if that is what you need.

http://www.carsonscorner.com/pages/index.html

Thanks,

Chris
Quote Reply
Re: [shiner] NEW - Upload Mod In reply to
When I go to the add page I get:

Category: error building select field: no select fields specified in config for field 'Category'
Quote Reply
Re: [RedRum] NEW - Upload Mod In reply to
The way that page is written (pages/index.html), it is looking to grab the current category - there is no "if statement" that would void that out. If you go to one of the category pages like:

http://www.carsonscorner.com/pages/Pictures/

You can try to add a resource and get the

"Unknown tag: Title" error.

If you know how I can change the password on fileman - I can give you access to that if it would help.

Thanks,

Chris
Quote Reply
Re: [RedRum] NEW - Upload Mod In reply to
Its a greats Mod, just what i been looking for. One slight problem though.

This only works for the users add.cgi and modify forms. How do I add the propper field to the administrators add/modify forms.

Im sure is something as simple as adding the new row and form extension to the forms but where in the script are these forms kept.

Also is there a way so that the file gets renamed to what ever the link ID is such as 1.gif or 3.gif etc...
Quote Reply
Re: [Ibis Fernandez] NEW - Upload Mod In reply to
Changing the admin page isn't easy. It requires lots of changes to db.pl

It would be better to just name the file manually and upload it using ftp to your images directory and just enter the file name in the admin form.

As for the second question, you can't really name by id as if someone uploads more than one images it will mess up.
Quote Reply
Re: [Paul] NEW - Upload Mod In reply to
Could someone point me to where this mod is available? I couldn't find it at http://www.wiredon.net/gossamer/mods.shtml

Thanks
Quote Reply
Re: [jelevin] NEW - Upload Mod In reply to
They are back now :)
Post deleted by jelevin In reply to
Quote Reply
Re: [Paul] NEW - Upload Mod In reply to
excuse me. i saw some one ask the question before, but can you tell me how to name the file name [eg: xx. jpg] as the $ID name?



beause we can add one more field at add.html , something like a drop down meun.

[logo]

[cover]

[default]

then it will able to rename it as..

$ID+logo.jpg or $ID+cover.jpg ... etc



I am looking forward your reply .. Thx
Quote Reply
Re: [speedmax] NEW - Upload Mod In reply to
Problems!

I'm getting the following error when using Add.cgi with the script installed:

CGI ERROR
==========================================
Error Message : Can't open /103046876620028215096163765775228.jpg : Permission denied
Script Location : add.cgi
Perl Version : 5.006001


I've set the directory to 777 and the images upload directory to 777 too. Am I missing something?

my Links.def has:

FilePic1 => [32, 'alpha', 1, 50, 0, '', '^[^\.]+\.(gif|GIF|jpg|JPG)$'],
FilePic2 => [33, 'alpha', 1, 50, 0, '', '^[^\.]+\.(gif|GIF|jpg|JPG)$'],
FilePic3 => [34, 'alpha', 1, 50, 0, '', '^[^\.]+\.(gif|GIF|jpg|JPG)$'],
FilePic4 => [35, 'alpha', 1, 50, 0, '', '^[^\.]+\.(gif|GIF|jpg|JPG)$'],

And I've set $db_file = 32; in the important fields section
Quote Reply
Re: [boom] NEW - Upload Mod In reply to
Fixed this problem - but still getting a Invalid Format error if the user decides not to enter any images when adding a record.
Quote Reply
Re: [boom] NEW - Upload Mod In reply to
Try changing the regex to:

^(?:|[^\.]+\.(?:gif|GIF|jpg|JPG))$

Last edited by:

Paul: Aug 28, 2002, 8:37 AM
Quote Reply
Re: [Paul] NEW - Upload Mod In reply to
File1 => [32, 'alpha', 1, 50, 0, '', '^(?:|[^\.]+\.(?:gif|GIF|jpg|JPG))$'],
File2 => [33, 'alpha', 1, 50, 0, '', '^(?:|[^\.]+\.(?:gif|GIF|jpg|JPG))$'],
File3 => [34, 'alpha', 1, 50, 0, '', '^(?:|[^\.]+\.(?:gif|GIF|jpg|JPG))$'],
File4 => [35, 'alpha', 1, 50, 0, '', '^(?:|[^\.]+\.(?:gif|GIF|jpg|JPG))$'],

Thanks for replying Paul. I tried that (as above) but the error
  • File1 (Invalid format)
  • File2 (Invalid format)
  • File3 (Invalid format)
  • File4 (Invalid format)

    Is still coming up when the user doesn't put upload any images....

  • Last edited by:

    boom: Aug 28, 2002, 4:42 PM
    Quote Reply
    Re: [boom] NEW - Upload Mod In reply to
    Hmmm that should have worked, oh well, how about:

    ^\s*|[^\.]+\.(?:gif|GIF|jpg|JPG)$
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    That works! Thank you... I will keep on testing it to see if it's cool, but so far it's doing it right now!
    Quote Reply
    Re: [seeker] NEW - Upload Mod In reply to
    I believe that I've come up with a solution to the problem seeker has here. The core of the problem is that the standard html upload field object absolutely CANNOT accept a default value. So if you do the following:

    <input name="File3" type="FILE" id="File3" value="image.jpg">

    image.jpg will not upload when you submit the form. This means you cannot populate the form with the previosly uploaded resource as follows:

    <input name="File3" type="FILE" id="File3" value="<%File3%>">

    When you view the source of the form you will see the value of <%File3%> in the form element but it will be removed upon submission of the form.

    Similarly it is IMPOSSIBLE to populate the form by cutting and pasting or any sort of Javascript.

    So there's the problem. If you want the user to be able to preserve the previosly uploaded photo upon modification you must ask him/her to upload it again. This is a pretty clunky UI to say the least.

    I have have 5 file upload fields like seeker and I’m using Paul’s upload mod as well as his password modify mod. I’m pretty sure the things I did will work with upload mod alone.


    So basically the way to fix it is to have a hidden form field that passes back and forth the name of any previously uploaded file. By using this, as well as being able to test
    if the form field has a new upload in it we can keep the old file, delete the old file and or add the new file.

    Here what you need to do:

    For each upload field of your modify (modify.html – I’m using templates) page put in a hidden that contains the value of File(x) as follows:

    # first, if the user has previously uploaded an image, show it to them:

    <%if File1%>
    <img src="<%upload_url%>/<%File1%>"><br><br>
    <%endif%>
    # here’s the upload form field
    <input name="File1" type="FILE" value="">
    # Here’s the hidden field that holds the file name of the previously uploaded file.
    # Note: If no file has previously been uploaded the value field will be empty.
    <input type="hidden" name="File1Transfer" value="<%File1%>">

    # Do this for each file upload making sure
    # that File(x) and File(x)Transfer have the same number for x.

    # Next, in modify.cgi replace Paul’s sub parse_me_and_upload with the following.
    # Be sure to back up the original sub parse_me_and_upload in
    # case this one doesn’t work.

    sub parse_me_and_upload {

    use CGI qw(:standard);

    my (%in);
    my ($fnum,$file_field,$file_name,$ext,$bytes_count,$size,$buff);
    my ($num)=1;
    my ($IN) = new CGI;

    # create a hash for all input - name => value
    for ($IN->param) { $in{$_} = $IN->param($_) }

    # loop through the input
    for (keys %in) {

    # if the field name matches File(DIGIT) this is a file upload field...
    if (/^(File\d*)$/i) {

    # establish and number associative files in array
    # $in{$file_field} = name of file being uploaded from form.
    # $1 = Form element name ie. File1

    # Increment the form element counter
    $fnum = $num++;
    # do some stuff that I've yet to understand.
    $file_field = $1;
    $in{$file_field} =~ /([^\/\\]+)$/ and $file_name = $1;


    # If the File(X) field is empty

    if (length($in{$file_field}) < 1 ) {

    # just to copy the value of File(X)Transfer
    # into $in{$file_field}. This will either be an empty string or
    # the previously uploaded filename.

    $in{$file_field} = "$in{'File' . $fnum . 'Transfer'}";

    # Other wise the File(x) form upload element has something in it.

    }else{

    # So first remove any previously uploaded files in that file(x) position
    if (length($in{'File' . $fnum . 'Transfer'}) > 1) {
    unlink "$upload_path/$in{'File' . $fnum . 'Transfer'}";
    }

    # Now let's go ahead and upload that new file

    $rand = sprintf "%05d", rand 1_000_000;
    $file_name = $rand . $file_name; # Prevent files being overwritten by giving them a random prefix

    open U, ">$upload_path/$file_name" or &cgierr("Can't open $upload_path/$file_name : $!");
    binmode U; # needed for Windows servers

    while ($bytes_count = read($in{$file_field},$buff,2096)) {
    $size += $bytes_count;
    print U $buff;
    }
    close U;
    $in{$file_field} = $file_name;

    # create an array of upload fields so we can unlink if there's a booboo
    push @uploads, $in{$file_field}
    }
    }
    }
    # return the %in hash as normal
    return %in

    }


    # Also, in sub process_form change the following

    # First make sure the link isn't already in there.
    open (MOD, "<$db_modified_name") or &cgierr ("error opening modified database: $db_modified_name. Reason: $!");
    while (<MOD>) {
    chomp;
    @values = split /\|/;
    if ($values[0] eq $in{$db_key}) {
    close MOD;
    &site_html_modify_failure("A request to modify this record has already been received. Please try again later.");

    # remove any new uploads.
    unlink "$upload_path/$_" foreach @uploads; # <--- New Line Here...

    return;
    }
    }
    close MOD;



    Well, I think that's it. This all worked for me. Hopefully it works for you too.

    ps. if anyone can tell me how to limit the size of a file upload that would be fantastic!

    Last edited by:

    Swaylock: Oct 8, 2002, 4:28 PM
    Quote Reply
    Re: [shiner] NEW - Upload Mod In reply to
    I am having the same problem

    http://www.drpic.com/links/

    Unkown Tag: Title

    or when modifying:

    Unkown Tag: Current URL
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    Unkown Tag: upload_path



    The title is working now, I added 4 fields for 4 images

    I added 4 delimiters via your update.cgi file

    any ideas?

    http://www.drpic.com/links
    Quote Reply
    Re: [jebridge] NEW - Upload Mod In reply to
    I found my problem.

    it was in the html:

    I had set the url to <%upload_path%>

    which is the absolute path.

    i replaced this with www.mysites.com/upload/path/<%File%>

    works fine now.

    Great Mod! Thanks!
    Quote Reply
    Re: [jebridge] NEW - Upload Mod In reply to
    Quote:
    ps. if anyone can tell me how to limit the size of a file upload that would be fantastic!
    Did anyone figure this out?

    thanks
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    Paul,

    I am trying this mod. All works well and I have changed the regex per your last post. However, there is one problem - when the user does not upload any file, it still writes numbers like "1032039745" in the upload directory. Since I am linking to the image directly in the detailed page, if nothing is loaded a broken link shows up because of those numbers.

    Any idea how to fix this problem?

    Also:

    1. Is there a way to limit the size of the upload?
    2. Is there a way to delete the image(s) from the upload when admin deletes a correponding link?

    Other than those minor issues, this is a nice mod.

    thanks

    Also, thanks to swaylock - your idea is working well.

    Last edited by:

    socrates: Nov 23, 2002, 4:27 PM
    Quote Reply
    Re: [socrates] NEW - Upload Mod In reply to
    Quote:
    when the user does not upload any file, it still writes numbers like "1032039745" in the upload directory.

    Is anyone else having this problem and is there a solution?

    thanks
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    Hi Paul

    Is this mod still available? I tried to use the link above, but I got an error stating that wiredon could not be found Frown

    Many thanks Smile

    ------------------------------------------
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    Hi Paul,

    Firstly, thanks for making your upload mod available, which I am personally interested in using. Unfortunately, it appears as if the link isn't working: http://www.wiredon.net/gt/download.shtml , please can you confirm this.


    Thanks
    Hamsterpants
    Quote Reply
    Re: [Hamsterpants] NEW - Upload Mod In reply to
    His whole site is offline at the moment Unsure

    Andy (mod)
    andy@ultranerds.co.uk
    Want to give me something back for my help? Please see my Amazon Wish List
    GLinks ULTRA Package | GLinks ULTRA Package PRO
    Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
    Quote Reply
    Re: [Andy] NEW - Upload Mod In reply to
    Thanks for the update Andy. Do you know of anyone else that could provide the script for this mod or an alternative?
    Quote Reply
    Re: [Hamsterpants] NEW - Upload Mod In reply to
    Unfortunalty not. MAybe Paul will see this thread, and upload it for you Smile

    Cheers

    Andy (mod)
    andy@ultranerds.co.uk
    Want to give me something back for my help? Please see my Amazon Wish List
    GLinks ULTRA Package | GLinks ULTRA Package PRO
    Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
    Quote Reply
    Re: [Hamsterpants] NEW - Upload Mod In reply to
    This seems to be a popular mod, so could I please request that if anyone has a copy, that they post it or if they like they could mail it to me and I could post it:

    dill@hamsterpants.com

    Thanks
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    Dear members expecialy paul..

    I already download this mod bout 5 month ago..and now i try to install it and it work fine..but there is somthing error uploaded file is not in the directory...for you info my image directory is out form links folder so i think this is not a metter right?i also chmod folder 777 and this mod is the right is it?the upload path is corrcet for me i think..the problem is the pic isnt been save to my image directory..and one more thing we sepose to be can use this tag if submision success or add_success.html page tagg call <%upload_path%> this is also wont work it will say unknown upload path..so i hope anyone can help me..there is bout 3-4 days i try to fix this thing and keep browsing at this board...please
    Quote Reply
    Re: [Hamsterpants] NEW - Upload Mod In reply to
    In Reply To:
    This seems to be a popular mod, so could I please request that if anyone has a copy, that they post it or if they like they could mail it to me and I could post it:

    dill@hamsterpants.com

    Thanks


    Hi, if you gots this script from someone, PLZ could you send it to me too

    thanks

    Ahmad
    Quote Reply
    Re: [flashlancer] NEW - Upload Mod In reply to
    This sounds like a great mod, if any one has it please post it or send me copy PLEASE! PLEASE! PLEASE! snookie@flashfilmmaker.com

    Last edited by:

    snookie: May 3, 2003, 7:18 PM
    Quote Reply
    Re: [snookie] NEW - Upload Mod In reply to
        

    Give this a shot!
    http://www.gossamer-threads.com/...orum.cgi?post=237405


    chuck
    Crazy

    Last edited by:

    Dingle_B: May 31, 2003, 6:52 AM
    Quote Reply
    Re: [Paul] NEW - Upload Mod In reply to
    hello..
    i Know this section is old...by i try to find some help..

    why the file that has been upload seem to be damage...expecially zip file..

    anyone can help?
    Quote Reply
    Re: [gempaq] NEW - Upload Mod In reply to
    Why do you think it is damaged? Try this one...


    Leonard
    aka PerlFlunkie
    Quote Reply
    Re: [PerlFlunkie] NEW - Upload Mod In reply to
    ok..

    thanx perfunkie for your help...actualy i need multi upload file...i know the file is damage because i cant extract zip file.
    Quote Reply
    Re: [gempaq] NEW - Upload Mod In reply to
    i as well am looking for the multi file upload mod.... i've tried installing the upload_for_links mod that was uploaded here and it's not working Frown i know ppl have gotten this mod to work.... i just wish there was a good set of install notes for it.... if anyone can help it'd be greatly appriciated Wink

    Thanks in advance.....

    Eric