Page 102 of 199 FirstFirst ... 25292100101102103104112152 ... LastLast
Results 1,011 to 1,020 of 1988
  1. #1011
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    This line of code will eliminate the error:
    PHP Code:
    $categories_query $db->Execute("select lc.link_categories_id, lcd.link_categories_name, lc.link_categories_sort_order, lcd.link_categories_description, lc.link_categories_image from " TABLE_LINK_CATEGORIES " lc, " TABLE_LINK_CATEGORIES_DESCRIPTION " lcd where lc.link_categories_id = lcd.link_categories_id and lc.link_categories_status = '1' and lcd.language_id = '" . (int)$_SESSION['languages_id'] . "' order by lc.link_categories_sort_order"); 
    that fixed the error, and the sort order in the on line catalog

    but did not fix the sort order in the admin/extras/links

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

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by fvb View Post
    that fixed the error, and the sort order in the on line catalog

    but did not fix the sort order in the admin/extras/links
    The code as presently written (admin side) will order categories by sort order and name.

    What happens when you edit a category and change the sort order?
    (When checking this, on 4 different sites, the categories are ordered by sort order)

  3. #1013
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    The code as presently written (admin side) will order categories by sort order and name.

    What happens when you edit a category and change the sort order?
    (When checking this, on 4 different sites, the categories are ordered by sort order)
    when I edit a category and change the sort order, the order changes like it should

    I was hoping to change the sort order of the admin/extras/links so the new ones that need approval would come up first

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

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by fvb View Post
    when I edit a category and change the sort order, the order changes like it should

    I was hoping to change the sort order of the admin/extras/links so the new ones that need approval would come up first
    open admin/links.php

    find this line of code (around line 556)
    PHP Code:
    $links_query_raw "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " TABLE_LINKS " l left join " TABLE_LINKS_DESCRIPTION " ld on l.links_id = ld.links_id where ld.language_id = '" $_SESSION['languages_id'] . "'" $search " order by ld.links_title, l.links_url"
    and replace with this line
    PHP Code:
    $links_query_raw "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " TABLE_LINKS " l left join " TABLE_LINKS_DESCRIPTION " ld on l.links_id = ld.links_id where ld.language_id = '" $_SESSION['languages_id'] . "'" $search " order by l.links_date_added DESC, ld.links_title, l.links_url"

  5. #1015
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    open admin/links.php

    find this line of code (around line 556)
    PHP Code:
    $links_query_raw "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " TABLE_LINKS " l left join " TABLE_LINKS_DESCRIPTION " ld on l.links_id = ld.links_id where ld.language_id = '" $_SESSION['languages_id'] . "'" $search " order by ld.links_title, l.links_url"
    and replace with this line
    PHP Code:
    $links_query_raw "select l.links_id, l.links_url, l.links_image_url, l.links_date_added, l.links_last_modified, l.links_status, l.links_clicked, ld.links_title, ld.links_description, l.links_contact_name, l.links_contact_email, l.links_reciprocal_url, l.links_status from " TABLE_LINKS " l left join " TABLE_LINKS_DESCRIPTION " ld on l.links_id = ld.links_id where ld.language_id = '" $_SESSION['languages_id'] . "'" $search " order by l.links_date_added DESC, ld.links_title, l.links_url"
    [FONT=Times New Roman]Thanks, the code changed the sort order for the Admin/extras/links[/FONT]

    [FONT=Times New Roman]Should this be controlled by the settings in Admin/configuration/linksManager [/FONT][FONT=Times New Roman]Select links sort order. When I change the sort order number it does not change the sort order back and forth in the admin/extras/links[/FONT]
    [FONT=Times New Roman]I guess I can keep 2 copies of links.php[/FONT]

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

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by fvb View Post
    [FONT=Times New Roman]Thanks, the code changed the sort order for the Admin/extras/links[/FONT]

    [FONT=Times New Roman]Should this be controlled by the settings in Admin/configuration/linksManager [/FONT][FONT=Times New Roman]Select links sort order. When I change the sort order number it does not change the sort order back and forth in the admin/extras/links[/FONT]
    [FONT=Times New Roman]I guess I can keep 2 copies of links.php[/FONT]
    Admin/configuration/linksManager Select links sort order
    This setting controls the sort order of the links that are displayed within a category on the catalog side and has nothing to do with the sort order of the links in the admin panel (admin/extras/links).

  7. #1017
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by clydejones View Post
    Admin/configuration/linksManager Select links sort order
    This setting controls the sort order of the links that are displayed within a category on the catalog side and has nothing to do with the sort order of the links in the admin panel (admin/extras/links).
    ok, thanks

  8. #1018
    Join Date
    Dec 2006
    Posts
    102
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    I'm getting a lot of link swap requests that look like this for there link back page
    site.domain.com
    does google see this as being the same domain as www.domain.com
    or are these two completely different domains?
    my guess is that they are different, and they are just trying to get one way links to there site

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

    Default Re: Link Manager 3.0 release

    Quote Originally Posted by fvb View Post
    I'm getting a lot of link swap requests that look like this for there link back page
    site.domain.com
    does google see this as being the same domain as www.domain.com
    or are these two completely different domains?
    my guess is that they are different, and they are just trying to get one way links to there site
    They could be linking to a "link farm site" and that will only show their link and not a reciprocal link with your site information.

  10. #1020
    Join Date
    Jan 2006
    Posts
    15
    Plugin Contributions
    0

    Default Re: Link Manager 3.0 release

    Hi Clyde

    First of all - many thanks for your efforts.

    I have just installed the Link Manager - latest version.

    I have created categories back end but I am unable to create links within these categories. I can get the page to fill in the new link details but at the bottom wher I should submit - it says under options:

    Status:
    Catchable fatal error: Object of class queryFactoryResult could not be converted to string in /home/*****/public_html/shop/admin/includes/functions/html_output.php on line 333

    using Database: MySQL 4.1.22-standard
    PHP 5.2.5

    Have you any idea what this problem might be?

    ta

    :o)

 

 

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