• 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
    • So many problems!

    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: So many problems!

    • Issue Tools
      • View Changes
    1. issueid=4009 September 21, 2014 9:26 AM
      Morrus Morrus is offline
      Regular Member
      So many problems!
      A variety of issues

      I've revisited VW after not touching it for a year or more to see if I could get the group wiki pages thing working correctly - somehting I've never managed.

      My current version is 4.0.0 Beta 4 on vBulletin 4.2.2.

      So, the issues:

      1) Attempting to access VW settings makes my server time out
      2) Attempts to create wiki pages from a group results in a no permission error when you go to save the page
      3) Edits of the default "description" wiki page don't change anything
      4) Disabling VaultWiki at least restores the default group description, but then profile pages will no longer load
      5) Errors when trying to create group wiki pages (quoted below):

      Code:
      Warning: Only variables should be passed by reference in ..../vault/core/controller/ui/assign/group/vw.php on line 63
      
      Warning: Invalid argument supplied for foreach() in ..../vault/core/model/permissions/vb3.php on line 52
      It's been years, and this still ain't working (admittedly, I gave up and left it for a long time because it just became such a headache). But with my attempts to get the social groups really running on full steam, I've had to revisit it.

      I really want to just get this working so I don't have to think about it again.
    Issue Details
    Issue Number 4009
    Issue Type Bug
    Project VaultWiki 4.x Series
    Category Wiki Groups
    Status Fixed
    Priority 4 - Warnings / Script Errors
    Affected Version 4.0.0 Beta 4
    Fixed Version 4.0.0 RC 3
    Milestone VaultWiki 4.0 Gold
    Software DependencyvBulletin 4.x
    License TypePaid
    Users able to reproduce bug 0
    Users unable to reproduce bug 0
    Attachments 0
    Assigned Users (none)
    Tags (none)


    Page 2 of 2 FirstFirst Previous 12


    1. September 22, 2014 2:00 PM
      Morrus Morrus is offline
      Regular Member
      Thank you!

      Here's another look at those issues to see how they responded.

      1) Attempting to access VW settings makes my server time out

      -- The VW settings in the AdminCP now have a distorted display, and the menu cannot be clicked on.

      2) Attempts to create wiki pages from a group results in a no permission error when you go to save the page

      -- Clicking on Add Content does nothing; just refreshes the social group page. Example:

      http://www.enworld.org/forum/group.php?groupid=220

      3) Edits of the default "description" wiki page don't change anything

      -- I was able to edit that successfully. It looks hopeful that's fixed!

      4) Disabling VaultWiki at least restores the default group description, but then profile pages will no longer load

      -- I haven't tried disabling VW again yet.

      5) Errors when trying to create group wiki pages (quoted below):

      -- As mentioned above, clicking Add Content from the social group page does nothing.

      Thanks for your help! I think we're getting there slowly!
      Reply Reply  
    2. September 22, 2014 2:22 PM
      pegasus pegasus is offline
      VaultWiki Team
      1) The menu was changed from a sidebar to a top-navbar menu with drop-downs. If the dropdowns are not working for you, please let me know what browsers you are using. I did not have any issues navigating your Admin Panel with latest Chrome on Windows 7.

      2 & 5) I can confirm that the links for Add Content do not point to a valid action when you are viewing a group. However, I have not been able to attempt to create a wiki page from this context, due to this issue, so I can't confirm the no permission error. Please let me know your steps when creating a wiki page from a group.
      Reply Reply  
    3. September 22, 2014 2:31 PM
      pegasus pegasus is offline
      VaultWiki Team
      2) I can reach the permission error by making the following edits on this site. In vault/core/controller/ui/group/vw.php, find all:
      Code:
      $creator->set_actions('grouppage', 'dogrouppage');
      Replace all with:
      Code:
      $creator->set_actions('create', 'publish');
      In vault/core/view/ui/group/vw.php, find:
      Code:
      $createaction = 'grouppage';
      Replace with:
      Code:
      $createaction = 'create';
      Now to figure out why there's a permission error.
      Reply Reply  
    4. September 22, 2014 2:44 PM
      pegasus pegasus is offline
      VaultWiki Team
      Fixed the permission error on your site. Please try it out.
      Reply Reply  
    5. September 22, 2014 2:54 PM
      Morrus Morrus is offline
      Regular Member
      1) The browser is Firefox on W7. The VW control panel is obscured.

      2) Just by clicking that add content button. Today's update is what made that button unresponsive; prior to that you could get through to the no permission error.
      Reply Reply  
    6. September 22, 2014 3:07 PM
      pegasus pegasus is offline
      VaultWiki Team
      In Help > About Firefox, what's the version number? If >30, maybe you just need to clear the browser cache. I'm not having any issue on your Admin Panel with Firefox 32.
      Reply Reply  
    7. September 22, 2014 3:25 PM
      Morrus Morrus is offline
      Regular Member
      Quote Originally Posted by pegasus
      In Help > About Firefox, what's the version number? If >30, maybe you just need to clear the browser cache. I'm not having any issue on your Admin Panel with Firefox 32.
      Clearing the cache fixed it.
      Reply Reply  
    8. September 22, 2014 3:26 PM
      Morrus Morrus is offline
      Regular Member
      Quote Originally Posted by pegasus
      2) I can reach the permission error by making the following edits on this site. In vault/core/controller/ui/group/vw.php, find all:
      Code:
      $creator->set_actions('grouppage', 'dogrouppage');
      Replace all with:
      Code:
      $creator->set_actions('create', 'publish');
      In vault/core/view/ui/group/vw.php, find:
      Code:
      $createaction = 'grouppage';
      Replace with:
      Code:
      $createaction = 'create';
      Now to figure out why there's a permission error.
      Did you want me to apply those edits?
      Reply Reply  
    9. September 22, 2014 4:11 PM
      Morrus Morrus is offline
      Regular Member
      Some good news. I just applied those edits and successfully created a page.

      http://www.enworld.org/forum/showwik...EIST-Test-Page

      A minor formatting issue with the link back to the group page (which you can see) but it seems to be basically working. I think!
      Reply Reply  
    10. September 22, 2014 5:40 PM
      Morrus Morrus is offline
      Regular Member
      Database error trying to leave a group; refers to a vw table.
      Code:
      Invalid SQL
      INSERT INTO vw_group
      (pageid, groupid)
      VALUES
      (1530, 360)
      
      Duplicate entry '360' for key PRIMARY
      Script: [url]http://www.enworld.org/forum.group.php?groupid=360&do=leave[/url]
      Reply Reply  
    11. September 22, 2014 5:50 PM
      Morrus Morrus is offline
      Regular Member
      Similar when trying to post a discussion in a group.

      Database error in vBulletin 4.2.2:
      Code:
      Invalid SQL:
      INSERT INTO vw_group
      	(pageid, groupid)
      VALUES
      	(1532, 220);
      
      MySQL Error   : Duplicate entry '220' for key 'PRIMARY'
      Error Number  : 1062
      Request Date  : Monday, September 22nd 2014 @ 05:49:53 PM
      Error Date    : Monday, September 22nd 2014 @ 05:49:55 PM
      Script        : [url]http://www.enworld.org/forum/group.php[/url]
      Referrer      : [url]http://www.enworld.org/forum/group.php?groupid=220&do=message[/url]
      IP Address    : 86.17.38.117
      Username      : Morrus
      Classname     : vB_Database
      MySQL Version : 5.5.29
      Reply Reply  
    12. September 23, 2014 10:33 AM
      pegasus pegasus is offline
      VaultWiki Team
      Marking this issue as fixed in the next release. If you encounter anything new, please open a new bug report.
      Reply Reply  
    13. September 23, 2014 10:38 AM
      Morrus Morrus is offline
      Regular Member
      I don't understand what you just said. What does "marked as fixed in the next release" mean? Does it mean you've fixed the errors? (I just managed to post a discussion thread OK - did you change something on my site?; the title formatting issue on group wiki pages is still there; haven't been able to test leaving a group yet).
      Reply Reply  
    Page 2 of 2 FirstFirst Previous 12
    + 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 5:37 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 © 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.