![]() |
CL Auth [BETA] v0.2.5 - 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: CL Auth [BETA] v0.2.5 (/showthread.php?tid=8048) |
CL Auth [BETA] v0.2.5 - El Forum - 07-15-2008 [eluser]Devon Lambert[/eluser] [SOLVED!] Disregard, I was able to answer my own question by tweaking the library to redirect to the profile page upon sucessful login. ---------------------------------------- I'm almost ashamed to ask, but how have some of you gone from the login page directly to another page once the user logs in corectly. In other words, I have a "Profile" view that I would like every user to land on when they login. The "Profile" controller is also built. How do I set up the login_form() so that it returns the user to the profile page upon login? Thanks. CL Auth [BETA] v0.2.5 - El Forum - 07-21-2008 [eluser]javier_[/eluser] Hi Jason, i was trying to use your package (v 0.2) , and i found some minor bugs : -In your webpage there's a language link, but in the package i've downloaded there's not such language file. isnt implemented yet? (if you want it , i can help with spanish translation) -In the readme file, nothing refers to cl_header and cl_footer... and i havent found in the zip file. -In schema.sql the insert sentence haven't prefix ( cl ). Thanks for your contribution. Excuse my english. CL Auth [BETA] v0.2.5 - El Forum - 07-22-2008 [eluser]bigdaddysheikh[/eluser] Hey, I am having trouble using the register function, so I made my own. What security is the password field using? CL Auth [BETA] v0.2.5 - El Forum - 07-22-2008 [eluser]bigdaddysheikh[/eluser] Found it. here is the code crypt($this->cl_auth->_encode(($this->input->post('password')))) I just could not get the default register code to work for the life of me. Sorry about not using that function man. CL Auth [BETA] v0.2.5 - El Forum - 07-27-2008 [eluser]Unknown[/eluser] If you don't mind,I think it would be better if CL Auth library to be released by using LGPL license,As i have seen many libraries in here (ignited code) released as BSD/LGPL/MIT,CI license. furthermore since the application is library where many peoples just linking the code, it is more suitable LGPL instead GPL(more suitable for complete application).Even though it depends on you, i just wanted to give an advice. thanks CL Auth [BETA] v0.2.5 - El Forum - 08-05-2008 [eluser]FlashUK[/eluser] Thanks for the advice baxone, I will probably do that as you are right. CL Auth is a library and not an application. I am sorry that the documentation has not been updated lately but I need to dedicate a chunk of my time to rewriting it. The example files for the new version are almost done. I will be taking new screenshots of the new example. Also, I will be updating CL Auth so it works with CodeIgniters table prefixes. I shall release this as v0.3. I did promise that I would also release an admin panel for v0.3 but now that will have to wait until v0.4. Unless someone else wants to make one for the next release? I'll keep you posted. CL Auth [BETA] v0.2.5 - El Forum - 08-12-2008 [eluser]Adamito[/eluser] Hello! First thanks for this library! I need I help for using function like getProfile and getUserById ... I don't know how to use result without this : Code: foreach ($query->result() as $row) Adam CL Auth [BETA] v0.2.5 - El Forum - 08-12-2008 [eluser]peter222[/eluser] I try this library and I like it. I suggest to make separate files for messages (auth file). Now, every update destroy other language translation. CL Auth [BETA] v0.2.5 - El Forum - 08-14-2008 [eluser]FlashUK[/eluser] [quote author="peter222" date="1218585847"]I try this library and I like it. I suggest to make separate files for messages (auth file). Now, every update destroy other language translation.[/quote] CL Auth is capable of handling separate language files. It has been reduced down to one view file (general_message.php) and 1 line $this->cl_auth->message. So in theory, if you list all the text that is sent to cl_auth->message, you could create a language file and load it in. CL Auth has this feature prepared but has not been used yet. Quote:Hello! Hi Adam. Yes, you are doing it right. The model is basically just managing any calls done to the database. Loop through your results just like that. Code: $id = $this->session->usersdata('user_id'); P.S: Document is due for an update shortly. CL Auth [BETA] v0.2.5 - El Forum - 08-17-2008 [eluser]Delete Me Please[/eluser] I'm rather new to CI and I'm trying out the different User Managers. So far yours seems the best bet to what I'm wanting to achieve. The thing is, I follow your instructions in the latest download and the simple http://localhost/sandbox/index.php/example doesn't work, I get a 404. Also if I try to go to http://localhost/sandbox/index.php/auth it says it can't find cl_header.php. I can't find anywhere in your code that you've made a Controller or View for "example" nor is there any files named cl_header.php or cl_footer.php. Am I missing something? I'm using a clean copy of CI as well. http://localhost/sandbox is my $config['base_url']. Sorry I'm kind of new to using Frameworks ![]() |