Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
1.5k views
in Plugins by
we all need to plugins for login with google and much more so help me some one out of this...

thanks

2 Answers

+1 vote
by
Are you talking about this:

http://www.tovolt.com/login?to=

this above demo use loginza plugin, this plugin is pretty old using php short tag, just update it and is fine. I am using it (check above demo)
by
hey its work but after login logout is not work what for this...
by
solution: use static url like tovolt.com/logout (this link if you have enabled htaccess)
by
you means
 function logout_html($tourl)
        {
            // Delete cookies when logout and redirect to ./logout
            ?>
            <script type="text/javascript">
                function DelLoginzaCookies() {
                    //alert("is Work");
                    document.cookie = 'qa_loginza_id=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
                    document.cookie = 'qa_loginza_scr=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
                    document.location = 'http://localhost/question2answer/';
                }
            </script>

            <a href="#" onclick="DelLoginzaCookies()">Exit</a>
by
any new plugins for question 2 answer...
+1 vote
by

Try the Open-Login plugin from here: https://github.com/alixandru/q2a-open-login

As a note, in order to test the logins from localhost you need to add an entry to your hosts file (/etc/hosts or c:\windows\system32\drivers\etc\hosts) with a custom domain that would point to your loopback address.

For example, add

127.0.0.1  local.mysite.com

Then you will be able to access your localhost through the URL local.mysite.com, tricking Facebook login and other providers into thinking you are on a legitimate site. This way you can test the login/logout functionality.

...