rejetto forum

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - JaseGW

Pages: 1
1
HTML & templates / Hide Folders and stuff
« on: December 24, 2008, 12:05:33 PM »
Not sure if this the right place to put this, but a feature that I feel would be good, is the ability to hide folders/files that a user has not got permission to view.
I know you can hide them completly, would be nice if it was based on if they had permission as if it could be seen.

Also, the download restrictions, like speed, how many connections etc. can this be done per user as aposed to global ?

Is this something that can be done ?

2
HTML & templates / IE7 Problem
« on: October 28, 2008, 11:16:04 PM »
There apears to be a bug in IE7,

A file named original "This file.ext" becomes This_file.ext when downloaded and saved.
Basically, IE7 replaces a space with an underscore.

M$ say......

"The change that causes the _ to be put in was made to the caching
mechanism.  There is no switch to override this.
You can however workaround this on your server.
You will have to inject the escape char for space into the file name (%20).  This will work with IE6 and IE7."
 
So the fix is to do something like this:
 
Response.AddHeader "content-disposition","attachment; filename=" & chr (34) &
replace( myFileName," ","%20") & chr (34) & ";"
 
So, I guess my question is, can this be put in the tpl file ? if so, where ?
This is not a problem if you use firefox, unfortunatly, not everybody has seen the light!

Thanks.

Pages: 1