• Register
    • Help

    striker  0 Items
    Currently Supporting
    • Home
    • News
    • Forum
    • Wiki
    • Support
      • Manage Subscriptions
      • FAQ
      • Support For
        • VaultWiki 4.x Series
        • VaultWiki.org Site
    • What's New?
    • Buy Now
    • Manual
    • 
    • Support
    • VaultWiki 3.x Series
    • Bug
    • Blogs 2.0 and CES Vault Wiki

    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.

    Issue: Blogs 2.0 and CES Vault Wiki

    • Issue Tools
      • View Changes
    1. issueid=341 December 31, 2008 10:19 AM
      Tallen Tallen is offline
      Junior Member
      Blogs 2.0 and CES Vault Wiki

      After I installed the vBulletin updated blogs to 2.0, I tried to enter a new post. When I did that I got a message telling me:

      "This forum is not accepting new posts."

      After trying various things to try to fix this, I thought maybe that an add-on was conflicting with the Blogs. When I turned off the Wiki, then the Blogs started working. For some reason, the Blogs won't let you post to them if the Wiki is on.

      Any suggestions how to fix this?
    Issue Details
    Issue Number 341
    Issue Type Bug
    Project VaultWiki 3.x Series
    Category Editing / Posting Articles
    Status Fixed
    Priority 2 - Fatal / Database Errors
    Affected Version 2.1.3
    Fixed Version 2.2.0
    Milestone VaultWiki 2.2.0
    Software DependencyAny
    Users able to reproduce bug 0
    Users unable to reproduce bug 0
    Attachments 0
    Assigned Users (none)
    Tags (none)


    Page 1 of 2 12 Next LastLast


    1. December 31, 2008 11:23 AM
      stev stev is offline
      Regular Member
      Hello Tallen,

      You beat me to it. Our tech guys had been struggling with this until someone mentioned an incompatible issue with CES Wiki. If I turn CES Wiki off then the Blog 2.0 works but the we can't post anywhere on the whole forum
      Reply Reply  
    2. December 31, 2008 11:31 AM
      Tallen Tallen is offline
      Junior Member
      I would like to see the "fix" before vBulletin 3.8.0 Gold..., when we will probably face some new issues.
      Reply Reply  
    3. December 31, 2008 2:48 PM
      Tallen Tallen is offline
      Junior Member
      This message on the vBulletin Community forum:

      "Your plugin is activating a section of the code that isn't meant to be executed. Tell your product author to not have $postinfo set when you are going to create a new entry." Freddie Bingham

      Maybe this will help!?!
      Reply Reply  
    4. January 1, 2009 1:41 PM
      pegasus pegasus is offline
      VaultWiki Team
      That makes a little bit of sense, but we don't have a license to their blog software. Someone will have to PM me login details for FTP and AdminCP to a site with this issue so I can look at this.
      Reply Reply  
    5. January 4, 2009 2:12 PM
      stev stev is offline
      Regular Member
      Hi Ted,

      I finally was able to log in, there seems to be a glitch somewhere.

      I sent you a PM regarding access to our system

      A question on the side: What's the eta for Wiki 3.0 ?
      Reply Reply  
    6. January 4, 2009 4:05 PM
      pegasus pegasus is offline
      VaultWiki Team
      Yes, for some reason it is only possible to log in if the "Remember me?" box is checked. Maybe this is an issue in vB 3.8 RC2, or one of our mods not being updated for it.

      For the wiki, we are hoping for a mid-January release for 2.2.0, which includes domain management and an AdminCP CSS manager.
      Reply Reply  
    7. January 4, 2009 5:43 PM
      Tallen Tallen is offline
      Junior Member
      Quote Originally Posted by pegasus
      Yes, for some reason it is only possible to log in if the "Remember me?" box is checked. Maybe this is an issue in vB 3.8 RC2, or one of our mods not being updated for it.

      For the wiki, we are hoping for a mid-January release for 2.2.0, which includes domain management and an AdminCP CSS manager.

      Sorry, been down with the flu for a few days. Has anything been done with this issue? Or has anyone figured out what to do to have the blogs and the wiki working at the same time?

      Thanks.
      Reply Reply  
    8. January 4, 2009 6:06 PM
      pegasus pegasus is offline
      VaultWiki Team
      I don't know if this works as I don't have a blog install to test with. Without testing, this is what I've been able to think of so far. It should only occur when using preview on a new blog or when an error occurs when submitting a new blog.

      EDIT: Changes removed because it happens much earlier than I thought.
      Reply Reply  
    9. January 5, 2009 1:17 PM
      pegasus pegasus is offline
      VaultWiki Team
      Okay, I learned that my previously posted changes had no effect. Instead what you have to do is modify VaultWiki's plugin for hook style_fetch.

      Use the following code instead of what's there:
      PHP Code:
      if (function_exists('special_style_fetch'))
      {
          
      special_style_fetch();

          
      // some bs about setting globals by ref
          
      if ($pollinfo['pollid'])
          {
              
      $pollid =& $pollinfo['pollid'];
          }

          if (
      $postinfo['postid'])
          {
              
      $postid =& $postinfo['postid'];
          }

          if (
      $threadinfo['threadid'])
          {
              
      $threadid =& $threadinfo['threadid'];
          }
      } 
      Reply Reply  
    10. January 5, 2009 7:42 PM
      Tallen Tallen is offline
      Junior Member
      Where do I edit this? Is there a paticular template or style sheet?
      Reply Reply  
    11. January 5, 2009 8:04 PM
      pegasus pegasus is offline
      VaultWiki Team
      Quote Originally Posted by pegasus
      what you have to do is modify VaultWiki's plugin for hook style_fetch.
      AdminCP -> Plugins & Products -> Plugin Manager.
      Reply Reply  
    12. January 6, 2009 10:35 AM
      Tallen Tallen is offline
      Junior Member
      Quote Originally Posted by pegasus
      AdminCP -> Plugins & Products -> Plugin Manager.
      Once I am in the plugin manager, what do I do?
      Reply Reply  
    13. January 6, 2009 5:45 PM
      pegasus pegasus is offline
      VaultWiki Team
      In the section with heading "CES VaultWiki," find the plugin with Hook Location "style_fetch" and click the Edit link.
      Reply Reply  
    14. January 10, 2009 8:21 PM
      Tallen Tallen is offline
      Junior Member
      Quote Originally Posted by pegasus
      In the section with heading "CES VaultWiki," find the plugin with Hook Location "style_fetch" and click the Edit link.
      OK, seems to have worked, I finally freed some time up to change this. Thanks for your help Peg. Do you mind if I post this on the vBulletin site? I started a thread over there before I knew that the problem was in the code of the plug in.
      Reply Reply  
    15. January 12, 2009 1:39 PM
      pegasus pegasus is offline
      VaultWiki Team
      You can post this particular fix code without worry. It doesn't reveal anything about the internals of VaultWiki.
      Reply Reply  
    Page 1 of 2 12 Next LastLast
    + Reply

    Assigned Users
    Loading Please Wait
    Tags
    Loading Please Wait
    • Contact Us
    • License Agreement
    • Privacy
    • Terms
    • Top
    All times are GMT -4. The time now is 4:27 PM.
    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.