• 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 Sales
    • Pre-Sales Questions
    • Other Concerns

    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: Other Concerns

    • Thread Tools
      • Show Printable Version
    1. June 4, 2011 #1
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0

      Question Other Concerns

      You can upgrade the free version to the premium version?
      when you leave vb 4.1.4 update with the new editor vaultwiki editor?
      That character set used vaultwiki? latin1 or utf-8?
      I use latin 1 will have conflicts?
      Helping me to support the purchase?
      whether to purchase the full version and does not satisfy me I can demand the return of my money?
      because it is the same test the free version.
      try to install it but something does not work well with links
      I will try again tomorrow to try the free version

      Thanks
      Reply With Quote Reply With Quote

    2. June 5, 2011 #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,959
      Blog Entries
      18
      Rep Power
      687
      Yes, you can upgrade from the Lite version to the Premium version.

      We are in the process of updating VaultWiki for the new editor in vB 4.1.4, but there are still some bugs in 4.1.4 beta that makes it impossible. We are working with the vB development team to resolve these issues before the final release.

      VaultWiki 3 uses the same character set as your forum, but UTF-8 is recommended for new forums. In upcoming VaultWiki 4, because of new features, we will force UTF-8 for wiki data. You should not have conflicts with the current version if you only have 1 forum language or all your languages use the same character set.

      I am not sure what you mean by "helping me to support the purchase". VaultWiki licenses come with free technical support via this web site for 1 year, you must renew annually.

      If you are not satisfied with your purchase, you won't receive a refund. Most software you buy is like this, because it's not a physical product and it's easy to make copies. vBulletin has the same policy. If you like the Lite version, you will like the Premium version much more.

      If you're having difficulty installing and trying the free version, please elaborate on the issue.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    3. June 6, 2011 #3
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      hello thank you very much for the answers
      be sure that when I can I will buy a license for this product that I really find it fantastic, I have something big planned for this great product.

      I recently I have installed my forum, has some changes, style created by me, some products and other configurations. You have no users, no themes,

      How could i change the collation of latin1 to utf-8?
      a little guidance please.
      or do you recommend?

      Greetings

      PD: The https is uncomfortable for web translators u_u
      Reply With Quote Reply With Quote

    4. June 6, 2011 #4
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      vBulletin diagnosis shows me:

      character_set_client latin1
      character_set_connection latin1
      character_set_database latin1
      character_set_filesystem binary
      character_set_results latin1
      character_set_server utf8
      character_set_system utf8
      character_sets_dir /usr/share/mysql/charsets/
      collation_connection latin1_swedish_ci
      collation_database latin1_swedish_ci
      collation_server utf8_general_ci

      and phpmyadmin the query: [SHOW VARIABLES LIKE 'char%']
      show me:

      character_set_client utf8
      character_set_connection latin1
      character_set_database latin1
      character_set_filesystem binary
      character_set_results utf8
      character_set_server utf8
      character_set_system utf8
      character_sets_dir /usr/share/mysql/charsets/
      Reply With Quote Reply With Quote

    5. June 6, 2011 #5
      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,959
      Blog Entries
      18
      Rep Power
      687
      While you should edit my.conf to change the default character set to 'utf8' and collation to 'utf8_general_ci' if possible for future databases, the following script should convert your existing database.

      1. Create convert.php in your vBulletin root folder, with contents:
      Code:
      <?php
      
      //error_reporting(-1);
      define('THIS_SCRIPT', 'conversion');
      
      $globaltemplates = array();
      $phrasegroups = array();
      $specialtemplates = array();
      $actiontemplates = array();
      
      require_once('./global.php');
      
      $db->query_write("
      	ALTER DATABASE `" . $vbulletin->config['Database']['dbname'] . "`
      	DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
      ");
      
      $tables = $db->query_read("SHOW TABLE STATUS");
      
      while ($table = $db->fetch_array($tables))
      {
      	if ($table['Collation'] != 'utf8_general_ci')
      	{
      		echo $table['Name'] . "\n";
      		echo "Collation: $table[Collation]\n";
      
      		$db->query_write("
      			ALTER TABLE $table[Name]
      			DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci
      		");
      
      		$cols = $db->query_read("SHOW FULL COLUMNS FROM $table[Name]");
      		$update_cols = array();
      
      		while ($col = $db->fetch_array($cols))
      		{
      			if ($coll['Collation'] === NULL)
      			{
      				continue;
      			}
      
      			if ($col['Collation'] != 'utf8_general_ci')
      			{
      				echo "-- $col[Name]\n";
      				echo "-- Collation: $col[Collation]\n";
      
      				$def = "$col[type] CHARACTER SET utf8 COLLATE utf8_general_ci";
      
      				if ($col['Null'])
      				{
      					$def .= " NULL";
      
      					if ($col['Default'] === NULL)
      					{
      						$def .= " DEFAULT NULL";
      					}
      				}
      				else if ($col['Default'] !== NULL)
      				{
      					$def .= " DEFAULT '" . $db->escape_string($col['Default']) . "'";
      				}
      
      				if ($col['Extra'])
      				{
      					$def .= " $col[Extra]";
      				}
      
      				$update_cols[] = "CHANGE $col[Name] $col[Name] $def";
      			}
      		}
      		$db->free_result($cols);
      
      		if ($update_cols)
      		{
      			$db->query_write("
      				ALTER TABLE $table[Name]
      				" . implode(",\n", $update_cols) . "
      			");
      		}
      	}
      }
      $db->free_result($tables);
      2. Visit convert.php.
      3. Confirm that some tables on your database are updated.
      4. Delete convert.php.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    6. June 6, 2011 #6
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      edit the file "config.php"

      and uncomment this:
      // $config['Mysqli']['charset'] = 'utf8';

      q script and put me think is missing? ">"at the end
      and also in "convert.php"

      ALTER DATABASE `" . $vbulletin->config['Database']['dbname'] . "`

      in dbname is the name of my database, and Database? server name? localhost?

      and where is the username and password from the database?
      Reply With Quote Reply With Quote

    7. June 6, 2011 #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,959
      Blog Entries
      18
      Rep Power
      687
      my.conf is not the same as config.php. You don't need to edit config.php or convert.php. Just use the file as I provided it.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    8. June 6, 2011 #8
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      and phpmyadmin the query: [SHOW VARIABLES LIKE 'char%']
      show me:

      character_set_client utf8
      character_set_connection utf8
      character_set_database utf8
      character_set_filesystem binary
      character_set_results utf8
      character_set_server utf8
      character_set_system utf8

      it seems that everything works fine
      when I create themes with characters such as: (ñàèìòùâêîôû) in the web address (url) I appear like this: (% E0% F1% E8% EC% F9% F2% E2% EA% EE% F4% FB)
      works great, then when you buy better stay vBSEO

      but I'm using the Spanish language: ISO-8859-1
      and administering languages ​​/ edit configuration / HTML Character /
      I have to default to ISO-8859-1
      Okay?
      or there is another change I should do?

      Spanish language should use a utf-8? Character to HTML /
      default to utf-8?

      and I have friendly urls configured in: Mod Rewrite Friendly URLs
      should change something?
      configurations that I still lack?

      PD: thanks for the help pegasus.
      I have everything 100% functional vaultwiki.
      Last edited by Banned; June 6, 2011 at 8:43 PM.
      Reply With Quote Reply With Quote

    9. June 6, 2011 #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,959
      Blog Entries
      18
      Rep Power
      687
      Yes, you should also change your Spanish language to UTF-8.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    10. June 6, 2011 #10
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      Thanks for the help pre support XD
      that I recommended settings for: vbulletin friendly urls.
      I have not yet vBSEO.
      I have it configured like this: url rewrite mod

      and also:
      another initial configuration I recommended to be 100% compatible with vaultwiki?
      my members can have any nickname?
      Reply With Quote Reply With Quote

    11. June 7, 2011 #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,959
      Blog Entries
      18
      Rep Power
      687
      That should all be fine.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    12. June 7, 2011 #12
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      my users can have any nickname?
      nicks with symbols? spaces, etc.?
      Reply With Quote Reply With Quote

    13. June 7, 2011 #13
      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,959
      Blog Entries
      18
      Rep Power
      687
      That's a question to ask the vBulletin staff. Your forum users are contributing to the wiki. There isn't a separate sign-in system for VaultWiki.
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    14. June 7, 2011 #14
      Banned
      • View Profile
      • View Forum Posts
      • View Blog Entries
      • View Articles
      Banned is offline
      Junior Member
      Join Date
      May 18, 2011
      Posts
      12
      Rep Power
      0
      thank you very much.
      my translation utf8 install
      then reconstructed languages
      --- I went errors
      so uncheck:

      $ config ['mysqli'] ['charset'] = 'utf8';

      then "update counters"
      Reconstructed information of the topics and forums
      and stay well

      THANKS !!!

      now proves the free version

      and when
      vbulletin 4.1.4 is stable I buy vaultwiki
      Reply With Quote Reply With Quote

    15. June 18, 2011 #15
      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,959
      Blog Entries
      18
      Rep Power
      687
      VaultWiki 3.0.12 is out and compatible with vBulletin 4.1.4. There are still some bugs in vBulletin 4.1.4 but we did our part
      - lead developer for VaultWiki
      Reply With Quote Reply With Quote

    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 8:08 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.