Jump to content

Biała strona w ustawieniach seo


tokasmart

Recommended Posts

Spotkał się ktoś z problemem który powodował że pojawiała się biała strona po jakichkolwiek zmianach w ustawieniach seo?

 

Po wł debug'a mam poniższy komunikat:

[PrestaShopDatabaseException]

Table 'toka_afrodyzjaki.ps_smarty_lazy_cache' doesn't exist
 

TRUNCATE TABLE `ps_smarty_lazy_cache`
at line 791 in file classes/db/Db.php

 

786. if ($webservice_call && $errno) {
787. $dbg = debug_backtrace();
788. WebserviceRequest::getInstance()->setError(500, '
 '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
789. } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
790. if ($sql) {
791. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
792. }
793.
794. throw new PrestaShopDatabaseException($this->getMsgError());
795. }
796. }

 

Proszę o poradę bardziej doświadczonych co się mogło stać i jak to naprawić

Link to comment
Share on other sites


CREATE TABLE IF NOT EXISTS `ps_smarty_lazy_cache` (

`template_hash` varchar(32) NOT NULL DEFAULT '',

`cache_id` varchar(255) NOT NULL DEFAULT '',

`compile_id` varchar(32) NOT NULL DEFAULT '',

`filepath` varchar(255) NOT NULL DEFAULT '',

`last_update` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',

PRIMARY KEY (`template_hash`,`cache_id`,`compile_id`)

) ENGINE=InnoDB DEFAULT CHARSET=utf8;

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...