Search the Community
Showing results for tags '7.1.5'.
-
I recently ran into a bizarre issue. I have a product, with no combinations, but it has three attributes and one custom feature. The product has been in the system for a while, and I've edited the price, description, and photos several times already. Each time, everything went smoothy. This time when I saved, the custom feature that I had configured duplicated itself thousands of times. Within a few moments, the page displayed everyone's favorite 500 Internal Server Error. Every time I tried to access that page, I got the 500 Internal Server Error. I tried all the usual tricks for debugging PrestaShop, and the only thing I had were memory warnings in the log file stating that the application was asking for ridiculous amounts of memory and dying out. So, knowing that my server could handle just about anything, I temporarily set ini_set('memory_limit', '-1'); and set_time_limit(0); Then, I clicked on the product in the dashsboard, sat back and waited about 5 minutes. When the page FINALLY rendered, that's when I saw the 2300 custom features. To "fix" the product, I used some simple queries to remove the custom features from the following tables; ps_feature_value, ps_feature_product and ps_feature_lang. The custom feature was repeated 2300 times in each table, and thus was a very easily identified pattern in the DB. Having no luck finding other posts in the forums about this, maybe my story would help others.