Questions tagged [lightopenid]

LightOpenID is a lightweight OpenID library written in PHP. It already implements a functional consumer and a provider is under development.

LightOpenID is an open source software project written in PHP 5 for implementing the consumer part of OpenID.

It offers a some documentation about:

Features:

  • Easy to use (you can code a functional client in less than ten lines of code)
  • Uses cURL if avaiable, PHP streams otherwise
  • Supports both OpenID 1.1 and 2.0
  • Supports Yadis discovery
  • Supports only stateless/dumb protocol

Requirements:

  • PHP 5 or later
  • 29.5 KB for the library
103 questions
0
votes
1 answer

How to discover OpenID IDP, then authenticate with OpenID Provider in PHP

I've been looking at implementing OpenID authentication to one of my websites and want to find the best possible solution to make it as easy as possible for users to sign up / in. Through my long searches on Google I found a few sites that have…
ChazUK
  • 744
  • 4
  • 26
0
votes
1 answer

LightOpenId and security

Is lightopenID safe to use in a project you intend to publish, since the current version is 0.4
jonnnnnnnnnie
  • 1,219
  • 3
  • 15
  • 24
0
votes
0 answers

LightOpenID forbidden when redirecting back

Possible Duplicate: LightOpenID forbidden when redirecting back Please help: I'm trying to use lightOpenID, which should be simple and a case of uploading the files then testing it works. When I use the example-google.php I get click the login…
0
votes
1 answer

Steam Authentication Session

As you know, steam provides a script to allow people to connect on your site through the steam database. I would like if I refresh the page I don't have to login again. But with steamapi I don't have any idea how to do it. My Code:
Kevin1003
  • 21
  • 3
0
votes
1 answer

LightOpenID not detecting login causing login looping

I have some simple code to hook into steam's OpenID login system $openid = new LightOpenID('url'); $openid->identity = "http://steamcommunity.com/openid"; if(!$openid->mode) { header("Location: " . $openid->authUrl()); } elseif($openid->mode ==…
Rob
  • 88
  • 1
  • 14
0
votes
0 answers

PHP - Steam API Web Connect OpenID --> No redirect

I have a problem with my code to login on steam, when I click on a button, the link block at: LINK?login --> No redirect to steam I don't now the problem and I start a PHP code, so can you help me please
Pichon
  • 17
  • 2
0
votes
1 answer

LightOpenID is only using the first AuthURL returned despite individual PHP Sessions being started

Here's my login code below, it's pretty standard. Why would a user who presses login on steamcommunity. Below this code is a quick debug output I threw together which demonstrates that although 2 AuthURLs are being sent, for some reason LightOpenID…
Kamern
  • 16
  • 3
0
votes
1 answer

Automatic login with LightOpenID after first authentication?

I've got a situation where I'm being required to have my app fit a list of workflows, one of which requires that if a user authenticates using OpenID, all future visits to our site will automatically log them in ONLY on the condition that they're…
Citizen
  • 12,430
  • 26
  • 76
  • 117
0
votes
1 answer

Login through Google in Codeigniter via LightOpenID

I used the instructions given in this answer to setup login through Google via LightOpenId. It's working fine up till the point where it has to check $openid->mode to find out whether google has verified the login credentials. The Url received from…
CobaltBabyBear
  • 2,188
  • 6
  • 26
  • 47
0
votes
1 answer

When using LightOpenId I get a different identity if using www

When authenticating my users via LightOpenId, I'm getting a different identity if they access the site using http://www.example.com or when they access via http://example.com. Is there any way to avoid this. Also, I'm planning on also allowing…
zundi
  • 2,361
  • 1
  • 28
  • 45
0
votes
1 answer

Login with lightOpenID and yahoo

I have tried to create an openid login form with https://gitorious.org/lightopenid library , but doesn't work with yahoo openid url. The error reported fro the library is : No OpenID Server found at…
0
votes
1 answer

Redirecting user to Login OpenID page

I am currently implementing and at the same time learning the use of OpenId. Specifically using lightopenid. It is working but I would like users that are needing to login to be redirected automatically to the login page when accessing the url…
user1261800
0
votes
2 answers

How to get OpenID to *not* ask permission for personal info every login?

I've just integrated OpenID into my PHP web app using LightOpenID. The first time you try to log in with OpenID (through Google, for example) it should (and does) ask for a bit of personal information, such as your name and email address. When they…
mpen
  • 272,448
  • 266
  • 850
  • 1,236
0
votes
3 answers

Codeigniter Breaks On GoDaddy

My website worked just fine locally but broke when I uploaded it to my host (GoDaddy) - when clicking on the links on my website I got a "No input file specified." I stumbled upon this -…
Joel Blum
  • 7,750
  • 10
  • 41
  • 60
0
votes
2 answers

LightopenID regarding protecting web pages

So I have the example-google.php script working, after loging in it throws the default user string has logged in. But my question is how does this protect anything? Lets say I have //127.0.0.1/example-google.php and I added a href to…