Page 40 of 46 FirstFirst ... 303839404142 ... LastLast
Results 391 to 400 of 451
  1. #391
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    red flag Why there are 2 "News & Article Management" under the configuration?

    After I installed the module, I found there are two "News & Article Management" under the configuration. How can I get rid of one? The site is www.best4future.com

    Thank you!

  2. #392
    Join Date
    Jun 2006
    Posts
    403
    Plugin Contributions
    0

    help question Re: News & Article Management

    I installed the News Ticker Sidebox (scrolling). But the sidebox title link is http://www.best4future.com/news/archive. The correct link should http://www.best4future.com/news_archive. How to edit it to the right link? Thanks!

    site: www.best4future.com

  3. #393
    Join Date
    Sep 2008
    Posts
    27
    Plugin Contributions
    0

    Default Re: News & Article Management

    hi there
    i have tried and tried to get this news feed working and looking the way it should but i keep getting the following result, where the news feed site box the text is all going outside the box, it is scrolling to the top then the text does not scroll back round for a lengthy period. i have seen the link on http://www.truwater.com.au/news
    it runs really smooth and look good, any ideas?

    kind regards

    rob

  4. #394
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: News & Article Management

    This mod is installed on a site with an SSL certificate, and the whole site is secure except the news page. I've gone through every article and there are none with http links. If only one article is enabled, the page displays fine and shows that article and it is secure. If more then one article is enabled, the page then shows the links to the various articles and is no longer secure. This is the page link: https://www.ellebelleuk.com/index.php?main_page=news

    Does anyone know how I can fix this?

    Thanks!
    Danielle

  5. #395
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: News & Article Management

    Quote Originally Posted by Danielle View Post
    This mod is installed on a site with an SSL certificate, and the whole site is secure except the news page. I've gone through every article and there are none with http links. If only one article is enabled, the page displays fine and shows that article and it is secure. If more then one article is enabled, the page then shows the links to the various articles and is no longer secure. This is the page link: https://www.ellebelleuk.com/index.php?main_page=news

    Does anyone know how I can fix this?

    Thanks!
    I have narrowed this down to this bit of code in includes/pages/news/main_template_vars.php:

    if ($date_selector_array[1]['date']) {
    $news_footer = $db->Execute("select n.article_id, nt.news_article_name from " . TABLE_NEWS_ARTICLES . " n left join " . TABLE_NEWS_ARTICLES_TEXT . " nt on n.article_id = nt.article_id and nt.language_id = '" . (int)$_SESSION['languages_id'] . "' where n.news_status = '1' and n.news_date_published = '" . $date_selector_array[1]['date'] . "' order by n.sort_order");
    if ($news_footer->RecordCount() > 0) {
    $news_footer_array = array();
    while (!$news_footer->EOF) {
    $news_footer_array[] = array(
    'link' => zen_href_link(FILENAME_NEWS_ARTICLE, 'article_id=' . $news_footer->fields['article_id']),
    'text' => stripslashes($news_footer->fields['news_article_name']),
    );

    $news_footer->MoveNext();
    }

    $newsFooterDate = zen_date_long($date_selector_array[1]['date']);
    $newsFooterDateURL = zen_href_link(FILENAME_NEWS_INDEX, 'date=' . substr($date_selector_array[1]['date'], 0, 10));
    $newsFooter = $news_footer_array;
    }
    }

    if ($date_selector_array[2]['date']) {
    $recent_footer_array = array();
    for ($i=2; $i<sizeof($date_selector_array); $i++) {
    $recent_footer_array[] = array(
    'link' => zen_href_link(FILENAME_NEWS_INDEX, 'date=' . substr($date_selector_array[$i]['date'], 0, 10)),
    'text' => zen_date_long($date_selector_array[$i]['date']),
    );
    }

    $newsRecentFooter = $recent_footer_array;
    }
    I have tried playing around with that code but I have no idea why it's affecting the SSL. If I remove that piece of code from the file, there are no past news links at the bottom and the page displays securely.
    Danielle

  6. #396
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: News & Article Management

    Ahhh figured it out, the web designer left image links in the news css file that were hard-coded to the web designer's website. Once I fixed those, the security warnings disappeared!
    Danielle

  7. #397
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: News & Article Management

    I had this mod working with admin area. But went back to add new article and the content section is missing. It has the words to the left, but no box to input and no header with bold, fonts, etc. I do have it on the summary part.

    Does anyone have any idea how to fix?

    Thanks, Kim

  8. #398
    Join Date
    Apr 2008
    Location
    Flint, Michigan
    Posts
    687
    Plugin Contributions
    0

    Default Re: News & Article Management

    Quote Originally Posted by kburner View Post
    I had this mod working with admin area. But went back to add new article and the content section is missing. It has the words to the left, but no box to input and no header with bold, fonts, etc. I do have it on the summary part.

    Does anyone have any idea how to fix?

    Thanks, Kim
    Would it be with the sql? Maybe I missed something when I loaded sql?

  9. #399
    Join Date
    Feb 2007
    Posts
    1,704
    Plugin Contributions
    0

    Default Re: News & Article Management

    has this mod now ceased??

    The dream scope website with the install instructions etc is now offline and all the support post as listed on page one have all be cloded and deleted by zencart admins.

  10. #400
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: News & Article Management

    We use it on client sites. But I've just realised that we went back and forked it from a point before that guy started hard-coding links to his own site in the mod.

    I'll see if we can split out the code that we use, I think there may have been some other fixes in there too and update the mod.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

 

 
Page 40 of 46 FirstFirst ... 303839404142 ... LastLast

Similar Threads

  1. News & Article Management
    By akumi in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 13 May 2008, 03:27 PM
  2. Regarding News & Article Management
    By akumi in forum All Other Contributions/Addons
    Replies: 2
    Last Post: 12 May 2008, 05:27 PM
  3. News & Article Management- couple small problems
    By chufty bill in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 26 Oct 2006, 09:53 PM

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