I've read the tutorial on BV's login system. My question is, is there an auto logout? I know there's a logout button, but let's say, a member went out of the secured pages, sort of clicked a public page. Will he/she be automatically logged out? Thank you.
Auto Logout
Collapse
This topic is closed.
X
X
-
Re: Auto Logout
In this post, and all of your previous posts ... why don't you first try implementing something to see for yourself how things work rather than ask many questions without ever actually doing?
What is your Domain name, or a URL to your website?
-
-
Re: Auto Logout
No, there isn't such a feature. BUT, why should a member be logged out just because he visited a "public" page ???Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Comment
-
-
Re: Auto Logout
Originally posted by Vasili View PostIn this post, and all of your previous posts ... why don't you first try implementing something to see for yourself how things work rather than ask many questions without ever actually doing?
What is your Domain name, or a URL to your website?
Comment
-
-
Re: Auto Logout
Originally posted by navaldesign View PostNo, there isn't such a feature. BUT, why should a member be logged out just because he visited a "public" page ???
Comment
-
-
Re: Auto Logout
What I'm saying is that there is no reason why one of these "trusted" members should be logged out automatically, if, while visiting the members only pages, they also visit (among them) also a "public" page.Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Comment
-
-
Re: Auto Logout
Yes you're right. But in my case, even competitors can disguise themselves as "trusted" members so, I just don't want to give them (competitors) any chance to copy designs. Or should I say make life difficult for them to copy if it can't be avoided. But thanks a lot.
Comment
-
-
Re: Auto Logout
What I'm saying is that someone that already has the login details, can login in at any time again. So what you are asking is meaningless.Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Comment
-
-
Re: Auto Logout
If this is what you want, there is a simple solution:
1. Make the "public" pages php
Add in all public pages, in Start of Page, the following code:
<?php
session_start();
unset($_SESSION['username']);
?>Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Comment
-
-
Re: Auto Logout
No, just put a link to the login page.
To automatically be logged out after a ceratin time period you would need to modify both the login page code AND the Protect Page code that exists in all protected pages. Requires some PHP knowledge.Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Comment
-
-
Re: Auto Logout
Originally posted by navaldesign View PostNo, just put a link to the login page.
To automatically be logged out after a ceratin time period you would need to modify both the login page code AND the Protect Page code that exists in all protected pages. Requires some PHP knowledge.
Ok I'll go for the link to login page. Thanks so much for the help.
Comment
-
Comment