Jump to content

Problem: cannot add a product


Recommended Posts

Hello,

 

I have setup prestashop with a theme I bought. The theme looks nice and works accept in BO I get the most strange messages:

 

  • Bad SQL query
    Unknown column 'image_shop.id_product' in 'on clause'

 

And furthermore, i cannot add a product. Then I get this message:

 

An error occurred while creating an object. product

 

I am using the lastest version of prestashop.

 

I have searched but can't fine any answers.

 

Anyone here knows?

 

Your help will be most appreciated.

 

UPDATE:

I just set debug on and this occurs:

 

Unknown column 'product_attribute_shop.id_product' in 'on clause'
 

SELECT p.*, product_shop.*, stock.out_of_stock, IFNULL(stock.quantity, 0) AS quantity, IFNULL(product_attribute_shop.id_product_attribute, 0) AS id_product_attribute,
                    product_attribute_shop.minimal_quantity AS product_attribute_minimal_quantity, pl.`description`, pl.`description_short`, pl.`available_now`,
                    pl.`available_later`, pl.`link_rewrite`, pl.`meta_description`, pl.`meta_keywords`, pl.`meta_title`, pl.`name`, image_shop.`id_image` id_image,
                    il.`legend` as legend, m.`name` AS manufacturer_name, cl.`name` AS category_default,
                    DATEDIFF(product_shop.`date_add`, DATE_SUB("2015-08-01 00:00:00",
                    INTERVAL 30 DAY)) > 0 AS new, product_shop.price AS orderprice
                FROM `ps_category_product` cp
                LEFT JOIN `ps_product` p
                    ON p.`id_product` = cp.`id_product`
                 INNER JOIN ps_product_shop product_shop
        ON (product_shop.id_product = p.id_product AND product_shop.id_shop = 1) LEFT JOIN `ps_product_attribute_shop` product_attribute_shop
                ON (p.`id_product` = product_attribute_shop.`id_product` AND product_attribute_shop.`default_on` = 1 AND product_attribute_shop.id_shop=1)
                 LEFT JOIN ps_stock_available stock
            ON (stock.id_product = p.id_product AND stock.id_product_attribute = 0 AND stock.id_shop = 1 AND stock.id_shop_group = 0 )
                LEFT JOIN `ps_category_lang` cl
                    ON (product_shop.`id_category_default` = cl.`id_category`
                    AND cl.`id_lang` = 1 AND cl.id_shop = 1 )
                LEFT JOIN `ps_product_lang` pl
                    ON (p.`id_product` = pl.`id_product`
                    AND pl.`id_lang` = 1 AND pl.id_shop = 1 )
                LEFT JOIN `ps_image_shop` image_shop
                    ON (image_shop.`id_product` = p.`id_product` AND image_shop.cover=1 AND image_shop.id_shop=1)
                LEFT JOIN `ps_image_lang` il
                    ON (image_shop.`id_image` = il.`id_image`
                    AND il.`id_lang` = 1)
                LEFT JOIN `ps_manufacturer` m
                    ON m.`id_manufacturer` = p.`id_manufacturer`
                WHERE product_shop.`id_shop` = 1
                    AND cp.`id_category` = 2 AND product_shop.`active` = 1 AND product_shop.`visibility` IN ("both", "catalog") GROUP BY cp.id_product ORDER BY cp.`position` ASC
            LIMIT 0,8

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

760.             WebserviceRequest::getInstance()->setError(500, '
 '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97);
761.         }
762.         elseif (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS'))
763.         {
764.             if ($sql)
765.                 throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>');
766.
767.             throw new PrestaShopDatabaseException($this->getMsgError());
768.         }
769.     }
770.
Edited by Selmak (see edit history)
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...