I am not able to log out using the STC plug-in. Clicking "log out" leaves me signed in to Twitter.
The SFC log out is working just fine.
Is there a work around for this?
I am not able to log out using the STC plug-in. Clicking "log out" leaves me signed in to Twitter.
The SFC log out is working just fine.
Is there a work around for this?
Same thing here. Hope there's a fix.
Has to do with "session_unset()" used in line 150 of stc-login.php and line 50 of stc-comments.php.
Replacing with this should solve it:
session_start();
session_unset();
session_destroy();jonh, do you mean replace the single line
session_unset();
by the three lines?
session_start();
session_unset();
session_destroy();
on both files: stc-login.php and stc-comments.php, correct?
@marianolozano: Yes, all three lines replace that single line. The problem has been noted on the PHP documentation.
I'm only using stc-comments.php, but I'd assume the same applies to stc-login.php.
Thanks a lot john! :-)
awesome! thanks! derek
I've made the changes noted above but I still am not able to logout.
any suggestions?
Thanks, this worked for me. If using the comments widget, the unset line is at line 50 in stc-comments.php
This topic has been closed to new replies.