Fehler nach Update mit Style Installisierung
Verfasst: 23.10.2007 12:25
Hallo,
kriege diesen Fehler, wenn ich ein Style Installieren möchte:
Vor meinem Update von RC5 auf RC7 ging noch alles...
Durch die Suche fand ich eine SQL, welche aber von RC3 auf RC4 ist...
So habe ich die SQL Code auch mal Ausgeführt - trotztem obwohl es Ausgeführt worden ist erscheint ein Fehler
Könnte einer Helfen?
Gruß
kriege diesen Fehler, wenn ich ein Style Installieren möchte:
Code: Alles auswählen
SQL ERROR [ mysql4 ]
Incorrect string value: '\xA9 phpB...' for column 'template_copyright' at row 1 [1366]
SQL
INSERT INTO phpbb_styles_template (template_name, template_copyright, template_path, bbcode_bitfield, template_storedb) VALUES ('INDUSTRIAL', '� phpBB Group, 2003', 'INDUSTRIAL', 'kNg=', 0)
BACKTRACE
FILE: includes/db/mysql.php
LINE: 158
CALL: dbal->sql_error()
FILE: includes/acp/acp_styles.php
LINE: 3131
CALL: dbal_mysql->sql_query()
FILE: includes/acp/acp_styles.php
LINE: 2968
CALL: acp_styles->install_element()
FILE: includes/acp/acp_styles.php
LINE: 2647
CALL: acp_styles->install_style()
FILE: includes/acp/acp_styles.php
LINE: 143
CALL: acp_styles->install()
FILE: includes/functions_module.php
LINE: 471
CALL: acp_styles->main()
FILE: adm/index.php
LINE: 75
CALL: p_master->load_active()
Durch die Suche fand ich eine SQL, welche aber von RC3 auf RC4 ist...
Code: Alles auswählen
ALTER TABLE `phpbb_rc3_styles` CHANGE `style_id` `style_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_rc3_styles_imageset` CHANGE `imageset_id` `imageset_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_rc3_styles_template` CHANGE `template_id` `template_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_rc3_styles_template_data` CHANGE `template_id` `template_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_rc3_styles_theme` CHANGE `theme_id` `theme_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
Code: Alles auswählen
ALTER TABLE `phpbb_styles` CHANGE `style_id` `style_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_styles_imageset` CHANGE `imageset_id` `imageset_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_styles_template` CHANGE `template_id` `template_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_styles_template_data` CHANGE `template_id` `template_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
ALTER TABLE `phpbb_styles_theme` CHANGE `theme_id` `theme_id` SMALLINT( 4 ) UNSIGNED NOT NULL AUTO_INCREMENT ;
Gruß