Jump to content

Backoffice - Products Page Not Showing


Recommended Posts

Hello,

 

I was installing some models at my store, when suddenly I went to (Categories > Products) and I got this error:

  • Bad SQL query
    Unknown column 'invetrina' in 'order clause'

 

I have turned on the bug report thing and I got this message from the system: 

store link: http://store.hobbychan.com

 

[PrestaShopDatabaseException]

Unknown column 'invetrina' in 'order clause'
 

            SELECT SQL_CALC_FOUND_ROWS
            a.`id_product`,b.name as name,`reference`,a.price as price,sa.active as active
            , shop.name as shopname, a.id_shop_default, MAX(image_shop.id_image) id_image, cl.name `name_category`, sa.`price`, 0 AS price_final, a.`is_virtual`, pd.`nb_downloadable`, sav.`quantity` as sav_quantity, sa.`active`, IF(sav.`quantity`<=0, 1, 0) badge_danger
            FROM `rbh_product` a
            LEFT JOIN `rbh_product_lang` b ON (b.`id_product` = a.`id_product` AND b.`id_lang` = 1 AND b.`id_shop` = 1)
            
        LEFT JOIN `rbh_image` i ON (i.`id_product` = a.`id_product`)
        LEFT JOIN `rbh_stock_available` sav ON (sav.`id_product` = a.`id_product` AND sav.`id_product_attribute` = 0
         AND sav.id_shop = 1 AND sav.id_shop_group = 0 ) JOIN `rbh_product_shop` sa ON (a.`id_product` = sa.`id_product` AND sa.id_shop = a.id_shop_default)
                LEFT JOIN `rbh_category_lang` cl ON (sa.`id_category_default` = cl.`id_category` AND b.`id_lang` = cl.`id_lang` AND cl.id_shop = a.id_shop_default)
                LEFT JOIN `rbh_shop` shop ON (shop.id_shop = a.id_shop_default)
                LEFT JOIN `rbh_image_shop` image_shop ON (image_shop.`id_image` = i.`id_image` AND image_shop.`cover` = 1 AND image_shop.id_shop = a.id_shop_default)
                LEFT JOIN `rbh_product_download` pd ON (pd.`id_product` = a.`id_product`)
            
            WHERE 1
            GROUP BY sa.id_product
            
            ORDER BY `invetrina` desc LIMIT 0,50

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

 

641.             WebserviceRequest::getInstance()->setError(500, '
 '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
642.         }
643.         elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
644.         {
645.             if ($sql)
646.                 throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
647.             throw new PrestaShopDatabaseException($this->getMsgError());
648.         }
649.     }
650.
651.     /**
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...