Quote:
Originally Posted by klaush
Invalid SQL:
SELECT * FROM quote ORDER BY id ASC;
MySQL-Fehler : Table 'blabla_bla.quote' doesn't exist
In deed, the prefix "vb_" before the "qoute" is missing.
Any idea how to fix this?
|
Find:
Code:
$quote_list_sql = $db->query_read("SELECT * FROM quote ORDER BY id ASC");
Replace EVERY MATCH with:
Code:
$quote_list_sql = $db->query_read("SELECT * FROM ". TABLE_PREFIX . "quote ORDER BY id ASC");
Quote:
Originally Posted by imedic
Same error to me too. Hope someone correct it.
I was planning to use this in a more creative way:
Not to display the quotes in forum home but in all errors the forum gives, in redirect page , or other forum notification to users making boring errors & redirect pages much more interesting hence forum experience more interesting.
Probably a nice expansion of this mode if u can add from admin cp the insertion of quotes in all errors and redirect pages.
|
I think it can be done by changing phrases.
Or you mean different error message for same error?