SQL Error

Status
Not open for further replies.

lupuslun

New Member
Messages
2
Reaction score
0
Points
1
SQL Error:
1146 - Table 'lupuslun_198674LusIn.mybbdatacache' doesn't exist
Query:
SELECT title,cache FROM mybbdatacache

____

$config['database']['type'] = 'mysql';
$config['database']['database'] = 'lupuslun_*********';
$config['database']['table_prefix'] = 'mybb_';

$config['database']['hostname'] = 'localhost';

____

What am I doing wrong?
 

sobakix2

New Member
Messages
28
Reaction score
0
Points
1
mysql module is quite obsolete and likely turned off in your php version. use 'mysqli' or 'pdo' instead
 

sobakix2

New Member
Messages
28
Reaction score
0
Points
1
then i guess it's a valid error message and you indeed have that table missing. one solution is to recreate the entire repository in a separate database or at least with different table prefix and then recreate the missing table using the DDL you can pull from the new table. that's in case you already have data that you want to keep. if it's a brand new repository - just delete it and recreate from scratch

also google is your best friend: https://community.mybb.com/thread-113427.html
 
Status
Not open for further replies.
Top