I am using xcart
4.7. After removing a manufacturer, all products renamed as restored products and all details are corrupted. I tried to database integrity checking but no result.
Asked
Active
Viewed 58 times
0

Ahmed Ashour
- 5,179
- 10
- 35
- 56

sarath s rajendran
- 398
- 4
- 19
-
How many languages do you use ? – Ildar Amankulov Feb 16 '17 at 11:34
-
currently only english – sarath s rajendran Feb 16 '17 at 13:24
-
Which exact X-Cart version do you use ? – Ildar Amankulov Feb 16 '17 at 15:19
-
x-cart-4.7.5platinum – sarath s rajendran Feb 17 '17 at 05:26
-
Do you have any errors on your var/log folder ? Is it possible to check the result for these queries SELECT name,value FROM xcart_config WHERE name LIKE '%default_%_language%'; SHOW tables LIKE 'xcart_products_lng%'; – Ildar Amankulov Feb 17 '17 at 13:24
1 Answers
1
Thank you, Sarath S Rajendran, for the bug localization.
Fixed in X-Cart 4.7.8. Custom code hasn't to call func_delete_product() without params.
Wrong calls
func_delete_product();
func_delete_product(0);
func_delete_product('');
func_delete_product(null);
Correct calls
func_delete_product(3123);
func_delete_product(3123,false);
func_delete_product(0,false,true);

Ildar Amankulov
- 526
- 4
- 19