Welcome Guest, Not a member yet? Register   Sign In
Can't get a view to load
#1

[eluser]OldRodKS[/eluser]
I am really new to CI, so I'm sure I am missing something really basic here... but I cannot get a view to load when I call a function directly from a URL.

I am working on a user registration system. The system sends an email to the user with an activation URL that looks like this:

Code:
http://localhost/ci_bannor/register/email_verification/6b84c572efd

Inside my register.php controller, I have a function called "email_verification" that is shown below:

Code:
public function email_verification() {
  $verifcode = $this->uri->segment(3);
  
  if ($verifcode == '') {  // no verification code - show error page
   $this->load->view("vVerifyError", $data);
  }

I put echo statements in here at various places to track down what's going on. $verifcode is getting the proper part of the URL like it should. When I have a code there, I can echo it out. When it's not there, it goes into the if block like it should, but it simply won't load the view. I don't get an error, it just doesn't load.

What am I doing wrong?


Messages In This Thread
Can't get a view to load - by El Forum - 07-19-2012, 02:10 PM
Can't get a view to load - by El Forum - 07-19-2012, 02:33 PM
Can't get a view to load - by El Forum - 07-19-2012, 02:37 PM
Can't get a view to load - by El Forum - 07-19-2012, 02:45 PM
Can't get a view to load - by El Forum - 07-19-2012, 02:50 PM
Can't get a view to load - by El Forum - 07-19-2012, 02:57 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:06 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:12 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:14 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:15 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:19 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:20 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:21 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:23 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:27 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:29 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:29 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:31 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:31 PM
Can't get a view to load - by El Forum - 07-19-2012, 03:36 PM



Theme © iAndrew 2016 - Forum software by © MyBB