When I try and import my PHPFox users to my vBulletin forum, I get the following errors:
Step 1 of import:
Code:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'rovobcom'@'localhost' (using password: NO) in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 15
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 15
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 16
Line 15 says:
Code:
$a = mysql_query("SELECT * FROM forum");
Line 16 says:
Code:
while ($b = mysql_fetch_array($a) )
Step 2 of import:
Code:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'rovobcom'@'localhost' (using password: NO) in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 47
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 47
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 48
Line 47 says:
Code:
$a = mysql_query("SELECT * FROM user");
Line 48 says:
Code:
while ($user = mysql_fetch_array($a) )
Step 3 (final step) of import:
Code:
Warning: mysql_query() [function.mysql-query]: Access denied for user 'rovobcom'@'localhost' (using password: NO) in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 112
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 112
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home1/rovobcom/public_html/a247/plugins/vbulletin/install/import.php on line 113
Line 112 says:
Code:
$a = mysql_query("SELECT * FROM forum_post");
Line 113 says:
Code:
while ($b = mysql_fetch_array($a) )
Any ideas?