EllisLab text mark
Advanced Search
     
Unable to load page
Posted: 27 October 2012 01:23 AM   [ Ignore ]
Joined: 2012-10-27
4 posts

Hi would I be able to have some understanding with this as I have come across this prob before. The controller is unable to show the page: $this->load->view(‘login’);  it is part of a login page:

it shows this error message:

An Error Was Encountered
Unable to load the requested file: site/login.php

and is apart of this function in the controller:

public function login_validation()
      {
      $this->load->library(‘form_validation’);
     
  $this->form_validation->set_rules(‘email’, ‘Email Address’, ‘trim|required|valid_email|xss_clean|callback_validate_credentials’);
  $this->form_validation->set_rules(‘password’, ‘Password’, ‘trim|required|md5|alpha_numeric|xss_clean’);
 
  if ($this->form_validation->run())
  {
  $this->session->set_userdata($data);
  redirect(‘site/members’);
  }
  else
  { //everything is good - process the form write data to database
  $this->load->view(‘login’);
  }
      }

would much appreciate some understanding, thank you Parahi

 
Posted: 27 October 2012 01:57 AM   [ Ignore ]   [ # 1 ]   [ Rating: 0 ]
Joined: 2012-10-27
4 posts

I am wondering wether there is something about views I do not understand as it appears alright to me. I am newbie to codeigniter.