Hehehe, ale ladnie go motywujecie. Nie ma co.
Ja juz czekam od dluzszego czasu na finalna wersje i sie doczekac nie moge. Bete instalowalem, ale mi errory wyskakiwaly i sobie na razie odpuscilem.
[ Dodano: 10 Sie 2005 14:15 ]W instrukcji jest troche bledow w zwiazku z nowa wersja phpBB i poprawkami w niej zawartymi, ktore uniemozliwiaja odpalenie instalacji po EM. Ale po ich poprawieniu mozna znacznie przyspieszyc instalacje. Ponizej poprawki:
[phpbb]W linii 152:
Zamiast:
$user_style = ( isset($_POST['style']) ) ? intval($_POST['style']) : $board_config['default_style'];
Winno być:
$user_style = ( isset($HTTP_POST_VARS['style']) ) ? intval($HTTP_POST_VARS['style']) : $board_config['default_style'];
[/phpbb]
[phpbb]W linii 323:
Zamiast:
u.user_icq, u.user_aim, u.user_yim,4 u.user_regdate, u.user_msnm,
Winno być:
u.user_icq, u.user_aim, u.user_yim, u.user_regdate, u.user_msnm,
[/phpbb]
[phpbb]W linii 858:
Zamiast:
$icq = ( !empty($_POST['icq']) ) ? trim(strip_tags( $_POST['icq'] ) ) : '';
$aim = ( !empty($_POST['aim']) ) ? trim(strip_tags( $_POST['aim'] ) ) : '';
$msn = ( !empty($_POST['msn']) ) ? trim(strip_tags( $_POST['msn'] ) ) : '';
$yim = ( !empty($_POST['yim']) ) ? trim(strip_tags( $_POST['yim'] ) ) : '';
Winno być:
$icq = ( !empty($HTTP_POST_VARS['icq']) ) ? trim(strip_tags( $HTTP_POST_VARS['icq'] ) ) : '';
$aim = ( !empty($HTTP_POST_VARS['aim']) ) ? trim(strip_tags( $HTTP_POST_VARS['aim'] ) ) : '';
$msn = ( !empty($HTTP_POST_VARS['msn']) ) ? trim(strip_tags( $HTTP_POST_VARS['msn'] ) ) : '';
$yim = ( !empty($HTTP_POST_VARS['yim']) ) ? trim(strip_tags( $HTTP_POST_VARS['yim'] ) ) : '';
[/phpbb]
Poza tym w liniach 176, 193, 210 sa nieznane dla EM polecenia [ IN-LINE DELETE ]. Zamiast tego powinno by [IN-LINE REPLACE WITH] i ponizej wpisac jakis komentarz np /**/
Dalej idac, komenda SQL nie moze byc sparsowana i niestety trzeba ja wykonanac recznie. Blad jaki sie pojawia:
Cytuj:
SQL PROCESSING ERROR:
No SQL alterations will be performed. However, you may skip SQL processing, continue installing the MOD, and deal with the SQL manually
The following error occured:
FATAL ERROR: Unable to parse SQL statement; [NULL ]
CREATE TABLE `phpbb_unicomm` ( `uc_id` int(11) unsigned NOT NULL auto_increment, `uc_name` varchar(255) NOT NULL default '', `uc_type` tinyint(2) unsigned NOT NULL default '0', `uc_link` varchar(255) NOT NULL default '', `uc_cgi` varchar(255) default NULL, `uc_button` varchar(255) NOT NULL default '', `uc_icon` varchar(255) default NULL, `uc_iconx` int(6) default NULL, `uc_icony` int(6) default NULL, `uc_order` int(6) unsigned NOT NULL default '0', `uc_but_width` int(6) unsigned NOT NULL default '0', `uc_but_height` int(6) unsigned NOT NULL default '0', `uc_pattern` varchar(255) default NULL, `uc_find` text, `uc_replace` text, PRIMARY KEY (`uc_id`) ) TYPE=INNODB
"The Madness is out there!"