mm, suddenly my news articles wont scroll as usual...![]()
[FONT=Comic Sans MS]"Whether you think you can, or you think you can't... YOU ARE RIGHT."[/FONT][FONT=Comic Sans MS]GOOD LUCK !!![/FONT]
heimskr75 - Please add the contrib to the downloads section so that it won't be lost again. Thanks!!
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
Done! The current zip now has 4 zip files in it
the main one 2 add-ons and the install instructions I put back together.
I would know also the informations about uninstall, in way to know if there'll be something wrong how to uninstall.
please I have to install the mod, but before I would to know hoe to uninstall later.
![]()
Simply undo the installation instructions in reverse order.
Just leave the SQL structure alone when uninstalling unless you're absolutely sure you know what you're doing.
thank you.
I do backup of database before install.
So can you tell me also how uninstall the sql patch?
Please.
So within today I install this mod I need.
Please
I say it because with another mod time ago I would to uninstall and I can't so I had to install a new clean version of zen cart in another folder, so this time I would to know before how to do.
Thank you very much in advance
![]()
There's your remove SQL code. I still say you can just LEAVE IT there since the database tables for the news don't interfere with anything and aren't referenced outside of the news script. But it's your call.Code:# Configuration DELETE from configuration_group WHERE configuration_key = DISPLAY_NEWS_SUMMARY; DELETE from configuration_group WHERE configuration_key = DISPLAY_NEWS_SUMMARY_DAYS; DELETE from configuration_group WHERE configuration_key = DISPLAY_NEWS_SUMMARY_LENGTH; DELETE from configuration_group WHERE configuration_key = NEWS_COMMENTS_REQUIRE_CUSTOMER; DELETE from configuration_group WHERE configuration_key = ENTRY_NEWS_NAME_MIN_LENGTH; DELETE from configuration_group WHERE configuration_key = ENTRY_NEWS_COMMENTS_MIN_LENGTH; DELETE from configuration_group WHERE configuration_key = NEWS_COMMENTS_EMAIL_ADMIN_NOTICE; DELETE from configuration_group_id WHERE configuration_group_title = "News & Articles Management"; # Table structure for table news_articles DROP TABLE IF EXISTS news_articles; # Table structure for table news_articles_text DROP TABLE IF EXISTS news_articles_text; # Table structure for table news_authors DROP TABLE IF EXISTS news_authors; # Table structure for table news_comments DROP TABLE IF EXISTS news_comments; # Table structure for table news_comments_description DROP TABLE IF EXISTS news_comments_description;
This all assumes you use the DEFAULT installation tables. If you changed your tables to something else... You have to modify the table names above to the appropriate ones.
Bookmarks