View Single Post
  #3  
Old 18th August 2009, 12:41
mybe mybe is offline
Member
 
Join Date: Aug 2009
P2P
Posts: 1
Default
Thank you very much...

you have to enable innoDB then import gazzelle sql

then in install_handle.php find this line
PHP Code:
mysql_select_db($_POST['sqldb']);
mysql_query("SELECT COUNT(ID) FROM permissions");
if(
mysql_error()){
    
fail('Something went wrong when trying to create the tables: '.mysql_error());

and replace with this
PHP Code:
/*mysql_select_db($_POST['sqldb']);
mysql_query("SELECT COUNT(ID) FROM permissions");
if(mysql_error()){
    fail('Something went wrong when trying to create the tables: '.mysql_error());
}*/ 
Reply With Quote