Jinzora Users
|
The simplest way to secure Jinzora is to use different users with different access
levels and to set Jinzora's default mode to "viewonly" (if appropriate). There are 4
levels of users, they are:
Admin: Just what you think this user type can do just about everything
Power User: Very similiar to an Admin, but they can't use the "Tools" section
User: A user can play music, but NOT download (only Power Users can)
View Only: Pretty obvious, don't you think?
|
Securing Apache
|
Probably the best way to secure Jinzora for real is the use of .htaccess and .htpasswd files in
Apache (user authentication). Again this guide isn't the end all on security, so do some searching
if you're not familiar with this concept. One thing you'll want to do (possibly) is set:
$auth_value = "user:pass";
In settings.php This value will be prepended to all playlist when Jinzora generates them so that
you (and your users) won't have to worry about authentication issues with their favorite media player.
|
Securing IIS
|
Probably the best way to secure Jinzora on IIS is to enable Authentication (like Apache above).
Again this guide isn't the end all on security, so do some searching
if you're not familiar with this concept. One thing you'll want to do (possibly) is set:
$auth_value = "user:pass";
In settings.php This value will be prepended to all playlist when Jinzora generates them so that
you (and your users) won't have to worry about authentication issues with their favorite media player.
|
Preventing Right Clicks
|
One way to secure your content is to disable the right mouse button. This would make it much more difficult
for users to be able to download your images and tracks. It would prevent them from easily copying the HREFs
to your media as well.
Realize that there is no 100% way to prevent a user from access this information. They could always view the source
HTML and get the data from there. Also realize that using this feature will actually piss off some of your users
as it will disable many other features of the browser (like opening links in new windows, etc).
To enable this feature you'll need to set:
$secure_links = "true";
In system.php (NOT settings.php).
NOTE: This feature is NOT supported in upgrades. You'll need to set this in system.php each time you
upgrade Jinzora.
|