Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Yesterday at 02:04 PM
Shariq Ansari Posted April 8, 2015 Posted April 8, 2015 I've got 4400+ threads in a vBulletin 3.8 forum that I'm converting to IPB 3.4.7.IPB seems to have kinda half-assed support for prefixes compared to vBulletin; the first tag on a topic is (optionally) repurposed to serve double-duty as a prefix...The converter package doesn't even seem to attempt to migrate these prefixed threads...What can I do?The number of threads is large enough that doing things manually isn't really an option. We can ask users to re-tag and then "prefix" everything by checking the box, but that too would be incomplete, slow, error-prone, etc.Is there a solution for this problem?
Kjell Iver Johansen Posted April 8, 2015 Posted April 8, 2015 I had some good help using the following plug-in - might be useful for you?
Shariq Ansari Posted April 9, 2015 Author Posted April 9, 2015 I had some good help using the following plug-in - might be useful for you? That would probably cover our day-forward needs, but it wouldn't cover the actual migration/conversion from vBulletin 3.8.X...
Angus90 Posted April 9, 2015 Posted April 9, 2015 IPB seems to have kinda half-assed support for prefixes compared to vBulletin; the first tag on a topic is (optionally) repurposed to serve double-duty as a prefix...The converter package doesn't even seem to attempt to migrate these prefixed threads...What can I do?I have the same problem with my project. I´m in the process of converting my vb4 board to ips using the official ips 3.4.7 converter, too. To resolve the prefix issue I wrote a relatively simple php-script, that has to be used right before the ips converter. This script converts all prefixes to tags automatically.Notice: vBulletin stores prefixes as ID´s and tags as clear text. I hope there will be a new version of the mentioned addon for ips4 in near future.
Shariq Ansari Posted April 10, 2015 Author Posted April 10, 2015 I have the same problem with my project. I´m in the process of converting my vb4 board to ips using the official ips 3.4.7 converter, too. To resolve the prefix issue I wrote a relatively simple php-script, that has to be used right before the ips converter. This script converts all prefixes to tags automatically. Notice: vBulletin stores prefixes as ID´s and tags as clear text. I hope there will be a new version of the mentioned addon for ips4 in near future. Could you share the code for that script with me, by any chance?
AlexJ Posted April 10, 2015 Posted April 10, 2015 Contact IPS team through "ticket" and they would probably look into it for you and all.
Angus90 Posted April 10, 2015 Posted April 10, 2015 Could you share the code for that script with me, by any chance? Yes, I do. But again. It is for vB4 and I´m not confident with vB3 anymore So it´s possible that you have to change the script concerning the right tables of your database. <h1>Database Migration Script</h1> <?php $prefix = array( array('ID' => 1, 'TEXT' => 'Example Prefix'), // duplicate this line for each single prefix. You´ll find the ID and Prefix in your ACP array('ID' => 0, 'TEXT' => '')); $mysqlhost = 'localhost'; // enter MySQL-Host $mysqluser = 'XXX'; // enter MySQL-User $mysqlpwd = 'YYY'; // enter MySQL-PW $connection = mysql_connect($mysqlhost, $mysqluser, $mysqlpwd); $connection = mysql_connect($mysqlhost, $mysqluser, $mysqlpwd); if (!$connection) { $output .= 'Verbindungsversuch fehlgeschlagen: ' . mysql_error(); } $mysqldb = 'ZZZ'; // your vB Database mysql_select_db($mysqldb, $connection); $table = 'thread'; $sql = 'SELECT * FROM `' . $table . '`'; $threads = mysql_query($sql); $output .= '<p>Anzahl der selektierten Zeilen: ' . mysql_num_rows($threads) . '</p>'; $output .= '<p>Selektierte Tabelle: ' . $table; while ($row = mysql_fetch_array($threads)){ $sql = ''; if ($row[2] == '') { $output .= '<p>Row: ' . $row[0] . '=> EMPTY!!</p>'; $sql .= 'UPDATE `' . $table . '` SET `taglist` = \'\' WHERE `threadid` = ' . $row[0]; } else { for($x = 0; $x < count($prefix); $x++) { if ($prefix[$x]['ID'] == $row[2]) { $output .= '<p>Row: ' . $row[0] . '=> ' . $prefix[$x]['TEXT'] . '</p>'; $sql .= 'UPDATE `' . $table . '` SET `taglist` = \'' . $prefix[$x]['TEXT'] . '\' WHERE `threadid` = ' . $row[0]; } } } mysql_query($sql); } echo '<body>'.$output.'</body>'; ?> Please notice the comments to use this script correctly. And one more thing ... You will lose all of you´re current tags!
Bruce_man Posted April 10, 2015 Posted April 10, 2015 I hope there will be a new version of the mentioned addon for ips4 in near future. I SURE hope so. That is a MUST!!!!!!!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.