Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
Is there an example of a working code with authorization through PhpMyAdmin? |
||||
|
phpMyAdmin is an admin interface for mySQL, so not sure if your question makes sense? |
||||
|
I need a typical working authorization code on the site. |
||||
|
You can use .htaccess files, for a simple authorization method. Or you could use some PHP code for that. Take a look at RocketCake, it has a built-in PHP authorization module, maybe looking at how that works helps, too. |
||||
|
How to set up a redirect on the selected page and how to close access to the pages before authorization using the RocketCake password protection? I add a password protection on the page, a login.php is created, but the redirect works on the main page and the access on selected page remains open even without authorization. I need for a specific user to open a specific page depending on the entered username and password: $targetpage = 'user_1.php'; $user = 'user_1'; $password = '123'; $targetpage = 'user_2.php'; $user = 'user_2'; $password = '12345'; How to implement it in RC? |
||||
|
I think rocketcake only allows serveral users with different passwords to access the same pages. If you need more fine grained access, create a .rcd file for each subdirectory of your website and use different passwords / users for these. |
||||
|
How to set up a redirection to the user’s page according to the entered login and password using RocketCake? How to use uLogin with WebsitePainter? |
|