Germany
|
Hello,
Latest revision of Discuz ML contains a small bug which unable user to run an installer. To fix it, we have to open following file:
/your_discuz/install/include/install_function.php
Go to the 511th line and delete " ) " symbol before " ; " or just use search to find
- /*vot*/ (v_compare($dbver, '4.1') > 0) ? " ENGINE=$type DEFAULT CHARSET=".DBCHARSET : " TYPE=$type");
Copy the Code
replace to
- /*vot*/ (v_compare($dbver, '4.1') > 0) ? " ENGINE=$type DEFAULT CHARSET=".DBCHARSET : " TYPE=$type";
Copy the Code
|
|