PDA

View Full Version : Table engine missing


vladone
03-26-2004, 04:19 AM
I have Win2003 with Apache, PHP and MySql instaled. All works fine. I create database with all tables engines, excludes, keywords, ... but when acces ../admin/index.php, or ../search.php
receive this message:

"Table engine missing. Table excludes missing. Table keywords missing. Table sites missing. Table spider missing. Table tempspider missing. Table logs missing."

This tables exist in my database. What is wrong?

Charter
03-29-2004, 11:47 AM
Hi. Check that the prefix defined in connect.php matches that of the tables. If there is no prefix on the tables, then change the following:

define('PHPDIG_DB_PREFIX','<dbprefix>');

to the following:

// two single quotes, no space inbetween
define('PHPDIG_DB_PREFIX','');

vladone
03-30-2004, 10:38 PM
Thanks! Work!