I just installed Sequenced Attributes and I have this error-
Code:
1146
Table 'jalansty_zc1.products_with_attributes_stock' doesn't exist
in:
[SELECT quantity FROM products_with_attributes_stock AS a LEFT JOIN
products_attributes AS b ON (b.options_id=2 AND b.options_values_id=19)
WHERE a.products_id = '5' AND a.stock_attributes = b.products_attributes_id
AND a.quantity > 0 order by b.products_options_sort_order]
I noticed that in Modify "includes/database_tables.php" by adding...
Code:
define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');
there is no DB_PREFIX, so I tried changing it to
Code:
define('TABLE_PRODUCTS_STOCK', DB_PREFIX .'products_with_attributes_stock');
That seemed to fix it.
Bookmarks