Welcome Guest, Not a member yet? Register   Sign In
CI total newbie topic
#12

[eluser]keevitaja[/eluser]
controllers/admin.php
Code:
<?php
class Admin extends Controller {
  function index() {
    echo $this->session->userdata['session_id'];
  }
  
  function login() {
    $this->load->library('simple_auth');
    $this->load->view('login');
  }
}

libraries/simple_auth.php
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Simple_auth {
  function __construct() {
    $this->ci =& get_instance();
    $this->ci->load->library('database');
  }
}

http://localhost/site/index.php/admin/login
Quote:An Error Was Encountered

Unable to load the requested class: database

what am i doing wrong? other libraries, like email, do not give the error!


Messages In This Thread
CI total newbie topic - by El Forum - 08-26-2010, 08:56 AM
CI total newbie topic - by El Forum - 08-26-2010, 09:38 AM
CI total newbie topic - by El Forum - 08-26-2010, 09:42 AM
CI total newbie topic - by El Forum - 08-26-2010, 02:14 PM
CI total newbie topic - by El Forum - 08-26-2010, 02:55 PM
CI total newbie topic - by El Forum - 08-26-2010, 05:29 PM
CI total newbie topic - by El Forum - 08-26-2010, 06:08 PM
CI total newbie topic - by El Forum - 08-26-2010, 08:50 PM
CI total newbie topic - by El Forum - 08-26-2010, 08:51 PM
CI total newbie topic - by El Forum - 08-27-2010, 02:05 AM
CI total newbie topic - by El Forum - 08-27-2010, 07:28 AM
CI total newbie topic - by El Forum - 08-28-2010, 02:25 AM
CI total newbie topic - by El Forum - 08-28-2010, 02:39 AM
CI total newbie topic - by El Forum - 08-28-2010, 04:59 AM
CI total newbie topic - by El Forum - 08-28-2010, 02:47 PM
CI total newbie topic - by El Forum - 08-28-2010, 02:53 PM
CI total newbie topic - by El Forum - 08-29-2010, 06:02 AM
CI total newbie topic - by El Forum - 08-29-2010, 03:27 PM
CI total newbie topic - by El Forum - 08-30-2010, 02:08 AM
CI total newbie topic - by El Forum - 08-30-2010, 03:00 AM
CI total newbie topic - by El Forum - 08-30-2010, 07:09 AM
CI total newbie topic - by El Forum - 08-31-2010, 02:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB