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

Hybrid View

  1. #1
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by dealbyethan.com View Post
    Hi,

    Just upgraded zen cart from v1.3.7 to v1.3.9c. Thinking to reinstalling links manager. When this is done, how do I import all the old links from the previous version of links manager to the latest version?
    The links are stored in the database. That being the case, you shouldn't have to reinstall links manager at all just upgrade to the most recent version.

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    Hi Clyde,

    PLEASEEEEE help as I am going crazy. I have just noticed that on a multilingual site the module breaks giving me the "Object of class queryFactoryResult could not be converted to string" in html_output.php

    Let me though explain:
    Zen Cart v1.38
    Link manager v3.5.2
    Latest Security patches applied
    Multi-lingual (6 languages)
    Links can be submitted no problem at all

    In Admin I can go in the English language and when I do in Edit the last drop down menu that allows to change the status works perfectly. I can select Approve and Update and everything is fine.

    When I change the language though to any of the other languages there is an empty drop down menu at the Edit page and if I click the Update get the queryFactoryResult error.

    I have tried the html_output_admin.zip updates in the earliest posts plus search the whole forum and tried every solution that I couldfind even if they were related to different modules. Nothing works.

    Any idea will greatly help

    Tassos
    Do you have any links that are in any of the 5 additional languages or only in English?

    link to your site?

  3. #3
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    Do you have any links that are in any of the 5 additional languages or only in English?

    link to your site?
    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

  4. #4
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by hrinfo View Post
    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.

  5. #5
    Join Date
    May 2008
    Posts
    97
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    Try uploading the security patch from this thread and see if that corrects the problem.
    Already had the patch installed but just in case downloaded again and reinstalled. No change.


    Tassos

  6. #6
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    The links are stored in the database. That being the case, you shouldn't have to reinstall links manager at all just upgrade to the most recent version.
    Hi

    The problem is I am not sure which previous version of links manager I am currently using. Is there a way to find out? or does it not matter? Thank you.
    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


  7. #7
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by dealbyethan.com View Post
    Hi

    The problem is I am not sure which previous version of links manager I am currently using. Is there a way to find out? or does it not matter? Thank you.
    Shouldn't make any difference.

    You're using ZC 1.3.9c

    Upgrade to the newest version of Links Manager (v3.5.3a).

  8. #8
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 Support Thread

    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


  9. #9
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by dealbyethan.com View Post
    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.
    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');

  10. #10
    Join Date
    Dec 2005
    Location
    Perth, Western Australia, Australia
    Posts
    781
    Plugin Contributions
    0

    red flag Re: Link Manager 3.0 Support Thread

    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


 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 PM
  2. v154 News Box Manager v2.0.0 [Support Thread]
    By lat9 in forum All Other Contributions/Addons
    Replies: 84
    Last Post: 19 Jan 2021, 04:17 PM
  3. Download File Manager Support Thread
    By balihr in forum All Other Contributions/Addons
    Replies: 24
    Last Post: 17 Aug 2017, 10:32 PM
  4. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  5. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM

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