Code: Select all
Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26Notice: Undefined index: bottom in /home2/klassyk1/public_html/catalog/controller/common/footer.php on line 26
Code: Select all
$this->load->model('catalog/information');
$this->data['informations'] = array();
foreach ($this->model_catalog_information->getInformations() as $result) {
if ($result['bottom']) {
$this->data['informations'][] = array(
'title' => $result['title'],
'href' => $this->url->link('information/information', 'information_id=' . $result['information_id'])
);
}
}
Code: Select all
Notice: Error: Table 'klassyk1_pnc1.oc_customer_group_description' doesn't exist
Error No: 1146
SELECT * FROM oc_customer_group cg LEFT JOIN oc_customer_group_description cgd ON (cg.customer_group_id = cgd.customer_group_id) WHERE cgd.language_id = '1' ORDER BY cgd.name ASC in /home2/klassyk1/public_html/system/database/mysql.php on line 49
This seems to be the code are from the php file it is referring to
Code: Select all
public function query($sql) {
$resource = mysql_query($sql, $this->link);
if ($resource) {
if (is_resource($resource)) {
$i = 0;
$data = array();
while ($result = mysql_fetch_assoc($resource)) {
$data[$i] = $result;
$i++;
}
mysql_free_result($resource);
$query = new stdClass();
$query->row = isset($data[0]) ? $data[0] : array();
$query->rows = $data;
$query->num_rows = $i;
unset($data);
return $query;
} else {
return true;
}
} else {
trigger_error('Error: ' . mysql_error($this->link) . '<br />Error No: ' . mysql_errno($this->link) . '<br />' . $sql);
exit();
}
}