Ok i found a bug in the scipt if the uploader upload file with name like "i hate u.rar" (a filename with spaces)
it all works ok exept when he is clicking the download button he will download a file named "i" instead of "i hate u.rar"
thats has to do with file naming and spaces i dont know cgi and i dont wanna kill the script lol
so are you thinking for some new features in the script? ill realy like to se some
1st. Dowload delay 10 secs countdown for example... (configured in config file)
2nd. if possible Vip users with paypal subscriptions who have some more priviliges uploading or download speeds or somthing like that...
just some suggestions for u to consider
XFileSharing Free - A bug + New Features? :)
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
Bug: yea, sorry about this, it was discovered recently. It looks this happens only in FF browser.
Here goes quick fix: in index.cgi find
and replace with
Features: thanks, I had plan to implement delay, not sured about PayPal yet, also maybe will add ADSense easy integration.
Here goes quick fix: in index.cgi find
Code: Select all
print"Content-Disposition: attachment; filename=$fname\n";
Code: Select all
print qq{Content-Disposition: attachment; filename="$fname"\n};