17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1964 Views |
-
Lost password/ Logout doesn't work

28 May 2008 at 11:36am Last edited: 28 May 2008 1:44pm
Hi all,
I have Login form on my website for authorised customers but the link of I've forgoten password is not working. When i click on the button it gives msg that 'Thank you! The password reset link has been sent to 'mayuri_4469@yahoo.co.in'. but actually it doesn't send link to the login person.
Do anyone have idea why it's not working? How can i get fix this problem?
I also don't know how to point logout function on the page. Once i login to the page it can't point to logut. for log in form i have created a login page type.
C:\wamp\www\site_mimomax\tutorial\codeLogin.php
<?php
class Login extends Page {
static $db = array(
);
static $has_one = array(
);
}class Login_Controller extends Page_Controller {
}
?>
C:\wamp\www\site_mimomax\tutorial\templates\Layout\Login.ss
<div id="Content" class="typography">
$LoginForm
</div>and linked it to my page.ss file like;
<div id="Login">
<a href="login" title="Go to the "Login" page">Login</a>
</div>Can you suggest me how can i use logout function? What i m missing?
Need help plzzzzzzzzz.........Regards
Mayuri -
Re: Lost password/ Logout doesn't work

5 June 2008 at 8:16pm Last edited: 5 June 2008 11:23pm
maybe email sending doesn't work at all in your wamp installation?
try Debug:.Message() around the relevant code in
saphhire\MemberLoginForm.php function forgotPassword
also interesting:
saphhire\security.phpbest inspiration for invividual login etc.. is forum module /code/ForumMemberProfile.php
i think logout needs to be linked as: /Security/logout
as login is /Security/loging
Helmut -
Re: Lost password/ Logout doesn't work

9 June 2008 at 9:23am
Thanks Zyko
I had got my problem solved using if conditon;
<% if CurrentMember %>
<a href="Security/logout">Logout</a>
<% else %>
<a href="Security/login" title="Go to the "Login" page">Login</a>
<% end_if %>
| 1964 Views | ||
|
Page:
1
|
Go to Top |


