• 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
    • DB error Upgrading from VW Lite to VW 3.1.2

    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: DB error Upgrading from VW Lite to VW 3.1.2

    • Issue Tools
      • View Changes
    1. issueid=2359 June 18, 2011 6:24 PM
      randalls randalls is offline
      New Member
      DB error Upgrading from VW Lite to VW 3.1.2
      Step 3: Inserting default data into rcm7_bbcode gives " Column count doesn't match value count at row 17" error

      I purchased a copy of VW Premium yesterday. I tried to upgrade the copy of VW Lite on my 4.1.3 test board to VW Premium 3.1.12 and got the following error (site and user info removed):

      Code:
      Database error in vBulletin 4.1.3:
      
      Invalid SQL:
      
      	REPLACE INTO rcm7_bbcode
      		(bbcodetag, title, bbcodeexplanation, bbcodeexample, bbcodereplacement, twoparams, options, wikioptions, buttonimage)
      	VALUES
      	(
      		'redirect',
      		'Redirect',
      		'Redirects to another article.',
      		'[redirect]Redirect Page[/redirect]',
      		'[redirect]%1\$s[/redirect]',
      		0,
      		1,
      		117,
      		'bb_redirect.gif'
      	),
      	(
      		'special',
      		'Special',
      		'Quickly link to a Special Page.',
      		'[special=Specialpages]Specialpages[/special]',
      		'[special=%1\$s]%2\$s[/special]',
      		0,
      		1,
      		35,
      		'bb_special.gif'
      	),
      	(
      		'wiki',
      		'Wiki',
      		'Link to articles in the main wiki.',
      		'[wiki=Article]Click here to view Article[/wiki]',
      		'[wiki=%1\$s]%2\$s[/wiki]',
      		0,
      		1,
      		35,
      		'bb_link.gif'
      	),
      	(
      		'autolink',
      		'Autolink',
      		'For internal use only.',
      		'[autolink]Main Page[/autolink]',
      		'[autolink]%1\$s[/autolink]',
      		0,
      		0,
      		31,
      		''
      	),
      	(
      		'comment',
      		'Comment',
      		'Add a comment that is only visible in the source code.',
      		'[comment]This is an HTML comment.[/comment]',
      		'[comment]%1\$s[/comment]',
      		0,
      		1,
      		33,
      		'bb_comment.gif'
      	),
      	(
      		'h',
      		'Headline',
      		'Create any level headline.',
      		'[h=2]Headline Level 2[/h]',
      		'[h=%1\$s]%2\$s[/h]',
      		1,
      		1,
      		33,
      		'bb_headline.gif'
      	),
      	(
      		'footnote',
      		'Footnote',
      		'Add footnotes to the current article.',
      		'[footnote=\"http://www.vaultwiki.org/\"]VaultWiki - Wiki for vBulletin Forums.[/footnote]',
      		'[footnote=%1\$s]%2\$s[/footnote]',
      		0,
      		1,
      		117,
      		'bb_footnote.gif'
      	),
      	(
      		'reflist',
      		'Reference List',
      		'Display the list of all footnotes for the current article.',
      		'[reflist][/reflist]',
      		'[reflist][/reflist]',
      		0,
      		0,
      		117,
      		'bb_reflist.gif'
      	),
      	(
      		'toc',
      		'Table of Contents',
      		'Insert the table of contents somewhere specific in the current article.',
      		'[toc][/toc]',
      		'[toc]%1\$s[/toc]',
      		0,
      		0,
      		117,
      		''
      	),
      	(
      		'table',
      		'Table',
      		'Create a table for data cells.',
      		'[table]hello[/table]',
      		'[table]%1\$s[/table]',
      		0,
      		1,
      		241,
      		'bb_table.gif'
      	),
      	(
      		'hr',
      		'Horizontal Rule',
      		'Creates a horizontal line spanning a width you specify.',
      		'[hr]100[/hr]',
      		'[hr]%1\$s[/hr]',
      		0,
      		0,
      		33,
      		''
      	),
      	(
      		'showthreads',
      		'Show Threads',
      		'Lists threads with the most recent posts from the specified forum. Enter a forum ID to select the forum.',
      		'[showthreads]2[/showthreads]',
      		'[showthreads]%1\$s[/showthreads]',
      		0,
      		1,
      		253,
      		''
      	),
      	(
      		'forumindex',
      		'Forum Index',
      		'Lists all threads from the specified forum in alphabetical order. Enter a forum ID to select the forum.',
      		'[forumindex]2[/forumindex]',
      		'[forumindex]%1\$s[/forumindex]',
      		0,
      		0,
      		253,
      		''
      	),
      	(
      		'bookindex',
      		'Book Index',
      		'Lists all chapters in the specified book in chapter order. Enter a book title.',
      		'[bookindex]Demo Book[/bookindex]',
      		'[bookindex]%1\$s[/bookindex]',
      		0,
      		1,
      		253,
      		''
      	),
      	(
      		'div',
      		'Div',
      		'Create a CSS-styled block for your text.',
      		'[div] style=\"border: 1px solid #ff0000\" | Text in the block. [/div]',
      		'[div]%1\$s[/div]',
      		0,
      		1,
      		253,
      		''
      	),
      	(
      		'span',
      		'Span',
      		'Create a CSS-styled wrapper for your text.',
      		'[span] style=\"background-color: #ff0000\" | Text in the wrapper. [/span]',
      		'[span]%1\$s[/span]',
      		0,
      		1,
      		253,
      		''
      	)
      ,
      	(
      		'gallery',
      		'Gallery',
      		'Create a gallery of wiki images.',
      		'[gallery] caption=\"Gallery Title\" |
      image1.ext|Caption text
      image2.ext|Caption text
      [/gallery]',
      		'[gallery]%1\$s[/gallery]',
      		0,
      		1,
      		61
      	);
      
      MySQL Error   : Column count doesn't match value count at row 17
      Error Number  : 1136
      Request Date  : Saturday, June 18th 2011 @ 05:11:01 PM
      Error Date    : Saturday, June 18th 2011 @ 05:11:01 PM
      Script        : http://---------------.com/vault/install/upgrade_lite.php?step=3
      Referrer      : http://--------------.com/vault/install/upgrade_lite.php?step=2
      IP Address    : ------
      Username      : -----
      Classname     : vB_Database
      MySQL Version : 5.1.41-3ubuntu12.10-log
    Issue Details
    Issue Number 2359
    Issue Type Bug
    Project VaultWiki 3.x Series
    Category Install / Upgrade
    Status Duplicate
    Priority 2 - Fatal / Database Errors
    Affected Version 3.0.12
    Fixed Version (none)
    Milestone (none)
    Software DependencyAny
    Users able to reproduce bug 0
    Users unable to reproduce bug 1
    Attachments 0
    Assigned Users (none)
    Tags upgrade




    1. June 19, 2011 12:57 AM
      pegasus pegasus is offline
      VaultWiki Team
      This is fixed in the current ZIP. Download the ZIP again, replace your /vault/install folder, and try again.
      Reply Reply  
    2. June 20, 2011 12:49 PM
      randalls randalls is offline
      New Member
      This worked. Thank you.
      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 11:14 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.