Pagina 1 van 2

db_install werkt niet bij

Geplaatst: 08 mar 2006, 11:57
door Queen_Butterfly
Support template:

wat is het probleem:
wanneer ik de database update van shoutbox wil doen krijg ik de volgende melding:

Code: Selecteer alles

Install results:

phpBB : Critical Error 

Could not query shoutbox config information

DEBUG MODE

SQL Error : 1146 Table '9735boter.phpbb_shoutbox_config' doesn't exist

SELECT * FROM phpbb_shoutbox_config

Line : 233
File : common.php 
Wanneer ontstond het probleem?
Bij het installeren van shoutbox

Adres van je forum:
http://www.x-zit-nl.nl02.members.pcextreme.nl/forum
Geïnstalleerde mods:
Birhtday Hack
Gender Hack
Xmod
Quick Reply
Ezportal
Huidige template:
Sky
phpBB versie:
2.0.19
Waar is je forum gehost:
pcextreme
Heb je onlangs iets verandert aan je forum?
diverse hacks geinstallerd
Heb je gezocht naar een antwoord?
Offcourse
[/list]
Overige opmerkingen:

Geplaatst: 08 mar 2006, 14:25
door Queen_Butterfly
oke nu heb ik het wel voor elkaar dat het werkt alleen niet volledig want als ik in administratie op shoutbox klik in de linker admin panel dan krijg ik de volgende melding:

Code: Selecteer alles

phpBB : Critical Error 

Could not query shoutbox config information

DEBUG MODE

SQL Error : 1146 Table '9735boter.SHOUTBOX_CONFIG_TABLE' doesn't exist

SELECT * FROM SHOUTBOX_CONFIG_TABLE

Line : 36
File : admin_shoutbox.php 

Geplaatst: 08 mar 2006, 14:43
door Stef
Je hebt in constants de SHOUTBOX_CONFIG_TABLE niet gedefineerd.

Geplaatst: 09 mar 2006, 14:21
door Queen_Butterfly
kan je me uitleggen wat dat betekend?
in Phpmyadmin zie ik die hele tabel niet terug komen

Geplaatst: 10 mar 2006, 15:28
door Queen_Butterfly
up, kan iemand mijn vraag nog beantwoorden en helpen misschien?

Geplaatst: 10 mar 2006, 15:33
door Stef
Queen_Butterfly schreef:kan je me uitleggen wat dat betekend?
in Phpmyadmin zie ik die hele tabel niet terug komen
Lees even je modfile en dan het gedeelte van constants.php.

Geplaatst: 10 mar 2006, 19:08
door Queen_Butterfly
Stef schreef:
Queen_Butterfly schreef:kan je me uitleggen wat dat betekend?
in Phpmyadmin zie ik die hele tabel niet terug komen
ik snap probleem maar als ik

CREATE TABLE phpbb_shoutbox_config (
config_name varchar(255) NOT NULL,
config_value varchar(255) NOT NULL,
PRIMARY KEY (config_name)
);

INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_guest_view','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_guest','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_delete_all','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_delete','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_edit_all','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_edit','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_bbcode','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_smilies','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('links_names','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('make_links','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('count_msg','100');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('delete_days','30');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('text_lenght','500');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('word_lenght','90');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('date_format','D G:i');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('date_on','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shoutbox_on','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shout_width','630');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shout_height','130');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('banned_user_id','');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('banned_user_id_view','');

invoer krijg ik enkel maar foutmeldingen van er is een syntax fout ofzo

Geplaatst: 10 mar 2006, 19:13
door Queen_Butterfly
als ik stukje van:

Code: Selecteer alles

INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_guest_view','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_guest','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_delete_all','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_delete','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_edit_all','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_edit','0');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_bbcode','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('allow_smilies','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('links_names','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('make_links','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('count_msg','100');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('delete_days','30');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('text_lenght','500');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('word_lenght','90');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('date_format','D G:i');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('date_on','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shoutbox_on','1');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shout_width','630');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('shout_height','130');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('banned_user_id','');
INSERT INTO phpbb_shoutbox_config (config_name, config_value) VALUES ('banned_user_id_view','');
invoer krijg ik de volgende foutmelding:

Code: Selecteer alles

Fout 
SQL-query: 

INSERT INTO phpbb_shoutbox_config( config_name, config_value ) 
VALUES (

'allow_guest_view', '1'
) 
MySQL retourneerde:  

Geplaatst: 19 mei 2006, 21:05
door Queen_Butterfly
up, ik kwam erachter nu mijn shout niet werkt dat het nog steeds niet werk in de adminpanel kan iemand mij helpen?

Geplaatst: 21 mei 2006, 16:40
door Bee
Heb je de instructies in constants.php ook uitgevoerd? Ik weet niet of die mod het heeft, maar zeer waarschijnlijk wel.

Geplaatst: 21 mei 2006, 16:44
door Queen_Butterfly
jup nagelopen, geen fouten gevonden en het werkt nog steeds niet.
Overgens heb ik fully integrated shoutbox 1.1.6

Geplaatst: 21 mei 2006, 16:45
door Bee
Die shoutbox heeft geen configuratietabel.

Geplaatst: 21 mei 2006, 16:47
door Queen_Butterfly
Bee schreef:Die shoutbox heeft geen configuratietabel.

hoe bedoel je dat? Ik had overgens ook andere topic geopend, omdat ik hier small shoutbox gebruikte wat niet werkte, toen heb ik alles eraf gehaald en deze shoutbox gebruikt. En weer krijg ik die melding. Terwijl ik niet eens sql zelfs hoef uit te voeren alleen even update bestandje gebruiken

Geplaatst: 21 mei 2006, 16:49
door Bee
admin_shoutbox.php is er niet bij de FIS, en ook common.php wordt niet aangepast bij de FIS.

Geplaatst: 21 mei 2006, 17:12
door Queen_Butterfly
Bee schreef:admin_shoutbox.php is er niet bij de FIS, en ook common.php wordt niet aangepast bij de FIS.
ja maar waarom geeft hij dan welk telkens die melding als ik alles al lang vervangen heb? :S

Geplaatst: 21 mei 2006, 17:24
door Queen_Butterfly
oke ik ben eruit, maar er is ander probleem

in mijn ene template sky werkt hij perfect..
Maar op mijn andere template zie ik dit:

http://www.x-zit.nl/foto/babbelobix.JPG
waar zou het fout zijn kunnen gegaan???

Geplaatst: 22 mei 2006, 11:05
door Queen_Butterfly
kan iemand mij helpen met wat er fout kan zijn?

Geplaatst: 23 mei 2006, 13:41
door Queen_Butterfly
ehm anybody?

Geplaatst: 23 mei 2006, 13:43
door Bee
In enkele van de shoutbox bestanden is de stylesheet nog hardcoded ingevoerd.

Geplaatst: 24 mei 2006, 19:54
door Queen_Butterfly
Bee schreef:In enkele van de shoutbox bestanden is de stylesheet nog hardcoded ingevoerd.
stylesheet welke bestand moet ik dan precies zoeken? :)