SibSoft Ltd.
Development Services
software products
 RegisterRegister    SearchSearch   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
EZYWebhost - Cheap XUpload & XFileSharing 100% campatible hosting

AJAX upload progress bar

File sharing script
Feature Request
Goto page 1, 2, 3  Next
 
Post new topic   Reply to topic    SibSoft Ltd Forum Index -> XUpload
View previous topic :: View next topic  
Author Message
PilgrimX182



Joined: 22 Mar 2006
Posts: 1107
Location: Undisclosed location

PostPosted: Sep 20, 2006 6:55 am    Post subject: Feature Request Reply with quote

In this thread feel free to suggest any features you think will be usefull in XUpload script.
Back to top
View user's profile Send private message Visit poster's website AIM Address
Butch



Joined: 14 Sep 2006
Posts: 29
Location: USA

PostPosted: Sep 22, 2006 4:15 am    Post subject: ISP Provider & Required Valid email address Reply with quote

I'm surprised that Xupload Pro does not provide the function for required email address, this may be because this function can be done using standard html and javascript.

For security and tacking information it would be nice if Xupload Pro would provide ISP provider. Also, possibly prohibit certain IP addresses as well.

--------------
PilgrimX182: Thanks, will implement "IP prohibit" feature in next version of XUpload.
And email address is used for sending Upload results letter in Demo version on our site only. In pruduction version it's optional extra field that makes no sense to XUpload and sending in POST request. We will remove it in next release from template.
Back to top
View user's profile Send private message Visit poster's website
Butch



Joined: 14 Sep 2006
Posts: 29
Location: USA

PostPosted: Sep 26, 2006 3:26 am    Post subject: Email Reply with quote

Tell me if I'm wrong, but it appears that your statement has been edited. If I remeber correctly a couple of days ago your text stated the next version of Xupload would include a function for required email.

I feel this is a very important function since I'm using Xupload pro to receive files too large for people to send by email, and for customers to upload files for printing. I need to know the files each customer has uploaded. I know they are some work arounds for this information, however having the option for required validated email address would serve best.

An option for email confirmation of files uploaded by the customer (person uploading files) would also be nice.
Back to top
View user's profile Send private message Visit poster's website
watcha



Joined: 08 Oct 2006
Posts: 12

PostPosted: Oct 10, 2006 11:46 am    Post subject: Reply with quote

Uploading file should require the user to Type in a code from an image.
This would avoide that the script can be missued by hackers / automated scripts.

Example:
The user selects a file to upload and needs to type in a alphanumeric code, which will be presented to the user as an image. Than he should be able to upload.
This feature should be available as an option to switch on and off.
Back to top
View user's profile Send private message
Usagi



Joined: 28 Aug 2006
Posts: 5

PostPosted: Nov 01, 2006 8:44 am    Post subject: Upload Resume Reply with quote

After having a user attempt to upload a 79 meg many times, all unsuccessfully, a resume would be an excellent help.

The best my user was able to do was 50 meg of the 79 meg

Usagi
Back to top
View user's profile Send private message
PilgrimX182



Joined: 22 Mar 2006
Posts: 1107
Location: Undisclosed location

PostPosted: Nov 01, 2006 10:26 am    Post subject: Reply with quote

It's not possible with standard HTML forms I think. Cause browser sending whole data anyway.
Back to top
View user's profile Send private message Visit poster's website AIM Address
hanji



Joined: 10 Nov 2006
Posts: 36

PostPosted: Nov 15, 2006 4:57 pm    Post subject: Reply with quote

I have a small feature request.. just cosmetic.

Would it be possible to change the 'Error Messaging' in progress bar to use the configured 'style'? For example, I'm using hitech, but all error message (File size too large, etc) are using the simple.html. I can't confirm that it's using that style, but it looks like it.

Thanks!
hanji
Back to top
View user's profile Send private message Visit poster's website
Guest



Joined: 30 Jan 2007
Posts: 18

PostPosted: Feb 01, 2007 2:15 pm    Post subject: Reply with quote

I think an extra option to select files_mode allowed / not allowed would be a nice extra!

Now I have to add all the files that ARE allowed zip|rar|exe| ect ect..
With the extra "files_mode" you could make a selection what option to use... IE: files allowed or files not allowed
Back to top
View user's profile Send private message
gonefishing



Joined: 07 Feb 2007
Posts: 4

PostPosted: Feb 07, 2007 5:52 am    Post subject: Reply with quote

One feature I would like to see is the ability to configure minimum and maximum upload size on a per file basis as opposed to total upload size.
Back to top
View user's profile Send private message
PilgrimX182



Joined: 22 Mar 2006
Posts: 1107
Location: Undisclosed location

PostPosted: Feb 07, 2007 12:25 pm    Post subject: Reply with quote

Guest, gonefishing, good features, will implement in next version. Thanks!
Back to top
View user's profile Send private message Visit poster's website AIM Address
zempa



Joined: 21 Feb 2007
Posts: 5

PostPosted: Feb 21, 2007 5:43 pm    Post subject: Reply with quote

hello PilgrimX182,

Well, it's not really a suggestion.

Using xupload on windows(localhost), there is a little problem.
When i try to upload a big file (test with a 180 kb file), i always receive an error message "upload failed" while the file has been upload correctly.

Then reading the upload_status.cgi file, i see that the error comes from the timeout (15 seconds by default). This timeout was not due to an upload error but to the time for windows to move the uploaded file to the upload_dir directory.

So, i try to solve this problem by adding this test (in bold):

Code:
if($curr_time-$modif_time>15 ) #  15 seconds without filesize modification means upload failure
   {   
         [b]if ($size < $totalKB){[/b]
          print"<Script>Message('Upload failed!curr_time');</Script>";
           exit;
      [b]}[/b]
   }


Then, if the timeout comes, the current size of the uploaded file should be smaller than the total size to prompt the error message. There would be an error unless the timeout would come from moving the uploaded file

I don't know if it is a good idea.
What's your opinion?
Back to top
View user's profile Send private message
PilgrimX182



Joined: 22 Mar 2006
Posts: 1107
Location: Undisclosed location

PostPosted: Feb 22, 2007 6:22 am    Post subject: Reply with quote

This won't work cause total upload size contain size of POST headers too, filesize always less than total upload size.
But I've solved this long-copy problem in Pro version anyway, will include this fix to next Free version.
Thanks for suggestion.
Back to top
View user's profile Send private message Visit poster's website AIM Address
zempa



Joined: 21 Feb 2007
Posts: 5

PostPosted: Feb 22, 2007 9:12 am    Post subject: Reply with quote

Well, i made tests and it seems to work.
Anyway, i 'll wait for the next version Smile
Back to top
View user's profile Send private message
nodak



Joined: 13 Apr 2007
Posts: 14
Location: Fargo, ND

PostPosted: Apr 19, 2007 6:03 pm    Post subject: Reply with quote

I'd like to see an option to make descriptions a REQUIRED option on uploads. Also to be able to limit the length of the description field.

I can probably hack this in myself, but I'm better at PHP than Perl. Wink
Back to top
View user's profile Send private message Visit poster's website
PilgrimX182



Joined: 22 Mar 2006
Posts: 1107
Location: Undisclosed location

PostPosted: Apr 20, 2007 6:45 am    Post subject: Reply with quote

These are good ones, agree. Will implement now.
Back to top
View user's profile Send private message Visit poster's website AIM Address
Display posts from previous:   
Post new topic   Reply to topic    SibSoft Ltd Forum Index -> XUpload All times are GMT
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group