TsuFiles
Moderators: Tier 3 Mods, Tier 1 Mods, Tier 2 Mods
Forum rules
Need help with something? Anything? Post here.
Need help with something? Anything? Post here.
- Starlite
- Operations Officer

- Posts: 682
- Joined: June 21st, 2007, 11:54 am
- Steam ID: FuXYoo
- PSN ID: FuXYoo
- Xbox Live ID: mobius323
TsuFiles
[18:37:24] <Starlite> Can I just offer two suggestions for TsuFiles?
[18:37:33] <Starlite> One's simple enough, the other might be a bit more complicated.
[18:37:50] <Starlite> For the file address, where it comes up with like
[18:37:56] <Starlite> C:\Documents etc etc...
[18:38:18] <Starlite> I'd say it'd be better if that text was black, so you can see it.
[18:38:57] <Starlite> And also, if there's a way to tell you what percentage of the file has uploaded, that'd be useful.
Would make uploading on TsuFiles a lot easier.
[18:37:33] <Starlite> One's simple enough, the other might be a bit more complicated.
[18:37:50] <Starlite> For the file address, where it comes up with like
[18:37:56] <Starlite> C:\Documents etc etc...
[18:38:18] <Starlite> I'd say it'd be better if that text was black, so you can see it.
[18:38:57] <Starlite> And also, if there's a way to tell you what percentage of the file has uploaded, that'd be useful.
Would make uploading on TsuFiles a lot easier.
- Starlite
- Operations Officer

- Posts: 682
- Joined: June 21st, 2007, 11:54 am
- Steam ID: FuXYoo
- PSN ID: FuXYoo
- Xbox Live ID: mobius323
Re: TsuFiles
Then I hope he reads this thread. 
Re: TsuFiles
Best way to get his attention is to pm him so he gets an email
Knowledge is more valuable than currency.
Re: TsuFiles
I'm sure he'll see this topic.
Two other things I'd like to point out for Dan:
Two other things I'd like to point out for Dan:
- I don't see a "Maximum file size" on the upload form. Read it from php.ini
- We need a back end administration completed for this. I got a lot of people offering to upload files, but without being able to manage the structure or assign permissions to staff members - its mostly useless to the public.
- danpaul88
- Bronze Member

- Posts: 1292
- Joined: November 13th, 2007, 7:34 am
- Location: Northampton, England
Re: TsuFiles
Why is it useless? All registered users can upload files, no need to give permissions to people...
As for an upload %... not possible without redoing the entire upload system in flash or something, TsuFiles simply uses HTTP file uploading which just copies the file to the web server and THEN submits the form.
As for an upload %... not possible without redoing the entire upload system in flash or something, TsuFiles simply uses HTTP file uploading which just copies the file to the web server and THEN submits the form.
- Starlite
- Operations Officer

- Posts: 682
- Joined: June 21st, 2007, 11:54 am
- Steam ID: FuXYoo
- PSN ID: FuXYoo
- Xbox Live ID: mobius323
Re: TsuFiles
Well, I tried to upload a video today, the page for the file went empty so I assumed that the file had uploaded.
Then went to look for the video, and it wasn't on TsuFiles. :S
Then went to look for the video, and it wasn't on TsuFiles. :S
- danpaul88
- Bronze Member

- Posts: 1292
- Joined: November 13th, 2007, 7:34 am
- Location: Northampton, England
Re: TsuFiles
Empty page would mean it's not loaded properly. If the upload was successful it would tell you so.
- Starlite
- Operations Officer

- Posts: 682
- Joined: June 21st, 2007, 11:54 am
- Steam ID: FuXYoo
- PSN ID: FuXYoo
- Xbox Live ID: mobius323
Re: TsuFiles
Okay, well I ended up uploading it onto YouTube anyway, so... 
Re: TsuFiles
Can they create new folders or manage the structure? We created the basics, but there are a LOT of things that aren't built into the structure so people would have to upload to the next best thing which will end up being a huge administrative headache for us. Plus what if there is a file that is uploaded that needs to be removed?danpaul88 wrote:Why is it useless? All registered users can upload files, no need to give permissions to people...
I've heard this same thing from a lot of people, actually...Stitch wrote:Well, I tried to upload a video today, the page for the file went empty so I assumed that the file had uploaded.
Then went to look for the video, and it wasn't on TsuFiles. :S
Perhaps we can do it with PHP: (1) "Starting upload", (2) "Upload in progress", (3) "Upload complete/failed!". Something as simple as that would address this issue and I know for a fact it can be done.danpaul88 wrote: As for an upload %... not possible without redoing the entire upload system in flash or something, TsuFiles simply uses HTTP file uploading which just copies the file to the web server and THEN submits the form.
- danpaul88
- Bronze Member

- Posts: 1292
- Joined: November 13th, 2007, 7:34 am
- Location: Northampton, England
Re: TsuFiles
It already does that pretty much... you just can't show a % done, as PHP does not have callbacks or anything for that sort of thing.
EDIT;
As for blank pages when uploading - this would happen if the connection was interrupted during the upload, if its happening a lot it suggests the web server has some connectivity problems... as I said before it's a basic HTTP upload with no fancy stuff...
EDIT;
As for blank pages when uploading - this would happen if the connection was interrupted during the upload, if its happening a lot it suggests the web server has some connectivity problems... as I said before it's a basic HTTP upload with no fancy stuff...
Re: TsuFiles
I don't think the issue with that is a server issue or problem with the code ... I think its user-error. But that doesn't mean we can't make it more user-friendly.
A simple...
'Upload Started' when you hit submit.
'Upload in progress' until the file is verified.
'Upload Completed!' when the file is verified to be uploaded successfully.
We can certainly script something like that?
A simple...
'Upload Started' when you hit submit.
'Upload in progress' until the file is verified.
'Upload Completed!' when the file is verified to be uploaded successfully.
We can certainly script something like that?
- danpaul88
- Bronze Member

- Posts: 1292
- Joined: November 13th, 2007, 7:34 am
- Location: Northampton, England
Re: TsuFiles
We could if http uploads supported loading a page between submitting the form and being 100% done, which they don't....


