Pagina 1 di 1
ERRORE DIVISION BY ZERO
Inviato: 13/10/2007, 21:59
da oversize
Re: ERRORE DIVISION BY ZERO
Inviato: 14/10/2007, 3:15
da Simona67
Ciao
e' un problema del php5 lo risolvi in questa maniera:
Line 67 in catalog/includes/classes/split_page_results.php must be changed from:
Codice: Seleziona tutto
$this->sql_query .= " limit " . $offset . ", " . $this->number_of_rows_per_page;
to:
Codice: Seleziona tutto
$this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page;
Line 38 in catalog/admin/includes/classes/split_page_results.php must be changed from:
Codice: Seleziona tutto
$sql_query .= " limit " . $offset . ", " . $max_rows_per_page;
to:
Codice: Seleziona tutto
$sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page;
Inviato: 14/10/2007, 11:44
da oversize
catalog/includes/classes/split_page_results.php
$this->sql_query .= " limit " . max($offset, 0) . ", " . $this->number_of_rows_per_page;
admin/includes/classes/split_page_results.php
$sql_query .= " limit " . max($offset, 0) . ", " . $max_rows_per_page;
credo che i miei file siano gia settati in quel modo ,queste sopra sono i codici che ho nei relativi filie............