• 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 4.x Series
    • Bug
    • Cant open thread

    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: Cant open thread

    • Issue Tools
      • View Changes
    1. issueid=4722 October 4, 2016 7:29 AM
      Ecstasy Ecstasy is offline
      New Member
      Cant open thread

      Hello,
      i got a problem with the VaultWiki. At first, my english is very bad, sorry about that

      I installed VaultWiki yesterday on my vBulletin 4.2.3 .

      After that, when i click on a forum/thread, i get this error:

      Fatal Error: attempted to instantiate non-existent class vw_Plugins_Forum_Model
      [path]/vault/core/model/plugins/forum/vw.php does not exist or does not contain the specified class.

      #0: vw_Hard_Core::fetch_object() in [path]/vault/core/model/vw.php at line 674
      #1: vw_Hard_Core::model() in [path]/forumdisplay.php(1208) : eval()'d code at line 11
      #2: eval() in [path]/forumdisplay.php at line 1208

      Please forward this error to VaultWiki technical support at https://www.vaultwiki.org/support/4X/ or email support@vaultwiki.org.
      I dont know what i can do.

      Thank you for your help

      Best regards
      Sascha
    Issue Details
    Issue Number 4722
    Issue Type Bug
    Project VaultWiki 4.x Series
    Category Forum Posts / Non-Wiki Content
    Status Fixed
    Priority 4 - Warnings / Script Errors
    Affected Version 4.0.13
    Fixed Version 4.0.15
    Milestone (none)
    Software DependencyvBulletin 4.x
    License TypeLite
    Users able to reproduce bug 0
    Users unable to reproduce bug 0
    Attachments 0
    Assigned Users (none)
    Tags (none)




    1. October 4, 2016 9:20 AM
      pegasus pegasus is offline
      VaultWiki Team
      If you are using the Lite version, go to vBulletin's AdminCP, Plugins & Products > Plugin Manager.

      I believe there are some extra plugins on this page that don't work in the Lite version.
      Find the following plugins in the list and delete the ones that belong to VaultWiki:
      • forumbit_subforumbit
      • forumbit_subforumbit2
      • forumdisplay_complete
      Reply Reply
    2. October 5, 2016 3:06 PM
      Ecstasy Ecstasy is offline
      New Member
      Hello,
      thank you for your answer. But it doesnt work. I deleted these three plugins.

      Fatal Error: attempted to instantiate non-existent class vw_Plugins_Forum_Model
      [path]/vault/core/model/plugins/forum/vw.php does not exist or does not contain the specified class.

      #0: vw_Hard_Core::fetch_object() in [path]/vault/core/model/vw.php at line 674
      #1: vw_Hard_Core::model() in [path]/forumdisplay.php(1208) : eval()'d code at line 11
      #2: eval() in [path]/forumdisplay.php at line 1208

      Please forward this error to VaultWiki technical support at https://www.vaultwiki.org/support/4X/ or email support@vaultwiki.org.
      Reply Reply
    3. October 5, 2016 4:22 PM
      pegasus pegasus is offline
      VaultWiki Team
      forumdisplay.php(1208) is forumdisplay_complete, which is one of the plugins that I asked you to delete in my previous post. If this did not work, you have either deleted the wrong plugin (more than 1 add-on might have plugins for forumdisplay_complete), or your site is using some sort of cache for plugins, and you need to reset that cache after the plugin is deleted.
      Reply Reply
    4. October 5, 2016 4:38 PM
      Ecstasy Ecstasy is offline
      New Member
      Oh, sorry. Now it works.

      Thank you very much!
      Reply Reply
    5. October 6, 2016 1:27 AM
      Ecstasy Ecstasy is offline
      New Member
      I got a new Problem. I cant add new Areas. When i go on Structures -> Area Manager there i cant add new Areas.

      When i go on save there comes only a white site.


      The second problem is when i delete a post:

      Datenbankfehler in vBulletin 4.2.3:

      Invalid SQL:
      SELECT * FROM `vw_reputation` WHERE `itemid` IN (8) AND itemtypeid = 7;

      MySQL-Fehler : Table 'falkenstein.vw_reputation' doesn't exist
      Fehler-Nr. : 1146
      Fehler-Zeit : Thursday, 06.10.2016 @ 05:32:09
      Datum : Thursday, 06.10.2016 @ 05:32:09
      Skript : http://falkenstein.saschak.de/wiki_i...od.php?do=kill
      Referrer : http://falkenstein.saschak.de/wiki_inlinemod.php
      IP-Adresse : 217.240.61.158
      Benutzername : Sascha
      Klassenname : vB_Database_MySQLi
      MySQL-Version : 5.5.50-0ubuntu0.14.04.1

      Thank you and greetings
      Sascha
      Reply Reply
    6. October 6, 2016 10:40 AM
      pegasus pegasus is offline
      VaultWiki Team
      For the first problem, edit vault/core/controller/dm/page/vw.php. Find:
      Code:
      if ($skip_language AND !$this->instance->get_info('skip_language'))
      Replace with:
      Code:
      if (!$skip_language AND !$this->instance->get_info('skip_language'))
      This occurred because the Lite version does not support translations.

      For the second problem, edit vault/core/controller/dm/comment/vw.php. Find:
      Code:
      if (vw_Hard_Core::model('Dependency')->has_reputation())
      Replace with:
      Code:
      if (0===1)
      This occurred because the Lite version does not support reputation.

      This revealed the following issues that must be handled automatically in a future upgrade script:
      - Pages that were not fully created due to these errors must be deleted
      - Page titles that were not actually used due to these errors must be released
      - In the full version, the first translation must be generated for pages that don't have one
      Reply Reply
    7. October 6, 2016 11:50 AM
      Ecstasy Ecstasy is offline
      New Member
      Thank you for your reply.

      The first replace works fine.

      But the second "if" i cant find. there is nothing like this in vw.php in reputation.
      Reply Reply
    8. October 6, 2016 12:25 PM
      pegasus pegasus is offline
      VaultWiki Team
      I made a typo in the filename. I have updated the post.
      Reply Reply
    9. October 6, 2016 12:30 PM
      Ecstasy Ecstasy is offline
      New Member
      Thank you very much. I edit the file, but when i want to delete the post physical, the message still came

      Datenbankfehler in vBulletin 4.2.3:

      Invalid SQL:
      SELECT * FROM `vw_reputation` WHERE `itemid` IN (13) AND itemtypeid = 7;

      MySQL-Fehler : Table 'falkenstein.vw_reputation' doesn't exist
      Fehler-Nr. : 1146
      Fehler-Zeit : Thursday, 06.10.2016 @ 16:28:08
      Datum : Thursday, 06.10.2016 @ 16:28:08
      Skript : http://falkenstein.saschak.de/wiki_i...od.php?do=kill
      Referrer : http://falkenstein.saschak.de/wiki_inlinemod.php
      IP-Adresse : 217.240.61.158
      Benutzername : Sascha
      Klassenname : vB_Database_MySQLi
      MySQL-Version : 5.5.50-0ubuntu0.14.04.1
      Reply Reply
    10. October 6, 2016 12:44 PM
      pegasus pegasus is offline
      VaultWiki Team
      It seems like you have some sort of PHP cache that you need to reset after editing PHP files.

      0 is not exactly the same as 1, so this query would never execute after the change.
      Reply Reply
    11. October 6, 2016 1:15 PM
      Ecstasy Ecstasy is offline
      New Member
      I reset all caches. But it doesnt work.

      I think the problem is that the table doesnt exist?
      Reply Reply
    12. October 6, 2016 2:42 PM
      pegasus pegasus is offline
      VaultWiki Team
      The table does not exist in the Lite version. That is expected, because there is no reputation function in the Lite version. The problem is that this code block, which is related to reputation, is running at all in the Lite version.

      The code change I gave you will cause the script to bypass the request to the non-existent table.
      Please make sure that the second Find code no longer exists in the vault/core/controller/dm/comment/vw.php file. If you need further assistance, you are welcome to submit a private ticket: https://www.vaultwiki.org/members/?do=tickets

      EDIT: I see this code also exists in another file vault/core/controller/dm/page/vw.php. In case you want to delete a wiki page in the future and not just a reply, you will also need to make the same edit to this file.
      Reply Reply
    13. October 7, 2016 1:34 AM
      Ecstasy Ecstasy is offline
      New Member
      Good Morning.
      Thank you for your help!

      Im sure that the second find code no longer exist. It doesnt exist in page/vw.php and in comment/vw.php

      I deletet all caches, downloaded the php files from the server to check the code. I uploaded it over another computer and so on.

      It doesnt work.

      Greetings
      Reply Reply
    14. October 7, 2016 8:50 AM
      pegasus pegasus is offline
      VaultWiki Team
      Please also try the edit in vault/core/controller/dm/revision/vw.php. If you are trying to delete a wiki page, rather than a reply as I first thought, then the code in this file might be what is stopping you as well.
      Reply Reply
    15. October 7, 2016 9:37 AM
      Ecstasy Ecstasy is offline
      New Member
      Now it works.

      Thank you very much for your help!
      Reply Reply
    + 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:52 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 © 2025 vBulletin Solutions Inc. All rights reserved.
    Search Engine Optimisation provided by DragonByte SEO (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
    Copyright © 2008 - 2024 VaultWiki Team, Cracked Egg Studios, LLC.