• Register
    • Help

    striker  0 Items
    Currently Supporting
    • Home
    • News
    • Forum
      • Try XenForo Demo
      • New Posts
      • FAQ
      • Calendar
      • Community
        • Groups
        • Albums
        • Member List
      • Forum Actions
        • Mark Forums Read
      • Quick Links
        • Today's Posts
        • Who's Online
      • Sponsor
        • Sponsor a Feature
        • List of Donors
    • Wiki
    • Support
    • What's New?
    • Buy Now
    • Manual
    • 
    • Forum
    • VaultWiki How-Tos
    • VaultWiki Questions
    • Article tools link does not work

    1. Welcome to VaultWiki.org, home of the wiki add-on for vBulletin and XenForo!

      VaultWiki allows your existing forum users to collaborate on creating and managing a site's content pages. VaultWiki is a fully-featured and fully-supported wiki solution for vBulletin and XenForo.

      The VaultWiki Team encourages you to join our community of forum administrators and check out VaultWiki for yourself.

    Results 1 to 11 of 11

    Thread: Article tools link does not work

    • Thread Tools
      • Show Printable Version
    1. July 28, 2009 #1
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198

      Article tools link does not work

      When I click the little triangle next to an article title on my VaultWiki installation, nothing happens. Please let me know if there is a setting I need to enable, or a permission to check ?

      No errors in the system errorlog
      Reply With Quote Reply With Quote

    2. July 28, 2009 #2
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      If you have any Javascript errors on the page it can break the triangle. I visited your Tiesto article and this seems to be a contributing factor there.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. July 28, 2009 #3
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      Thank you for the feedback, I will have a look at that.
      Last edited by tscargo; July 28, 2009 at 8:26 PM.
      Reply With Quote Reply With Quote

    4. July 28, 2009 #4
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      I had one (unrelated) JavaScript error, which I 'disabled' by commenting out some javascript commands in my template. In the firefox error console I do not see any errors anymore, all other 'drop downs' work fine. Only the article tools one does not do anything.
      Reply With Quote Reply With Quote

    5. July 28, 2009 #5
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      I did some more checking, but the template that contains this specific menu (vault_article_menu) (which is (on my installation) called from special_class_postbit.php and special_plugins.php is actually not present on the page at all. So I think this is due to some permission setting, but I would not know which one.
      Reply With Quote Reply With Quote

    6. July 28, 2009 #6
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      You re-eval the footer template in one of your plugins. VaultWiki expects that this was already eval'd (in global.php). Instead, you should run an str_replace or move your plugin before the first eval (parse_templates, perhaps - you can check for THIS_SCRIPT == 'showwiki').
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    7. July 29, 2009 #7
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      Is see that re-evaluating the footer template is causing this to happen. The issue is that I really need to evaluate the footer AFTER the page is 'generated' to actually fill some (possible) related content boxes. I don't see why re-evaluating the footer template should break other output. I doubt that you are str_replacing things in one of your plugin to insert the code in the footer.
      Would appreciate if you could shed some light on the applied logic in your product. Moving my plugin before the first parse is not an option as the related items are not know at that moment.
      I create the related links based on the tags of an article (on a wiki page) or the tags of a thread (on a forum page).
      Reply With Quote Reply With Quote

    8. July 29, 2009 #8
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      Extra popups and Javascript are tacked on to the end of the $footer variable.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    9. July 29, 2009 #9
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      Can you tell me where you do that ? The reason I am re-evaluating the footer template is because I need to add some info in the footer for related information. This information needs to be related to the content on the page. During the first eval of the footer template, this information is not available. vBulleting evals the footer template in the beginning of processing the page.
      Reply With Quote Reply With Quote

    10. July 29, 2009 #10
      pegasus
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • Visit Homepage
      • View Articles
      pegasus is offline
      VaultWiki Team
      Join Date
      March 28, 2004
      Location
      New York, NY
      Posts
      2,934
      Blog Entries
      18
      Rep Power
      659
      This is done when the article's postbit is created in vault/special_class_postbit.php. If you're going to re-eval the footer, try doing it at hook vault_postbit_start.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    11. July 29, 2009 #11
      tscargo
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      tscargo is offline
      Junior Member
      Join Date
      February 12, 2008
      Posts
      33
      Rep Power
      198
      I modified the plugin and hooked it into vault_postbit_complete, everything works like a charm now ! Thank you for your support ! Great customer service !
      Reply With Quote Reply With Quote

    Similar Threads

    1. Are there no inline moderation tools?
      By Alfa1 in forum VaultWiki Questions
      Replies: 1
      Last Post: February 14, 2016, 9:50 AM
    2. lost wiki tools
      By Lord Doys in forum VaultWiki Questions
      Replies: 2
      Last Post: May 28, 2012, 12:33 PM
    3. Wiki moderation tools
      By Alfa1 in forum Pre-Sales Questions
      Replies: 7
      Last Post: March 2, 2011, 1:07 PM
    4. How do I create a link within an article
      By stev in forum VaultWiki Questions
      Replies: 5
      Last Post: October 8, 2009, 12:24 PM
    5. No wiki article links work
      By optikalefx in forum VaultWiki Questions
      Replies: 6
      Last Post: September 6, 2009, 6:33 PM

    Tags for this Thread

    able, after, all, any, anymore, are, article, available, because, before, but, called, can, check, class, could, did, does, doing, don, due, every, first, for, from, generated, going, have, here, hook, into, javascript, know, like, link, look, more, need, needs, next, now, one, only, other, out, php, please, possible, postbit, really, reason, replace, see, should, showwiki, some, specific, that, the, there, things, this, tools, try, was, when, where, why, will, work, would, you, your

    View Tag Cloud

    Bookmarks

    Bookmarks
    • Submit to Digg Digg
    • Submit to del.icio.us del.icio.us
    • Submit to StumbleUpon StumbleUpon
    • Submit to Google Google

    Posting Permissions

    • You may not post new threads
    • You may not post replies
    • You may not post attachments
    • You may not edit your posts
    •  
    • BB code is On
    • Smilies are On
    • [IMG] code is Off
    • [VIDEO] code is
    • HTML code is Off

    Forum Rules

    • Contact Us
    • License Agreement
    • Privacy
    • Terms
    • Top
    All times are GMT -4. The time now is 4:22 AM.
    This site uses cookies to help personalize content, to tailor your experience, and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Learn more… Accept Remind me later
  • striker
    Powered by vBulletin® Version 4.2.5 Beta 2
    Copyright © 2023 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2023 DragonByte Technologies Ltd.
    Copyright © 2008 - 2013 VaultWiki Team, Cracked Egg Studios, LLC.