Page 1 of 2 12 LastLast
Results 1 to 10 of 451

Hybrid View

  1. #1
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: News & Article Management

    Well, apparently something is wrong, this is my patch:

    PHP Code:
    # News Scroller Config
    INSERT INTO configuration VALUES ('''News Sidebox Scroller Days''NEWS_SCROLLER_NUMBER_OF_DAYS''7''The news sidebox scroller will only contain news from the past xx news days''2504''100'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Height''NEWS_SCROLLER_HEIGHT''250''The height of the news sidebox scroller box''2504''101'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Amount''NEWS_SCROLLER_AMOUNT''2''The amount to scroll by''2504''102'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Delay''NEWS_SCROLLER_DELAY''100''The amount of delay when scrolling''2504''103'NULLnow(), NULLNULL);
    UPDATE configurationconfiguration_group SET configuration.configuration_group_id configuration_group.configuration_group_id WHERE configuration_group.configuration_group_title 'News & Articles Management' AND configuration.configuration_group_id '2504'
    but it stops while processing.
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  2. #2
    Join Date
    Nov 2003
    Posts
    783
    Plugin Contributions
    2

    Default Re: News & Article Management

    That Update statement should be commented out. It doesn't work with the Zen Cart SQL Patch tool.

    The Select & Update statement after it should be the one that runs and it should read:
    Code:
    SELECT @group_id := configuration_group_id FROM configuration_group WHERE configuration_group_title = 'News & Articles Management';
    UPDATE configuration SET configuration_group_id = @group_id where configuration_group_id = '2504';
    If you've already run the INSERT INTO configuration VALUES ... statement, don't run it again. Just run what I've posted above.

  3. #3
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: News & Article Management

    B I N G O ! Thanks!
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  4. #4
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default News & Article Management



    its not working for me though... the scroller setting still wont appear where it should be!
    [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]

  5. #5
    Join Date
    Jun 2006
    Posts
    76
    Plugin Contributions
    0

    Default Re: News & Article Management

    Is this News and Articles module support multilanguage?

    If not, is there any code suggest to add for this function?

    Thanks.

  6. #6
    Join Date
    Apr 2006
    Location
    Labuan Island
    Posts
    361
    Plugin Contributions
    2

    Default News & Article Management

    Quote Originally Posted by icemanchai
    Is this News and Articles module support multilanguage?

    If not, is there any code suggest to add for this function?

    Thanks.
    yup, it is support multilanguage function... no special code required!
    [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]

  7. #7
    Join Date
    Aug 2005
    Location
    Trujillo Alto, Puerto Rico
    Posts
    1,550
    Plugin Contributions
    9

    Default Re: News & Article Management

    Is it supposed to go to the last article post when clicking on "Articles....more"? or is it supposed to go to to the archive? or....?

    How can I make the archive page to display the intro/summary for each article?
    IDEAS Girl
    IDEAS Creative Group
    = Your image... our business!

  8. #8
    Join Date
    Jun 2006
    Posts
    76
    Plugin Contributions
    0

    Default Re: News & Article Management

    Thanks Tajul_ashyqin. I want to clarify that:

    Does it mean I can input three different news interpretation for switching among three languages environment?

    Or you mean I can type in different language but only showed one kind of language whenever I switch the language environments?


    Thanks.

  9. #9
    Join Date
    Jun 2009
    Location
    Israel
    Posts
    161
    Plugin Contributions
    0

    Default Re: News & Article Management

    I'm in big trouble.

    I installed this contribution + the optional news scroller. It went fine except of the SQL patch of the scroller which isn't ending correctly, it only installed the sidebox but not the statements required for changing the height and such. Luckly, I found a solution for that earlier in this thread so that one is pretty much solved. ANYWAY, I have the FCK editor installed and it doesn't seem to work properly with the articles management so I changed back to HTML AREA and it works (still need to solve this tho). Thing is, before I figured it was the FCK editor causing a php error on the articles management, I went back and re-ran the SQL patches for the article management and now I have it appearing twice in the admin 'configuration' menu I found an uninstall SQL patch earlier in this thread but that doesn't work correctly so I'm in trouble. How can I totally remove Article management from the SQL so I can cleanly install it again?

  10. #10
    Join Date
    May 2006
    Posts
    170
    Plugin Contributions
    1

    Default Re: News & Article Management

    Quote Originally Posted by ideasgirl View Post
    Well, apparently something is wrong, this is my patch:

    PHP Code:
    # News Scroller Config
    INSERT INTO configuration VALUES ('''News Sidebox Scroller Days''NEWS_SCROLLER_NUMBER_OF_DAYS''7''The news sidebox scroller will only contain news from the past xx news days''2504''100'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Height''NEWS_SCROLLER_HEIGHT''250''The height of the news sidebox scroller box''2504''101'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Amount''NEWS_SCROLLER_AMOUNT''2''The amount to scroll by''2504''102'NULLnow(), NULLNULL),
                                     (
    '''News Sidebox Scroller Delay''NEWS_SCROLLER_DELAY''100''The amount of delay when scrolling''2504''103'NULLnow(), NULLNULL);
    UPDATE configurationconfiguration_group SET configuration.configuration_group_id configuration_group.configuration_group_id WHERE configuration_group.configuration_group_title 'News & Articles Management' AND configuration.configuration_group_id '2504'
    but it stops while processing.
    I had the same problem, for me the solution was to modify the UPDATE part of the query tio include the zen_ prefix. I did this in phpMyAdmin, but you could probably also do it useing the Admin->SQL Update option. The correct sql should be:
    Code:
    UPDATE zen_configuration, zen_configuration_group SET zen_configuration.configuration_group_id = zen_configuration_group.configuration_group_id WHERE zen_configuration_group.configuration_group_title = 'News & Articles Management' AND zen_configuration.configuration_group_id = '2504'
    PLEASE, backup your DB before you try it!

 

 
Page 1 of 2 12 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

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