• 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
    • Some NuWiki import questions

    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 15 of 15

    Thread: Some NuWiki import questions

    • Thread Tools
      • Show Printable Version
    1. July 14, 2010 #1
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257

      Some NuWiki import questions

      In preparation of NuWiki > Vaultwiki import, I have the following questions:

      A forum needs to be created for templates ( because I did not use this in NuWiki, but will need templates for Vaultwiki) and for categories. But where? Instructions state:
      Except for NuWiki islands and the forums mentioned above, move your other NuWiki forums such that they are children of the Default namespace.
      So does this mean the template forum, forum_headers forum, books and the category forum will be subforums of the default namespace?
      Or should no namespace be a subforum of the default namespace?

      I have a forum for redirects. What to do with these?

      I do not allow lower usergroups to edit wiki articles, but I do allow them to discuss wikis and to suggest content. For this I have a Wiki Discussion forum. This was a subforum of my main wiki section, but it seems it should be outside of the default namespace. Thoughts?

      Whenever editing a forum in the forum manager, I get this message:
      The forum could not be added to the namespace. Create the forum with the Wiki mode disabled, and configure the namespace in the Namespace Manager to include this forum. You can then activate the forum's Wiki mode.
      Changing the display order in forum manager doesnt work.

      The image namespace is already included, but should it be? We currently use vb album attachments.
      Reply With Quote Reply With Quote

    2. July 14, 2010 #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
      No namespace should be a forum of the default namespace. You can have your default namespace, template forum, forum headers forum, books, and categories forums all in the same parent category, but do not nest them within each other.

      The instructions suggest to nest all NuWiki forums because in NuWiki you could only have 1 namespace.

      You can move the redirect forum to inside the default namespace (as a sub-forum).

      You can continue to use your Wiki Discussion forum if you want. You can use VaultWiki's permissions to achieve the same higher-usergroup-only editing. If you don't want discussions on articles themselves, this can be disabled on a per-namespace basis.

      If you are trying to change a forum in the Forum Manager to Wiki mode, you must be making it into a child forum of an existing namespace first via the Namespace Manager. This ensures that all the wiki metadata is compiled correctly.

      In the case where the forum is already defined as a namespace, you may need to "Rebuild" the namespace first to reconstitute the cache. Check that the Namespace Functions in the bottom of the Namespace Manager are assigned correctly. Otherwise it depends on the specific forums you are modifying.

      As for the Image namespace, if you don't plan on using it for now, then you can go ahead and delete it.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. July 14, 2010 #3
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      Im afraid I made

      I cant move forums associated with a namespace. I Have created a new Wiki parent forum, to place all namespaces in. But asides the wiki discussion forum, I am not able to move any of them.
      My Template forum is associated with the template namespace. No templates have been added to it. Its not a child of another namespace. But won't move.
      My default namespace will not move.

      When trying to edit namespaces, I encounter this error:
      Code:
      Database error in vBulletin 3.8.5:
      
      Invalid SQL:
      
      				INSERT INTO vb_postlog
      				(postid, useragent, ip, dateline)
      				VALUES
      				(864055, 'Mozilla/5.0 (Windows; U; Windows NT 6.1; nl; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6');
      
      MySQL Error   : Duplicate entry '864055' for key 1
      Error Number  : 1062
      Request Date  : Wednesday, July 14th 2010 @ 10:56:10 PM
      Error Date    : Wednesday, July 14th 2010 @ 10:56:14 PM
      Script        : /forum/admincp/vaultwiki_namespace.php?do=rebuild&namespaceid=9&meta=398,177&types[0]=0&types[1]=1&parents[0]=398&parents[1]=177&postcache=,9
      Referrer      : /forum/admincp/vaultwiki_namespace.php?do=save
      Username      : Alfa1
      Classname     : vB_Database
      MySQL Version : 5.0.90-log
      Im confused. How do I fix this? Do I need to start over?
      Reply With Quote Reply With Quote

    4. July 14, 2010 #4
      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
      Try this. In vault/plugins/data/forum.php, find:
      Code:
      		if (!$okay)
      Add before:
      Code:
      		if (!$okay AND $data->existing['forumid'])
      		{
      			$vault->unserialize('vault_namespaces');
      
      			foreach ($vbulletin->options['vault_namespaces'] AS $space)
      			{
      				if ($space['forumid'] != $data->existing['forumid'])
      				{
      					continue;
      				}
      
      				$okay = true;
      			}
      		}
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    5. July 14, 2010 #5
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      That works.

      Deleting a forum within the default namespace lead to this error:
      Code:
      Database error in vBulletin 3.8.5:
      
      Invalid SQL:
      DELETE FROM vb_vault_forummap WHERE FIND_IN_SET(397, parentlist);
      
      MySQL Error   : Unknown column 'parentlist' in 'where clause'
      Error Number  : 1054
      Request Date  : Thursday, July 15th 2010 @ 12:25:19 AM
      Error Date    : Thursday, July 15th 2010 @ 12:25:20 AM
      Script        : /forum/admincp/forum.php?do=kill
      Referrer      : /forum/admincp/forum.php?do=remove&f=397&s=
      IP Address    : 
      Username      : Alfa1
      Classname     : vB_Database
      MySQL Version : 5.0.90-log
      It seems to be gone now though.
      Reply With Quote Reply With Quote

    6. July 14, 2010 #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
      To get past the post-log errors, you will want to make the following change. Not sure why this is needed in vB 3. IMO, the postlog should use INSERT IGNORE or REPLACE.

      In vault/dm/revision.php, find:
      Code:
      						$threadman->set_info('skip_first_post_update', true);
      Add after:
      Code:
      						$threadman->set_info('skip_moderator_log', true);
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    7. July 14, 2010 #7
      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
      Sorry, for the separate posts. Will be moving these to separate bug reports. To prevent future forummap errors, you will want to make the following change. In vault/plugins/data/forum.php, find:
      Code:
      	$dataman->db_delete(TABLE_PREFIX, 'vault_forummap', $dataman->condition);
      Replace with:
      Code:
      	$dataman->db_delete(TABLE_PREFIX, 'vault_forummap', "forumid IN ($forums)");
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    8. November 12, 2010 #8
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      I have 3 main NuWiki sections. 1 for each language. My English section is a normal Wiki namespace, while my Dutch and German wiki forums are Wiki Islands.
      Each NuWiki section is currently in the forum category that relates to the language. i.e. English wiki in the English forum category, Dutch wiki in the Dutch forum category and German wiki in the German forum category.

      Should I move these to become a child of the main namespace? I do not want them to interlink to each other, but I do want the Dutch and German wiki to be imported.

      Also: Does it matter if the wiki forums: books, category, templates, forum headers have the 'Forum is Active' setting set to 'no'?
      Last edited by Alfa1; November 12, 2010 at 2:26 PM.
      Reply With Quote Reply With Quote

    9. November 12, 2010 #9
      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 "Forum is Active" is set to "No", I believe you wouldn't be able to create any new pages in those forums. If you don't want them to receive comments, you should be able to set this at the namespace level.

      If the Dutch and German wikis are NuWiki islands, they should be automatically imported as VaultWiki islands without any extra configuration on your part, so they would still be unlinkable.

      After importing, if you wish, you will be able to associate them with their English/Dutch/German translations so users can easily switch between them. This feature was overlooked in the last Manual update, but it is an option on each page's Apply tab.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    10. November 12, 2010 #10
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      Optimally, I would like to have each language version create autolinks in the related forum category. Is this possible and how do I accomplish that?
      Reply With Quote Reply With Quote

    11. November 12, 2010 #11
      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
      It is not possible to create autolinks like this in VaultWiki 3, since those wiki areas are not linkable and you can only autolink from one namespace in VaultWiki 3.

      In VaultWiki 4, you might consider making Dutch and German wikis into their own namespaces. If this were true, it would be an interesting feature request for VaultWiki 4: to have a forum setting for choosing what namespace autolinks are taken from, rather than always using the default/current namespace.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    12. November 12, 2010 #12
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      Yes, that would be an optimal solution.
      Reply With Quote Reply With Quote

    13. December 5, 2010 #13
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      Quote Originally Posted by pegasus View Post
      It is not possible to create autolinks like this in VaultWiki 3, since those wiki areas are not linkable and you can only autolink from one namespace in VaultWiki 3.

      In VaultWiki 4, you might consider making Dutch and German wikis into their own namespaces. If this were true, it would be an interesting feature request for VaultWiki 4: to have a forum setting for choosing what namespace autolinks are taken from, rather than always using the default/current namespace.
      Is this feature request in the tracker already or do I need to add it?
      Reply With Quote Reply With Quote

    14. December 5, 2010 #14
      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
      I don't think it's in there. Wouldn't hurt to add it; if it's a duplicate, I'll mark it when we get around to working on it.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    15. December 5, 2010 #15
      Alfa1
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Alfa1 is offline
      Distinguished Member
      Join Date
      September 26, 2007
      Posts
      584
      Rep Power
      257
      Added
      Reply With Quote Reply With Quote

    Similar Threads

    1. How to get front page A-z index like NuWiki ?
      By Jules in forum VaultWiki Questions
      Replies: 5
      Last Post: April 4, 2012, 4:39 PM
    2. Comparison between NuWiki and Vaultiki
      By Alfa1 in forum VaultWiki Questions
      Replies: 4
      Last Post: December 7, 2010, 9:01 PM
    3. Errors after installation (NuWiki import)
      By Alfa1 in forum VaultWiki Questions
      Replies: 12
      Last Post: July 22, 2010, 7:09 PM
    4. Paid upgrade old nuWiki install
      By iphoneclub in forum Pre-Sales Questions
      Replies: 1
      Last Post: December 23, 2009, 12:16 AM
    5. Import from Nuwiki
      By Storyteller in forum VaultWiki Questions
      Replies: 1
      Last Post: November 17, 2008, 5:21 PM

    Tags for this Thread

    able, added, admincp, any, articles, automatically, been, before, between, books, categories, category, check, content, could, date, did, discussion, discussions, display, editing, first, forum, forums, get, gone, hey, image, into, main, manager, message, namespace, nest, other, question, questions, same, section, side, solution, state, subforums, sure, templates, that, them, vaultwiki, were, work

    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 3:48 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.