• Resolved mhornbuckle

    (@mhornbuckle)


    I am using multisite, the links work on one, but not the other. Here is the page where they are not showing http://54.93.115.69/tyler/resources/, but there are 14 links all visible under 2 categories and should be showing. Any thoughts?

    Thank you

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Yannick Lefebvre

    (@jackdewey)

    Can you turn on debug mode under the plugin general options? It will add some hidden data in the page that I can see to try to understand what is happening.

    Thread Starter mhornbuckle

    (@mhornbuckle)

    Debug mode is enabled.

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Are you fluent enough in web site administration to try running the following query on your site’s database and seeing what type of error message might be getting generated:

    SELECT distinct *, l.link_id as proper_link_id, UNIX_TIMESTAMP(l.link_updated) as link_date, IF (DATE_ADD(l.link_updated, INTERVAL 120 MINUTE) >= NOW(), 1,0) as recently_updated FROM smac_7_terms t LEFT JOIN smac_7_term_taxonomy tt ON (t.term_id = tt.term_id) LEFT JOIN smac_7_term_relationships tr ON (tt.term_taxonomy_id = tr.term_taxonomy_id) LEFT JOIN smac_7_links l ON (tr.object_id = l.link_id) LEFT JOIN smac_7_links_extrainfo le ON (l.link_id = le.link_id) WHERE tt.taxonomy = "link_category" AND l.link_id is not NULL AND l.link_description not like "%LinkLibrary:AwaitingModeration:RemoveTextToApprove%" AND l.link_visible != "N" ORDER by name ASC, l.link_name ASC

    Perhaps the smac_7_links_extrainfo table did not created correctly when the sub-site was created.

    Thread Starter mhornbuckle

    (@mhornbuckle)

    Thank you, it threw many errors. I just copied the LinkCategoryMeta and Links_ExtraInfo from the other site. It works now

    I appreciate it!

    Plugin Author Yannick Lefebvre

    (@jackdewey)

    Glad that did the trick. Was this a newly created sub-site? If so, I will review the code that is supposed to create that table when a new sub-site is created.

    Please consider donating to support this plugin’s development.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Link list not showing’ is closed to new replies.