I am trying to upgrade my UBBThreads 6.5.4 to 7.0 (and to 7.0.2)
But I have problem using importers .
I first rename my old ubbthreads/ to ubbthreads.654/ , and place 7.0 to ubbthreads/ directory. And then copy threads_import.zip's content to importers/ directory.
After bring up ubbthreads/importers/threads_import.php in browser , It shows cannot connect to MySQL error , and I know I have to edit parameters in includes/config.inc.php .
I open config.inc.php , and found it is almost empty , just two lines :
$VERSION = "7.0";
$config = array ();
I then copy my OLD threads.654/includes/config.php's content to it , except the $VERSION parameter.
After bring up threads_import.php in browser , it still shows cannot to mysql server , I feel strange , and check the parameters ...
$VERSION = "7.0";
$config['dbtype'] = "mysql";
$config['dbserver'] = "db";
$config['dbuser'] = "xxx";
$config['dbpass'] = "yyy";
... (skip)...
These settings are just OK , and I can connect manually. I don't know what's wrong ... I just don't know what parameters it needed.
After I inspect into new ubbthreads's mysql.inc.php , I found
mysql_connect($config['DATABASE_SERVER'],.....
I finally realized that the parameters's name are changed !!!
Why isn't there a script to transform UBB6.5's parameters name to UBB7 !?
Where can I find all UBB7's correct parameters in config.inc.php ? Why nobody else has this problem ?