Seite 6 von 13

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 14.05.2009 20:11
von Gismo110
dann kommt das hier:

Code: Alles auswählen

Allgemeiner Fehler
SQL ERROR [ mysql4 ]

You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 1 [1064]

SQL

CREATE TABLE phpbb09shoutbox (

BACKTRACE

FILE: includes/db/mysql.php
LINE: 174
CALL: dbal_mysql->sql_error()

FILE: install/index.php
LINE: 118
CALL: dbal_mysql->sql_query()

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 16.05.2009 19:31
von DreamPromise
Moin moin

Da gibts doch sicher eine Lösung für ... :wink: :wink: :wink:

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 17.05.2009 12:23
von franki
Dann versucht es mal über phpmyadmin

Code: Alles auswählen

CREATE TABLE phpbb_shoutbox (
	shout_id int(11) unsigned NOT NULL auto_increment,
	shout_user_id mediumint(8) NOT NULL,
	shout_time int(11) NOT NULL,
	shout_ip varchar(32) character set latin1 NOT NULL,
	shout_text text collate utf8_bin NOT NULL,
	shout_bbcode_bitfield varchar(255) character set latin1 NOT NULL,
	shout_bbcode_uid varchar(8) character set latin1 NOT NULL,
	shout_bbcode_flags int(11) unsigned NOT NULL default '7',
	PRIMARY KEY	(shout_id)
) DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Denkt aber daran evtl. die Syntax zu ändern.
Bei dir @Gismo110 wäre das dann, wenn ich das richtig sehe, phpbb09_shoutbox

Dann natürlich die Install nicht mehr ausführen und im ACP die Einstellungen unter Mods per Hand hinzufügen

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 17.05.2009 12:38
von DreamPromise
Moin moin

also die Tabelle wurde angelegt.
Ich hab nun versucht die Module hinzuzufügen.
Das klappt auch .. aber sie werden trotz Aktivierung nicht angezeigt ....

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 17.05.2009 15:54
von Gismo110
hi bei mir kommt in phpmyadmin dann diese fehlermeldung:

Code: Alles auswählen

Fehler

SQL-Befehl:

CREATE TABLE phpbb09_shoutbox(
shout_id int( 11 ) unsigned NOT NULL AUTO_INCREMENT ,
shout_user_id mediumint( 8 ) NOT NULL ,
shout_time int( 11 ) NOT NULL ,
shout_ip varchar( 32 ) CHARACTER SET latin1 NOT NULL ,
shout_text text COLLATE utf8_bin NOT NULL ,
shout_bbcode_bitfield varchar( 255 ) CHARACTER SET latin1 NOT NULL ,
shout_bbcode_uid varchar( 8 ) CHARACTER SET latin1 NOT NULL ,
shout_bbcode_flags int( 11 ) unsigned NOT NULL default '7',
PRIMARY KEY ( shout_id )
) DEFAULT CHARSET = utf8 COLLATE = utf8_bin

MySQL meldet: Dokumentation
#1064 - You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'collate utf8_bin NOT NULL,
   shout_bbcode_bitfield varchar(25 

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 17.05.2009 20:19
von franki
Habe jetzt mal aus meinem SQL-Backup die Tabelle heraus geholt

Code: Alles auswählen

CREATE TABLE `phpbb_shoutbox` (
  `shout_id` mediumint(8) unsigned NOT NULL auto_increment,
  `shout_user_id` mediumint(8) unsigned NOT NULL default '0',
  `shout_time` int(11) unsigned NOT NULL default '0',
  `shout_ip` varchar(40) collate utf8_bin NOT NULL default '',
  `shout_text` mediumtext collate utf8_bin NOT NULL,
  `shout_bbcode_bitfield` varchar(255) collate utf8_bin NOT NULL default '',
  `shout_bbcode_uid` varchar(8) collate utf8_bin NOT NULL default '',
  `shout_bbcode_flags` int(11) unsigned NOT NULL default '7',
  PRIMARY KEY  (`shout_id`)
) ENGINE=MyISAM AUTO_INCREMENT=1023 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
Hätte mir auch früher einfallen können :roll:

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 17.05.2009 20:38
von Gismo110
hi
gleiche fehlermeldung

Code: Alles auswählen

Fehler

SQL-Befehl:

CREATE TABLE `phpbb09shoutbox` (
`shout_id` mediumint( 8 ) unsigned NOT NULL AUTO_INCREMENT ,
`shout_user_id` mediumint( 8 ) unsigned NOT NULL default '0',
`shout_time` int( 11 ) unsigned NOT NULL default '0',
`shout_ip` varchar( 40 ) COLLATE utf8_bin NOT NULL default '',
`shout_text` mediumtext COLLATE utf8_bin NOT NULL ,
`shout_bbcode_bitfield` varchar( 255 ) COLLATE utf8_bin NOT NULL default '',
`shout_bbcode_uid` varchar( 8 ) COLLATE utf8_bin NOT NULL default '',
`shout_bbcode_flags` int( 11 ) unsigned NOT NULL default '7',
PRIMARY KEY ( `shout_id` )
) ENGINE = MYISAM AUTO_INCREMENT =1023 DEFAULT CHARSET = utf8 COLLATE = utf8_bin

MySQL meldet: Dokumentation
#1064 - You have an error in your SQL syntax.  Check the manual that corresponds to your MySQL server version for the right syntax to use near 'collate utf8_bin NOT NULL default '',
  `shout_text` mediumtex 
mit utf8 hatte ich schonmal stress bei der phpbb galerie von nickvergessen. Aber er hat den code irgendwie umgewandelt so das es klappt.
PS: Mein Webhoster ist all-inkl fals das hilft

gruß gismo110

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 19.05.2009 11:03
von Gismo110
weiß noch jemand nen rat?

gruß
gismo110

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 19.05.2009 14:49
von DreamPromise
Moin moin

eine Lösung für das eingangs erwähnte Problem hab ich nicht.
Aber zu DEINEM Problem Gismo110 hab ich da was.
Schreib all-inkl an das sie Kollation aktivieren sollen.
Ich hatte genau das gleiche Problem .. mit einer seeeehr :wink: freundlichen Mail hab ich die gebeten das zu aktivieren .. fortan hatte ich damit keine Probleme mehr...

Re: Ajax ShoutBox' Version 1.2 RC1

Verfasst: 21.05.2009 19:57
von Gismo110
so jetzt hat alles geklappt aber jetzt kommt der fehler hier wenn ich in den forum index gehe:

template->_tpl_load_file(): File ./styles/prosilver/template/shout_body.html does not exist or is empty

und im acp steht auch nix von der shoutbox
kann also nix einstellen
der block ist auch nich da

was kann ich jetzt noch machen?