CodeIgniter Forums
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)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39


A3M - Account Authentication & Authorization Module - El Forum - 05-25-2011

[eluser]aL3xa[/eluser]
@david, take a look at this one: http://openid-demo.appspot.com/
It's not a CI plugin, but one could easily implement it.


A3M - Account Authentication & Authorization Module - El Forum - 06-06-2011

[eluser]Asiansexynine[/eluser]
May adding signin via Hi5! ?


A3M - Account Authentication & Authorization Module - El Forum - 06-07-2011

[eluser]michaelh99[/eluser]
Why is the CI documentation part of the A3M archive?
Actually it looks like most of CI 2 is part of the A3m archive. Was that done to make it easier on new users to get going?
Makes it hard to separate A3m from the rest of the CI source.


A3M - Account Authentication & Authorization Module - El Forum - 06-07-2011

[eluser]dUspan[/eluser]
hi

will this work on 2.0.2?

thanks.


A3M - Account Authentication & Authorization Module - El Forum - 06-07-2011

[eluser]alexaaaaaaaaaa[/eluser]
[quote author="dUspan" date="1307464651"]hi

will this work on 2.0.2?

thanks.[/quote]

got to google code link on the first page of this topic and there u'll have 2 options 1.7 and 2.0


A3M - Account Authentication & Authorization Module - El Forum - 06-12-2011

[eluser]Ben Swinburne[/eluser]
For anyone having problems with the facebook infinite loop problem I've since discovered (or so it would appear) it's to do with Codeigniter losing the $_GET related variables when clean URLs are enabled. .htaccess configurations for codeigniter typically don't include the query string in rewritten URLs, and all of the .htaccess tutorials/examples I've seen for a3m come without it too.

To resolve the issue replace the following line, or the line which does the equivilant in your .htaccess

Code:
RewriteRule ^(.*)$ /a3m_peanutbutter/index.php?$1 [L]

With this one.

Code:
RewriteRule ^(.*)$ /a3m_peanutbutter/index.php?$1 [QSA,L]

I've got my $config['uri_protocol'] set to AUTO but I'm not sure how changing it will affect the above proposed solution, and haven't tested it.

Hope this works for other people too.


A3M - Account Authentication & Authorization Module - El Forum - 06-17-2011

[eluser]Unknown[/eluser]
مرحبا،
Arabic translation for a3m v2 language files.

http://code.google.com/p/a3m-arabic-language-pack/

Hope is useful.


A3M - Account Authentication & Authorization Module - El Forum - 06-25-2011

[eluser]michaelh99[/eluser]
Is this a dead module? There hasn't been any development since Feb and questions are going un-answered by the dev


A3M - Account Authentication & Authorization Module - El Forum - 06-25-2011

[eluser]malcomhfc[/eluser]
The developer is currently busy as he has mentioned in the thread, hopefully he picks up development sometime soon,

Robbie.


A3M - Account Authentication & Authorization Module - El Forum - 08-02-2011

[eluser]Unknown[/eluser]
Hi

I've found this library/template/plugin very helpful on getting users logged in. But I haven't found a way to use the role/permissions stuff working (I just saw the tables on phpmyadmin, but not its relationship with the PHP code). Is there a controller/view/library I can use to give my site this functionallity?

I read something about someone developing an admin panel or something, but nothing definite or clear.

Thanks.