vote up 5 vote down star
4

Does anyone have openid working in a PHP 5.3 installation? None of the libraries I've tried seem to be working.

flag

haven't ever used it personally, but supposedly Zend Framework 1.9's Zend_Openid is compatible with 5.3 since the whole release is supposed to be – Mark Aug 8 at 17:40

3 Answers

vote up 0 vote down

Zend_OpenId is compatible with PHP 5.3, however it only supports OpenID 1.1 and will not work with Google (which uses OpenID 2.0). Janrain's OpenID system normally available via http://openidenabled.com/php-openid/ is the one I'm using for my PHP 5 application (the OpenID enabled site is currently slightly down for maintenance today) - it is also one of the more popular PHP OpenID implementations (only small snag is that it uses temporary files for the OpenID sessions - making getting it working on a multi-server environment slightly tricky).

link|flag
Right, I'm not going to use an openid 1.1 provider. And Janrain was NOT working on PHP 5.3 for me. Does it work for you? – Paul Tarjan Aug 10 at 18:52
Yes, what sort of problem/errors are you having? – Richy C. Aug 10 at 21:52
These are the error messages. gist.github.com/167039 – Paul Tarjan Aug 13 at 7:53
Any idea about my errors? – Paul Tarjan Sep 1 at 4:47
vote up 2 vote down check

The solution is to remove all the of pass-by-reference elements in php-openid.

change

foo(&$param)

to

foo($param)

and the library should work again.

link|flag
That, and the suggestions in [this ticket](trac.openidenabled.com/trac/ticket/337) of openidenabled.com make the library work partially. However, that will not fix the library completely and the authentication with Google will not work. – miguelSantirso Sep 27 at 18:57
google logins seem to work for me with this change : paulisageek.com/openidavatar – Paul Tarjan Sep 28 at 23:01
Ok, I finally fixed it... I explain everything in my answer to this question – miguelSantirso Oct 5 at 17:00
vote up 2 vote down

Ok, I finally got to fix the library... I explained everything here (you can also download the php-openid library after my changes).

I needed to do what Paul Tarjan suggested but, also, I needed to modify the Auth_OpenID_detectMathLibrary and add the static keyword to a lot of functions. After that It seems to work perfectly although it is not an ideal solution... I think that someone should rewrite the whole library in PHP 5...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.