Part of the EllisLab Network
   
1 of 39
1
FreakAuth light 1.1 released
Posted: 17 July 2007 11:14 AM   [ Ignore ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  478
Joined  2007-02-21

After two months (and few weeks of silence) we are proud and honored to announce the release of FAL 1.1 !!!

As usual with this lib, you’ll be able to add to your app an authentication solution:

* an admin backend
* functions to secure whole controllers or their functions
* functions to customize your views ccording to the role of the user
* ...

We thought this version should deserve a 1.1 tag. Have a look at the change log and tell us what you think.

You’ll find docs and sources on the official site.

We’ll be glad to hear your feedback here.

-- the FreakTeam (danfreak and grahack)

Profile
 
 
Posted: 17 July 2007 11:57 AM   [ Ignore ]   [ # 1 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  512
Joined  2006-12-05

wow wow wow!

wink

I posted 2 new tutorials about FAL 1.1:

=> Extending FreakAuth

=> FreakAuth_light 1.1 new assets management

hope this helps!

Dan

 Signature 

FreakAuth_light: pluggable & extendable authentication library that works on CI 1.5.X

CI SWIFT MAILER: 44% less memory than PHPMailer at double speed

Using Zend Framework components in Code Igniter

Profile
 
 
Posted: 17 July 2007 05:20 PM   [ Ignore ]   [ # 2 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  277
Joined  2007-02-07

Congratulations guys!

Profile
 
 
Posted: 17 July 2007 07:20 PM   [ Ignore ]   [ # 3 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  553
Joined  2006-04-20

I post my question wich was in 1.04 here.

I think it would be a great feature to have a unique identification system, that once we are logged in, if we loggin from another place at the same moment with the same account, then the older session is deleted restrincting then the users to be logged in only from 1 browser at a time. This can protect for exemple in some apps that a user give to everybody his account informations (specially in websites wich offer paying services)

As Danfreak suggested to me in the 1.04 forum thread, i will be happy to contribute, as far as i can can, and do not worry Danfreak that i am a big open source contributor at the moment that my skills permit it !

Now about the suggestion wich i post here, my goal was not that that the FreakAuth developpers make this new functionality for me, but i would be interresting to have a point to start, or a way to do it and once more, if i can come with a working solution, i will be glad to contribute ! Hope you FreakAuth developper team didn’t miserderstood what i was asking here !

And also forgot to tell to complete my post, i use FreakAuth only from yesterday when i discovered it, so before contribute, i will need a little bit more time to understand all, but it’s a really wonderfull peace of code.

 Signature 

Too Pixel: webdesign Geneve (Switzerland)

All CodeIgniter resources in 1 place?
http://www.codeigniterdirectory.com

(Did you know we are converting this directory to Linkster? We need a Graphic designer, join us!)

Profile
 
 
Posted: 17 July 2007 09:17 PM   [ Ignore ]   [ # 4 ]  
Summer Student
Avatar
Total Posts:  15
Joined  2007-03-23

Hello,

If one of you FreakAuth guys would help me out with my FreakAuth problem, I would be most appreciative.

TIA,
Cotton

 Signature 

Ten Ships - Scottsdale Web Design
Vizzo - VPS Management Made Easy

Profile
 
 
Posted: 18 July 2007 03:20 AM   [ Ignore ]   [ # 5 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  478
Joined  2007-02-21
elitemedia - 17 July 2007 07:20 PM

I think it would be a great feature to have a unique identification system, that once we are logged in, if we loggin from another place at the same moment with the same account, then the older session is deleted restrincting then the users to be logged in only from 1 browser at a time. This can protect for exemple in some apps that a user give to everybody his account informations (specially in websites wich offer paying services)

Now about the suggestion wich i post here, my goal was not that that the FreakAuth developpers make this new functionality for me, but i would be interresting to have a point to start, or a way to do it…

This suggestion has already been made. When a (new) config flag is set to true, FAL could store a row in a dedicated table (id of the user) and (rather than turn the old session off) prevent new sessions from being created with the same id.
This would allow us to count logged in users, make a list…
But while I’m writing it, I now think that a dedicated table is already set: ci_sessions. all the info we need is hidden in the serialized string. It could be quite easy to work with this…

Profile
 
 
Posted: 18 July 2007 04:33 AM   [ Ignore ]   [ # 6 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  553
Joined  2006-04-20

This suggestion has already been made. When a (new) config flag is set to true, FAL could store a row in a dedicated table (id of the user) and (rather than turn the old session off) prevent new sessions from being created with the same id.
This would allow us to count logged in users, make a list…

Grahack, Sorry, I am not sure that I understood your answer due to my bad english wink
Do you mean this feature exists already in FAL 1.1 or do you mean that you are about to developp it ?

Christophe

 Signature 

Too Pixel: webdesign Geneve (Switzerland)

All CodeIgniter resources in 1 place?
http://www.codeigniterdirectory.com

(Did you know we are converting this directory to Linkster? We need a Graphic designer, join us!)

Profile
 
 
Posted: 18 July 2007 04:41 AM   [ Ignore ]   [ # 7 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  478
Joined  2007-02-21

Do you mean this feature exists already in FAL 1.1 or do you mean that you are about to developp it ?

not existing, not under development
I meant that the ci_sessions table is our friend, it contains the infos we need. We just have to fetch it to know who’s online, and do whatever you want with it (count, prevent other connexions...)

EDIT: the (DB_)sessions API: userdata() and set_userdata() should be useful.

Christophe

Do you mean we have the same name?

Profile
 
 
Posted: 18 July 2007 12:14 PM   [ Ignore ]   [ # 8 ]  
Summer Student
Avatar
Total Posts:  21
Joined  2007-05-14

Grate work! Congratulations!

Profile
 
 
Posted: 18 July 2007 12:32 PM   [ Ignore ]   [ # 9 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  512
Joined  2006-12-05

@Iksander & MrEnirO

Cheers guys!
I hope you will like the new features!

Dan

 Signature 

FreakAuth_light: pluggable & extendable authentication library that works on CI 1.5.X

CI SWIFT MAILER: 44% less memory than PHPMailer at double speed

Using Zend Framework components in Code Igniter

Profile
 
 
Posted: 19 July 2007 06:37 PM   [ Ignore ]   [ # 10 ]  
Research Assistant
RankRankRank
Total Posts:  367
Joined  2007-05-21

just telling you guys do a pretty damn work.

i’ll do what i have to do and send you some bucks by contribution on your website.

many thanks.

 Signature 

-> None official irc channel [ irc.freenode.net #codeigniter ]

Profile
 
 
   
1 of 39
1
 
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 719, on June 06, 2008 10:16 AM
Total Registered Members: 58779 Total Logged-in Users: 15
Total Topics: 69462 Total Anonymous Users: 0
Total Replies: 373909 Total Guests: 236
Total Posts: 443371    
Members ( View Memberlist )