Welcome Guest, Not a member yet? Register   Sign In
How do I fix this Header Problem ?
#3

[eluser]PhilTem[/eluser]
Do you have any white-spaces at the very top of your files? This might be one reason, since I don't think that there is an actual error on line 185 of Exceptions.php.

Oh, and by the way: You may want to initiate the $data array before populating it with data like so

Code:
else{                 // GOES TO 'VIEW CART' AND SHOWS CONTENTS OF CART
  
  $data = array();
  
  $data['title'] = "MY SITE | Shopping Cart";
  if (count($_SESSION['cart'])){
   $data['main'] = 'shoppingcart';
   $data['location'] = $this->MCustomer->GetCustomerPickupLocation(); // This delivers a full text version of the location not an ID //  
   $data['deliverydates'] = $this->MPickup->GetLocationDates($data['location']);
   $data['navlist'] = $this->MCats->getCategoriesNav();
   $this->load->vars($data);
   $this->load->view('template');
  }else{
   redirect('welcome/index','refresh');
  }
}


Messages In This Thread
How do I fix this Header Problem ? - by El Forum - 06-26-2012, 10:23 AM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 07:03 AM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 07:12 AM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 10:13 AM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 12:17 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 12:36 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 01:45 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 02:01 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 02:04 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 02:18 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 02:23 PM
How do I fix this Header Problem ? - by El Forum - 06-27-2012, 09:05 PM



Theme © iAndrew 2016 - Forum software by © MyBB