freestyleweb Posted July 4, 2016 Share Posted July 4, 2016 Buongiorno , ho questo tipo di problema Ho un database molto grande stiamo su 44498 prodotti attivi, il cerca del sito appena viene inserita una parola mostra la pagina bianca, non riesce, da un errore di memoria. Ho pensato di limitare la query del cerca tipo dagli un limite di prodotti dove deve cercare, dove posso farlo? il cerca è quello di default di prestashop potete aiutarmi grazie... Link to comment Share on other sites More sharing options...
freestyleweb Posted July 4, 2016 Author Share Posted July 4, 2016 Ho messo display errore on e esce questo: Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 262144 bytes) in /home2/public_html/classes/db/DbPDO.php on line 174 corrispondente a questa linea protected function getAll($result = false) { if (!$result) { $result = $this->result; } if (!is_object($result)) { return false; } return $result->fetchAll(PDO::FETCH_ASSOC); } com posso risolvere? Link to comment Share on other sites More sharing options...
Giorgio M. Posted July 4, 2016 Share Posted July 4, 2016 Semplicemente devi passare ad una soluzione di hosting superiore, valuta una VPS di buon livello o un dedicato Link to comment Share on other sites More sharing options...
freestyleweb Posted July 4, 2016 Author Share Posted July 4, 2016 (edited) azz , in altro modo non si può risolvere? se limitassi la ricerca? mi spiego se ala query del search gli dicessi di cercare solo nei primi 5000 prodotti? Edited July 4, 2016 by freestyleweb (see edit history) Link to comment Share on other sites More sharing options...
freestyleweb Posted July 4, 2016 Author Share Posted July 4, 2016 risolto cambiamo la query : la line 238 del file contenuto in classes/Search.php, questa: $sql = 'SELECT cp.`id_product` sostituita con questa: $sql = 'SELECT DISTINCT cp.`id_product` 1 Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now