How to implement a customizable free OpenID authentication?

OpenID is a standard commonly used nowadays. I am trying to implement OpenID on my blog, but I have many difficulties.

I tried OpenID plugin but it seems to be incompatible with WordPress 3.0.

Read More

I tried also Janrain plugin but the free version is too limited. I would like to integrate the login screen into my blog theme style.

Do you have any suggestions how to proceed? Any other plugins? Or any PHP library that can be adapted to an easy integration with WordPress?

Related posts

Leave a Reply

4 comments

  1. I use OpenID 3.3.2 (from the same link) and it works fine as far as I can tell. I have the latest version of WordPress and the Plugin. I have full control on the server if that makes any difference.

    If you can tell specifically what the problem is, I can check how I have configured.

  2. Why do you say Janrain is to limited? just call the javascript showRPX() anywhere you want.

    For instance, in my theme, I had

    $u=get_login_url();
    printf("<a href='$u'>login</a>);
    

    Just use instead

    $u=get_login_url();
    printf("<a href='$u' onclick='javascript:showRPX();return false;'>login</a>);
    

    It’s not free as in free speech, but I think you have enough freedom with their solution