Step 2: MySQL temporary table creation denied [message #20797] |
Thu, 28 October 2004 22:51 |
dadij
Messages: 9 Registered: October 2004
Karma: 0
|
Junior Member |
|
|
When I hit the Next button in installation step 2 I get:
FATAL ERROR: your MySQL account does not have permissions to create temporary tables.
Enable this functionality and restart the script.
It looks like this error message comes from lines 160-162 in install.php when it tries to execute the following SQL statement:
CREATE TEMPORARY TABLE fud_forum_install_test_table (test_val INT)
I copied that statement into PHPMyAdmin and tried it there and it seems to be executed without an error:
Your SQL-query has been executed successfully (Query took 0.0026 sec)
I could not find anything about this problem in the forums.
FUDforum v2.6.8 Release Candidate #1
MySQL 4.0.18.
PHP Version 4.3.6
safe_mode off
|
|
|
|
|
Re: Step 2: MySQL temporary table creation denied [message #20805 is a reply to message #20800] |
Fri, 29 October 2004 03:32 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Can you open the install.php script and inside the
if (!mysql_query("CREATE TEMPORARY TABLE fud_forum_install_test_table (test_val INT)")) {
add var_dump(mysql_error());
FUDforum Core Developer
|
|
|
|
|
|
Re: Step 2: MySQL temporary table creation denied [message #20869 is a reply to message #20863] |
Sun, 31 October 2004 18:11 |
Ilia
Messages: 13241 Registered: January 2002
Karma: 0
|
Senior Member Administrator Core Developer |
|
|
Your host is wrong, LOCK is a per database/user setting with no impact on other users on the system.
FUDforum uses locking to ensure data consistency and without lock it will simply not work.
FUDforum Core Developer
|
|
|