tags:

views:

174

answers:

3
SQL ERROR [ mysqli ]

Can't find file: './tq/phpbb3_config.frm' (errno: 13) [1017]

SQL

SELECT config_name, config_value, is_dynamic FROM phpbb3_config

BACKTRACE

FILE: includes/db/mysqli.php
LINE: 143
CALL: dbal->sql_error()

FILE: includes/cache.php
LINE: 51
CALL: dbal_mysqli->sql_query()

FILE: common.php
LINE: 212
CALL: cache->obtain_config()

FILE: home/.d00/tq/tq.com/config.php
LINE: 18
CALL: include('common.php')

FILE: home/.d00/tq/tq.com/config3.php
LINE: 3
CALL: require_once()

FILE: home/.d00/tq/tq.com/view.php
LINE: 3
CALL: require_once()

What is the Issue for General Error ?

+1  A: 

Your database is either corrupted, or your phpbb3_config as some sort of problem.

It is also possible that some files are missing from the SQL directory, if you have done manual work there.

I might also add that there is a possible permission problem over those files, you might want to check that out too.

tomzx
+1  A: 

A file is missing, error told you everything.

usoban
But the file is avilable
joe
Are you sure it's available for the user trying to access it? (i.e. the web server or mysql server user)
Svish
+1  A: 

Krish,

The .frm files contain the table definition for your tables. errno 13 indicates a permission denied error.

Check that this file is owned by the same user & group that mysqld runs as. The owner should also have full permissions on this file as well (chmod 711).

-Dave

hobodave