![]() |
A3M - Account Authentication & Authorization Module - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: A3M - Account Authentication & Authorization Module (/showthread.php?tid=27290) |
A3M - Account Authentication & Authorization Module - El Forum - 12-20-2010 [eluser]veggen[/eluser] +1 I find great value in this project. I'd be probably enough for me to just get a bug fix, but further development is even better! A3M - Account Authentication & Authorization Module - El Forum - 12-20-2010 [eluser]Jeremy Hutchings[/eluser] How are things going on the roles and permissions front ? A3M - Account Authentication & Authorization Module - El Forum - 12-21-2010 [eluser]diZzyCoDeR[/eluser] +1 here too, I'll be putting this to good use and post any bugs/patches to the Code page. Cheers to Peng Kong! Thanks mate, for your nice contribution! Let us all help him make it awsum!!11! A3M - Account Authentication & Authorization Module - El Forum - 12-21-2010 [eluser]diZzyCoDeR[/eluser] [quote author="Hermes Alves" date="1285282667"]The error 404 is for anywhere account index.php/account/sign_in_yahoo/verify?janrain_nonce=2010-09-23 Yahoo, google, twiiter and other. The return of yahoo, google or twitter display 404 page. I was using the .htaccess default now.[/quote] For those with a working .htaccess but then barfs on /verify?janrain_nonce= you may want to try playing with Code: $config['uri_protocol'] = "AUTO"; I had to set mine to "ORIG_PATH_INFO" to work with bluehost.com servers (linux) A3M - Account Authentication & Authorization Module - El Forum - 12-23-2010 [eluser]Medikal[/eluser] Since I'm trying to figure it out for myself, I sign in with facebook (api key/secret are set correctly), and I connect with facebook, it redirects me to my homepage, I'm assuming that means the login was successful. However I navigate to the profile and it redirects me to back to the sign in, I navigate to the account_user page and receive: http://content.screencast.com/users/DeviousDan/folders/Jing/media/33fe3c81-7ecf-485b-82b9-e010c1ba4f22/2010-12-23_1118.png I'm using the latest version, .6 atm, any ideas? A3M - Account Authentication & Authorization Module - El Forum - 01-04-2011 [eluser]Peng Kong[/eluser] Release of A3M v1.0 Mushmellow! New Mushmellow Thread: http://ellislab.com/forums/viewthread/177256/ A3M - Account Authentication & Authorization Module - El Forum - 01-04-2011 [eluser]electronik_0[/eluser] Genial ![]() A3M - Account Authentication & Authorization Module - El Forum - 01-05-2011 [eluser]Boan Pasaribu[/eluser] hi peng..... i wanna ask about oauth. when run a3m from localhost all works fine. consumer and oauth. but when i run a3m from domain.com. i got an error in obtain_request_token. just a blank page. so i print_r some variable and i get this: HTTP/1.1 401 Unauthorized Date: Wed, 05 Jan 2011 09:54:52 GMT Server: Apache X-Powered-By: PHP/5.2.13 Set-Cookie: ci_session=a:4:{s:10:"session_id";s:32:"398c7d35e942d35ad8ec63f053ff3be4";s:10:"ip_address";s:14:"180.235.151.18";s:10:"user_agent";s:48:"anyMeta/OAuth+1.0+-+($LastChangedRevision:+99+$)";s:13:"last_activity";s:10:"1294221292";}65001b5452ebc2e38de63471d5980c9f; expires=Wed, 05-Jan-2011 11:54:52 GMT; path=/ Transfer-Encoding: chunked Content-Type: text/plain OAuth Verification Failed: Can't verify request, missing oauth_consumer_key or oauth_tokens 1.the http code is 401 not 200 2.missing oauth_consumer_key or oauth_tokens i'm going to this link http://code.google.com/p/oauth-php/wiki/ConsumerHowTo#Three-legged_OAuth for some research. can u help me why i can't get obtain_request_token thanks!!!! A3M - Account Authentication & Authorization Module - El Forum - 01-05-2011 [eluser]Peng Kong[/eluser] i got no idea sorry. if it works on localhost would be ur server config. u are trying to signin with which provider? A3M - Account Authentication & Authorization Module - El Forum - 01-05-2011 [eluser]Boan Pasaribu[/eluser] i'm trying to use your consumer[client] and oauth[server/provider]. i think it's not my server config. first i change in here : $options = array('server' => 'localhost', 'username' => 'john', 'password' => 'secret', 'database' => 'johns_db'); $store = OAuthStore::instance('MySQL', $options); ok. thanks for u're reply peng. |