Page 3 of 9 FirstFirst 12345 ... LastLast
Results 21 to 30 of 85
  1. #21
    Join Date
    Jun 2007
    Location
    Cymru
    Posts
    124
    Plugin Contributions
    0

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Hi, where exactly is the information for the News items stored? I need to change the Article Date(s): on a few of the news items. I cannot do this via backend, so I tried searching the database but no luck. It's probably 'news_last_modified' that I need to change for the articles, but where is this info stored? Thanks.

  2. #22
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: News Box Manager v2.0.0 [Support Thread]

    A news article has two components:
    1. The non-language components, like dates and status, are stored in the box_news table
    2. The language-specific component(s), i.e. an article's title and content, are stored in the box_news_contents table (using the article's ID and the associated language ID as the "key").

    The "Article Date(s)" section on the storefront displays an article's start_date (and, if defined, the associated end_date) ... so those values should be changeable via the admin panel.

  3. #23
    Join Date
    Jun 2007
    Location
    Cymru
    Posts
    124
    Plugin Contributions
    0

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Thank you. On my site the value in news_added_date was used. I've edited those dates to the correct opnes now in the database and all is fine. Thanks again.

  4. #24
    Join Date
    May 2007
    Location
    Italy
    Posts
    438
    Plugin Contributions
    0

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Thanks for this great plugin, I needed it!!!

  5. #25
    Join Date
    May 2009
    Posts
    155
    Plugin Contributions
    0

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Sorry cant delete post but problem solved
    Attached Images Attached Images  
    Last edited by PudzPud; 27 Nov 2017 at 03:06 AM.

  6. #26
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Quote Originally Posted by lat9 View Post
    I've created a GitHub issue (https://github.com/lat9/news_box_manager/issues/5) for your request to add meta-tag support (great idea, by the way). I'll post back when the change has been made.
    I've just submitted v2.2.0 of the News Box Manager to the Zen Cart plugins for review. That version now has the capability to define article-specific meta-tags and also corrects the database values stored for the various date fields (required for more recent versions of MySQL).

    I'll post back here once it's approved.

  7. #27
    Join Date
    Jul 2011
    Posts
    22
    Plugin Contributions
    1

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Hi,
    Just tried installing the latest version 2.2.0 with the added metadata.
    Installation was very simple, just had to edit my tpl_index_default file. However, there apears to be a problem with the auto install. The result was; that after you have created a news article then press update, you get a white page with an error message at the top of the page.

    After searching the logs, I found that the installer (in my case) didn't add the meta tag columns to the (box_news_content) database table.

    I made many backups, exported a sql of the table then added the missing headers. Part the of sql now looks like the version below. The original stopped at 'news_content` text NOT NULL':

    DROP TABLE IF EXISTS `box_news_content`;
    CREATE TABLE `box_news_content` (
    `box_news_id` int(11) NOT NULL DEFAULT '0',
    `languages_id` int(11) NOT NULL DEFAULT '1',
    `news_title` varchar(255) NOT NULL DEFAULT '',
    `news_content` text NOT NULL,
    `news_metatags_title` text NOT NULL,
    `news_metatags_keywords` text NOT NULL,
    `news_metatags_description` text NOT NULL
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    The application now works perfectly. Just wondered if all other users are having the same problem.
    I'm not a professional programmer and have limited knowlege on server databases.

    If it helps, I'm running on zen-cart 1.5.5f

  8. #28
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Thanks for the report, I'll give that a look a bit later.

    Update: It's an issue with an original-install, not an upgrade.

  9. #29
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,474
    Plugin Contributions
    88

    Default Re: News Box Manager v2.0.0 [Support Thread]


  10. #30
    Join Date
    Jul 2011
    Posts
    22
    Plugin Contributions
    1

    Default Re: News Box Manager v2.0.0 [Support Thread]

    Thanks for looking into the issue so soon.
    I did a bit of tinkering myself. As mine was a first install, I obviously didn't know how you intended to install the extra fields.

    According to your supplied instructions, it looks like the user doesn't need to add the metatags especially if you're lazy like me! I found that my first effort crashed if I didn't add them.

    After my attemp at fixing the problem, I found that I didn't need the extra 'NOT NULL's in the script. It now looks like this:

    DROP TABLE IF EXISTS `box_news_content`;
    CREATE TABLE `box_news_content` (
    `box_news_id` int(11) NOT NULL DEFAULT '0',
    `languages_id` int(11) NOT NULL DEFAULT '1',
    `news_title` varchar(255) NOT NULL DEFAULT '',
    `news_content` text NOT NULL,
    `news_metatags_title` text,
    `news_metatags_keywords` text,
    `news_metatags_description` text
    ) ENGINE=MyISAM DEFAULT CHARSET=utf8;

    I can now save the news letter with or with out them.

    I'm only using it on my test site at the moment so am looking forward to your next fixed release. It's a great app!

 

 
Page 3 of 9 FirstFirst 12345 ... LastLast

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 7 Mar 2023, 03:40 PM
  2. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  3. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  4. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  5. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR