|
Home Download TODO FAQ Commercial Demo Forum Contact Translate NewsLetter Donate! 21431 since 8. Jul-05 |
FAQ Q: What are the system requirements? A: You need PHP4/PHP5, MySQL and possibility to change file-permissions. Q: How do I install it? A: Look in the readme.htm-file. Q: When will the next version be released? A: I don't know. It depends on how much time I have and if there is any more needed to be done with it. If you donate me some money, it could speed up development... :) Q: What do I do if I have a suggestion for a new feature? A: Send me an email and I'll look into it! Q: What do I do if I need help or find a bug? A: Send me an email and I'll see what I can do about it! Q: Can I remove the "Powered by ezUserManager"-text? A: NO! That would be in breach of the license agreement. The only way to be allowed to remove it is to buy a commercial lisence. Q: What do I do if I have made a new translation? A: Submit your translation here. Q: How do I protect a folder? A: See if there is a file called .htaccess in the directory you want to protect. If it is append the following to it, if not create a new one containing the following: AuthUserFile /complete/path/to/ezusermanager/.htpasswd
AuthGroupFile /dev/null
AuthName "ezUserManager"
AuthType Basic
require valid-user
<Files .htaccess>
order allow,deny
deny from all
</Files>
Remember to replace the "/complete/path/to/ezusermanager/" with the correct path. Your host have this info.Q: How do I protect a single file? A: See if there is a file called .htaccess in the directory where the file you want to protect is located. If it is append the following to it, if not create a new one containing the following: <Files .htaccess>
order allow,deny
deny from all
</Files>
<Files filename.htm>
AuthUserFile /complete/path/to/ezusermanager/.htpasswd
AuthGroupFile /dev/null
AuthName "ezUserManager"
AuthType Basic
require valid-user
</Files>
Remember to replace the "/complete/path/to/ezusermanager/" with the correct path. Your host have this info and the "filename.htm" with
the filename you want to protect.
|