CodeIgniter Forums
MeNeedz Auth - 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: MeNeedz Auth (/showthread.php?tid=13058)

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20


MeNeedz Auth - El Forum - 01-24-2010

[eluser]Sbioko[/eluser]
Oh, waldmeister, you were wrong! You can easily get all the twitter statuses of the public timeline or friends timeline. I do it using jQuery, so It can be easily done using PHP+Codeigniter. If you want some help, ask me! :-)


MeNeedz Auth - El Forum - 01-24-2010

[eluser]davidbehler[/eluser]
Wrong topic!?


MeNeedz Auth - El Forum - 01-24-2010

[eluser]Sbioko[/eluser]
Excuse me, but what? I wrote something incomprehensible? I'm talking about your lib.


MeNeedz Auth - El Forum - 01-24-2010

[eluser]davidbehler[/eluser]
And this is not the topic of my twitter library...


MeNeedz Auth - El Forum - 01-24-2010

[eluser]Sbioko[/eluser]
OMG, :-) Please, forgive me :-)


MeNeedz Auth - El Forum - 03-16-2010

[eluser]noobs[/eluser]
excuse me, i have some problem at auth library if i entry some new user with user_id = 20 or higher i got error
like this :

A PHP Error was encountered

Severity: Notice

Message: Undefined index: user_id

Filename: libraries/Auth.php

Line Number: 74
A PHP Error was encountered

Severity: Notice

Message: Undefined index: user_name

Filename: libraries/Auth.php

Line Number: 62

anybody help me to fix this bug...
soory for my bad engglish


MeNeedz Auth - El Forum - 03-16-2010

[eluser]davidbehler[/eluser]
Can you post line 62 to 74?

Because in my version of the library that's somewhere in an array:
Code:
var $user_standard_group = 'user';
    var $input_config = array(
                                'login' =>     array(
                                                    'identifier' => 'user_name',
                                                    'password' => 'user_password',
                                                    'remember' => 'remember_me'
                                                ),
                                'register' =>     array(
                                                        'identifier' => 'user_name',
                                                        'password' => 'user_password',
                                                        'email' => 'user_email',
                                                        'primary_key' => 'user_id',
                                                    )



MeNeedz Auth - El Forum - 03-20-2010

[eluser]noobs[/eluser]
ok thx master...right now i am understand...so help full...and i am success to fix it...

when to release dblog 1.9?? can't wait to develop..


MeNeedz Auth - El Forum - 06-14-2010

[eluser]Sean Downey[/eluser]
Hi David

Great library - I really like it especially the multi groups part.

I have sent you some code which allows for a hierarchy of groups rather than linear levels.
eg
user
staff
- forums
- forums_admin
- news
- editor
- administrator

I hope this is a good addition to the code.

I have a couple of questions:
- I read the entire thread and couldn't find where you moved the config items into the library itself instead of keeping them in a seperate /config/auth.php file
What was the reason for moving them back into the library?

- the clear function seems to overwrite the config settings previously set above the constructor function. This means you are setting up the variables twice.
I think this could be changed a bit. I realise that "clear" is on;y called from the "initialize" function.

Thanks again for the great library.
I haven't used it in a project yet but I reckon I will soon.