Jump to content

[PrestaShopDatabaseException]


Recommended Posts

[PrestaShopDatabaseException]

Table 'royalzone.ps_smart_blog_imagetype' doesn't exist
 

                                    SELECT * FROM `ps_smart_blog_imagetype` where active = 1


at line 769 in file classes/db/Db.php

 

764.         if ($webservice_call && $errno) {
765.             $dbg = debug_backtrace();
766.             WebserviceRequest::getInstance()->setError(500, '[SQL Error] ' . $this->getMsgError() . '. From ' . (isset($dbg[3]['class']) ? $dbg[3]['class'] : '') . '->' . $dbg[3]['function'] . '() Query was : ' . $sql, 97);
767.         } elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) {
768.             if ($sql) {
769.                 throw new PrestaShopDatabaseException($this->getMsgError() . '<br /><br /><pre>' . $sql . '</pre>');
770.             }
771. 
772.             throw new PrestaShopDatabaseException($this->getMsgError());
773.         }
774.     }

 

NEED HELP PLEASE

Link to comment
Share on other sites

As the error says the table " ps_smart_blog_imagetype " cannot be find in your MYSQL database.

You will need to add the table (see which module require this and reset it)
You could also delete the module and re-install it so the database tables are re-created.

If you dont use the module you could just remove it.

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...