Page 178 of 199 FirstFirst ... 78128168176177178179180188 ... LastLast
Results 1,771 to 1,780 of 1988
  1. #1771
    Join Date
    May 2009
    Posts
    413
    Plugin Contributions
    0

    help question Re: Link Manager 3.0 Support Thread

    Hi Clyde,

    When I try to delete a category which has links in (in my case a 'Test Links' category I need to delete) via:

    admin>extras>Link Categories>Select Category To Delete Here>Delete Button>"Are you sure you want to delete this link category? Test Links WARNING: There are 2 links still linked to this category!">Click Delete Button again... this page shows up completely blank: myadminurl/link_categories.php?action=delete_confirm . The error I'm getting via debug is:

    [08-Oct-2010 16:50:58] PHP Fatal error: Cannot use object of type queryFactoryResult as array in /home/xxx/public_html/my_admin_name_here/link_categories.php on line 84

    I'm using Links Manager v3.5.3c with Zen Cart v1.3.9g

    Any ideas?

    Thanks

  2. #1772
    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 gaffettape View Post
    Hi Clyde,

    When I try to delete a category which has links in (in my case a 'Test Links' category I need to delete) via:

    admin>extras>Link Categories>Select Category To Delete Here>Delete Button>"Are you sure you want to delete this link category? Test Links WARNING: There are 2 links still linked to this category!">Click Delete Button again... this page shows up completely blank: myadminurl/link_categories.php?action=delete_confirm . The error I'm getting via debug is:

    [08-Oct-2010 16:50:58] PHP Fatal error: Cannot use object of type queryFactoryResult as array in /home/xxx/public_html/my_admin_name_here/link_categories.php on line 84

    I'm using Links Manager v3.5.3c with Zen Cart v1.3.9g

    Any ideas?

    Thanks
    Have you tried moving the 2 links to another category before deleting the category?

  3. #1773
    Join Date
    May 2009
    Posts
    413
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Yep that worked. So for future reference, does that mean I can't delete a category if it has links in it - I have to either move or delete the individual links first?

    Thanks.

  4. #1774
    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 gaffettape View Post
    Yep that worked. So for future reference, does that mean I can't delete a category if it has links in it - I have to either move or delete the individual links first?

    Thanks.
    Until I can check and correct the problem you describe(d), Yes, that would be the way to go.

  5. #1775
    Join Date
    May 2009
    Posts
    413
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    Until I can check and correct the problem you describe(d), Yes, that would be the way to go.
    Ok thanks for your help Clyde.

  6. #1776
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/YOUR_TEMPLATE/sideboxes/tpl_links_select.php

    add the url to your new page under the "view all links" section.
    Hi Clyde,


    I tried to add this link to my links sidebox and the side box disappeared.

    if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
    $content .= '<br /><a href="http://www.Free-Link-Exchange.com' .(FILENAME_FREE_LINK_EXCHANGE, '', 'NONSSL') . '">' . BOX_INFORMATION_FREE_LINK_EXCHANGE . '</a>';
    }

    am I doing it right.

  7. #1777
    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 weezee View Post
    Hi Clyde,


    I tried to add this link to my links sidebox and the side box disappeared.

    if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
    $content .= '<br /><a href="http://www.Free-Link-Exchange.com' .(FILENAME_FREE_LINK_EXCHANGE, '', 'NONSSL') . '">' . BOX_INFORMATION_FREE_LINK_EXCHANGE . '</a>';
    }

    am I doing it right.
    check your cache folder for any myDEBUG log files and see what (if any) error message are being generated.

  8. #1778
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    This is the error.



    PHP Parse error: syntax error, unexpected ',' in /home/content/w/e/e/weezee/html/includes/templates/cherry_zen/sideboxes/tpl_links_select.php on line 22

  9. #1779
    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 weezee View Post
    This is the error.



    PHP Parse error: syntax error, unexpected ',' in /home/content/w/e/e/weezee/html/includes/templates/cherry_zen/sideboxes/tpl_links_select.php on line 22
    try this:

    if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
    $content .= '<br /><a href="' . (FILENAME_FREE_LINK_EXCHANGE, '', 'NONSSL') . '">' . BOX_INFORMATION_FREE_LINK_EXCHANGE . '</a>';
    }

  10. #1780
    Join Date
    May 2006
    Location
    Louisiana
    Posts
    263
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 Support Thread

    Quote Originally Posted by clydejones View Post
    try this:

    if (BOX_DISPLAY_VIEW_ALL_LINKS == 'true') {
    $content .= '<br /><a href="' . (FILENAME_FREE_LINK_EXCHANGE, '', 'NONSSL') . '">' . BOX_INFORMATION_FREE_LINK_EXCHANGE . '</a>';
    }
    I tried it and I still get the same: PHP Parse error: syntax error, unexpected ',' in /home/content/w/e/e/weezee/html/includes/templates/cherry_zen/sideboxes/tpl_links_select.php on line 22


    I tried this and now I am getting a PHP Parse error: syntax error, unexpected T_STRING

    if (BOX_DISPLAY_FREE_LINK_EXCHANGE == 'true') {
    $content .= '<br /><a href="http://www.Free-Link-Exchange.com . (FILENAME_FREE_LINK_EXCHANGE, 'NONSSL') . '">' . BOX_INFORMATION_FREE_LINK_EXCHANGE . '</a>';
    }

    I have tried so many different ways and nothing works.

 

 

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

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