Yes I have added links in the other languages and created categories for each of the languages. Everything works fine. It is only when I go to Approve the link that the error comes up.
So the link shows up but can not be approved. Also the links are different for each language so there is no mix up between them.
Tassos
Try uploading the security patch from this thread and see if that corrects the problem.
The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan
Just tried running the update_links_manager.sql but got the following error. Please advise. Thanks.
1054 Unknown column 'links_status.links_status_id' in 'where clause'
in:
[DELETE FROM zen_links_status WHERE links_status.links_status_id = 3;]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan
I'm assuming that your additional language ID's are as follows:
2
3
4
5
6
if so then run the following sql statement and see if that corrects the problem.
copy and paste the following in admin -> tools -> install sql patches (and click the send button)
INSERT INTO `links_status` VALUES (1, 2, 'Pending');
INSERT INTO `links_status` VALUES (2, 2, 'Approved');
INSERT INTO `links_status` VALUES (1, 3, 'Pending');
INSERT INTO `links_status` VALUES (2, 3, 'Approved');
INSERT INTO `links_status` VALUES (1, 4, 'Pending');
INSERT INTO `links_status` VALUES (2, 4, 'Approved');
INSERT INTO `links_status` VALUES (1, 5, 'Pending');
INSERT INTO `links_status` VALUES (2, 5, 'Approved');
INSERT INTO `links_status` VALUES (1, 6, 'Pending');
INSERT INTO `links_status` VALUES (2, 6, 'Approved');
Hi,
I don't think I have additional language ID's... English is the only language installed. Is it safe to run that script? If yes, do I also need to run update_links_manager.sql again?
The Team Behind DealByEthan.com | Curating unique finds for a discerning community. Committed to a seamless and inspiring shopping experience. Connect with us: https://linktr.ee/dealbyethan