MyBB Community Forums

Full Version: Problem after installing Scurity Update
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
After I updated, I got the following message:

Quote:MyBB Error

MyBB has generated a critical error and as a result cannot function correctly.

MyBB Said:


Error Code: board_not_installed

Your board has not yet been installed and configured. Please do so before attempting to browse it.


Please try clicking the Refresh button in your web browser to see if this corrects this problem.

We apologise for any inconvenience.

Can anyone help? Sad
Did you follow the upgrade instructions? You were not supposed to upload the /install/ folder, /inc/config.php and /inc/settings.php.
No, I only uploaded the files in the upgrade
Is your config.php file empty or does it have values in it?
It's empty Sad
Try adding this to it...

<?php
/* Database Configuration */
$config['dbtype'] = "mysql";
$config['hostname'] = "localhost";
$config['username'] = "user";
$config['password'] = "pass";
$config['database'] = "database";
$config['table_prefix'] = "mybb_";

/* Admin CP URL */
$config['admindir'] = "admin";

/* Datacache Configuration */

/* files = Stores datacache in files inside /inc/cache/ (Must be writable)*/

/* db = Stores datacache in the database*/
$config['cachestore'] = "db";
?>

Filling in the correct values of course Smile
Thanks, I did that and got this message:

[quote[mySQL error: 1142
SELECT command denied to user 'Viper'@'localhost' for table 'mybb_datacache'
Query: SELECT title,cache FROM mybb_datacache[/quote]
Vip07 Wrote:Thanks, I did that and got this message:

[quote[mySQL error: 1142
SELECT command denied to user 'Viper'@'localhost' for table 'mybb_datacache'
Query: SELECT title,cache FROM mybb_datacache

Please confirm that you correctly changed the info inside the config.php file, so it matches your current MySQL login information.
This is the config.php file that I uploaded:

<?php
/* Database Configuration */
$config['dbtype'] = "mysql";
$config['hostname'] = "localhost";
$config['username'] = "Viper";
$config['password'] = "******";
$config['database'] = "RawUnleashedForum";
$config['table_prefix'] = "mybb_";

/* Admin CP URL */
$config['admindir'] = "admin";

/* Datacache Configuration */

/* files = Stores datacache in files inside /inc/cache/ (Must be writable)*/

/* db = Stores datacache in the database*/
$config['cachestore'] = "db";
?>

If you're using cPanel or anything similar, normally it is youruser_db. Have you tried that?

And triple check all that's right Wink
Pages: 1 2