CodeIgniter Forums
how to redirect users to thier accounts in freakauth ??????????? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: how to redirect users to thier accounts in freakauth ??????????? (/showthread.php?tid=17064)



how to redirect users to thier accounts in freakauth ??????????? - El Forum - 03-24-2009

[eluser]ahmedbloger[/eluser]
hi every one,
please i want to know how to make users go to their a cccounts or profiles using freakauth
note:i am already install it and true using login and logout but when user login i made link to his account but i don't know what this link will be ????
please help me.


how to redirect users to thier accounts in freakauth ??????????? - El Forum - 04-03-2009

[eluser]stoefln[/eluser]
i would need this toooo!


how to redirect users to thier accounts in freakauth ??????????? - El Forum - 09-17-2009

[eluser]piker[/eluser]
The same problem.

I create new controler:

Code:
<?
class Telefony extends Controller
{
   function Telefony()
   {
    parent::Controller();


      $this->_container = $this->config->item('FAL_telefony_dir').'tel/index';
   }
    function acl()
    {
        $this->freakauth_light->check();

        $data['heading'] = 'Przerażające';
        $data['page'] = $this->config->item('FAL_telefony_dir').'tel/telefony_komorki_view';
        $this->load->vars($data);
        $this->load->view($this->_container);
    }

when I calling acl() function, program show me login form.
after logging program redirect me to administrative panel?

Whats going on?
I want to see a template telefony_komorki_view.php

I have declared FAL_telefony_dir instead FAL_template_dir in file
config/freakauth_light.php

"sapienti sat"


how to redirect users to thier accounts in freakauth ??????????? - El Forum - 09-24-2009

[eluser]piker[/eluser]
Never mind. Variable FAL_telefony_dir in config.php points to a wrong folder.

Don't load a session library in controler !