Hi Chacmool,
I get the following error :
An error was encountered
File: /usr/local/psa/home/vhosts/sammyfilez.com/httpdocs/forum/migration/functions.php
Line: 91
Converter reported: Unable to fetch table list
Database reported: You have an error in your SQL syntax near 'IN `phorum_sammyfilez` LIKE '%users'' at line 1 (Errno: 1064)
That's about this part :
// Get list of "proabable" prefixes
$prefix_list = '';
$res = $fdb->query('SHOW TABLES IN '.$_SESSION['php_db'].' LIKE \'%'.$tables['Users'].'\'') or myerror('Unable to fetch table list', __FILE__, __LINE__, $fdb->error());
while($ob = $fdb->fetch_row($res))
{
$prefix = substr($ob[0], 0, strlen($ob[0]) - strlen($tables['Users']));
$prefix_list .= ' <a href="?page=settings&newprefix='.$prefix.'">'.$prefix.'</a><br>'."\n";
}
Grtz,
Jeronimo