Welcome Guest, Not a member yet? Register   Sign In
Error in page with Chrome but not with Firefox or IE
#1

[eluser]vincej[/eluser]
This one is weird - I get the following error with Chrome 35, but not with IE 11 or Firefox 29:

Quote:Fatal error: Call to a member function num_rows() on a non-object in /home/countr70/public_html/application/models/mcustomer.php on line 433

I know what the error means. It means that the query has not found any rows.

It refers to this code:

Code:
function GetCustomerPickupLocation($tel_customerid) {
     $sql ="
  select `location`,`id`,`locationid`
  from locations,customer
  where `locationid` = customer.deliveryid
  and customer.id = $tel_customerid;";
  $Q = $this->db->query($sql);
  if ($Q->num_rows() > 0){                       // line 433
        $row = $Q->row();
     return $row->location;
   }
     }

When I check the $tel_customerid with die() I get a bizaar value:

percent three C ( Sorry this site refuses to allow me to enter it lterally )

which of course causes the query to fail. I do not know what or wher this value comes from. It should be a url segment value.

If it is relevant, I recently upgraded to 2.2. Also I recently added SSL to the site.

My question is why would it give an error in Chrome but not in IE and Firefox.

Mnay thanks !


Messages In This Thread
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-23-2014, 03:33 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-23-2014, 04:58 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-23-2014, 10:59 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 07:06 AM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 07:37 AM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 08:55 AM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 12:26 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 01:53 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 02:10 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-24-2014, 11:21 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-25-2014, 12:50 AM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-25-2014, 09:21 AM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-25-2014, 02:14 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-25-2014, 02:59 PM
Error in page with Chrome but not with Firefox or IE - by El Forum - 06-25-2014, 06:12 PM



Theme © iAndrew 2016 - Forum software by © MyBB