- Adres van je forum: http://rsmarktplaats.nl
Event. modificaties op je forum: http://www.riccardobianconi.it/en/phpbb ... -feedback/
Wanneer ontstond het probleem? bij instalatie van feedback systeem
phpBB versie: 3.0.11
Heb je onlangs iets veranderd aan je forum?
Wat is het probleem?
error in database bij feedback systeem
Forumregels
LEES: Richtlijnen voor Support. Vul de support template in!
Verschaf iemand geen servertoegang tenzij het niet anders kan. Maak altijd eerst een volledige backup en verander de inloggevens na afloop. Eigen risico.
LEES: Richtlijnen voor Support. Vul de support template in!

-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
error in database bij feedback systeem
Laatst gewijzigd door David op 06 jun 2013, 19:09, 1 keer totaal gewijzigd.
Reden: Onderwerp verplaatst van 3.0 Support naar 3.0 Modificaties
Reden: Onderwerp verplaatst van 3.0 Support naar 3.0 Modificaties
Re: error in database bij feedback systeem
Heb je alle instructies gedaan uit de install.xml?
Volgens mij ben je iets vergeten in de includes
Of heb je de install.php niet gedaan
Volgens mij ben je iets vergeten in de includes
Of heb je de install.php niet gedaan
Forum voor NL Extensie vertalingen ---> https://www.solidjeuh.fun
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
dit heb ik allemaal gedaan
Re: error in database bij feedback systeem
Zou je eens in je database kunnen kijken of genoemde database tabel aanwezig is in je database? Dit zou je kunnen doen met behulp van phpmyadmin.
Op zoek naar een vertaling voor je extensie? vertalingen
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
nee, deze kan ik niet vinden..
Snap ook niet meteen hoe ik dat moet aanmaken.
http://prntscr.com/18laoa
Snap ook niet meteen hoe ik dat moet aanmaken.
http://prntscr.com/18laoa
Re: error in database bij feedback systeem
Heb je deze toegevoegd via phpmyadmin?
Je database selecteren / kiezen, en dan tabblad SQL

Code: Selecteer alles
CREATE TABLE phpbb_shmk_feedback_tot (
fb_user smallint(4) UNSIGNED DEFAULT '0' NOT NULL,
fb_pos smallint(4) DEFAULT '0' NOT NULL,
fb_neg smallint(4) DEFAULT '0' NOT NULL,
fb_neu smallint(4) DEFAULT '0' NOT NULL,
PRIMARY KEY (fb_user)
) COLLATE utf8_bin;
CREATE TABLE phpbb_shmk_feedback (
fb_id mediumint(8) UNSIGNED NOT NULL auto_increment,
fb_to mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_from mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_role tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
fb_vote tinyint(1) UNSIGNED DEFAULT '2' NOT NULL,
fb_link mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
fb_comment text NOT NULL,
fb_ip varchar(40) DEFAULT '' NOT NULL,
fb_date int(11) UNSIGNED DEFAULT '0' NOT NULL,
bbcode_bitfield varchar(255) DEFAULT '' NOT NULL,
bbcode_uid varchar(8) DEFAULT '' NOT NULL,
PRIMARY KEY (fb_id),
KEY fb_to (fb_to)
) COLLATE utf8_bin;
CREATE TABLE phpbb_shmk_feedback_config (
fb_config varchar(255) DEFAULT '' NOT NULL,
fb_config_val varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (fb_config)
) COLLATE utf8_bin;
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_minchars','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_maxchars','500');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_bbcode','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_smilies','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('comm_url','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_enable','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_force_in','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('link_forum','');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('m_haspower','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('role_enable','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_best','50');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_main','10');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('top_worst','50');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_canedit','1');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('u_morethenone','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('antiflood','0');
INSERT INTO phpbb_shmk_feedback_config(fb_config,fb_config_val) VALUES('antiflood_same','0');
INSERT INTO phpbb_config(config_name,config_value,is_dynamic) VALUES('fb_score','0','1');
INSERT INTO phpbb_config(config_name,config_value,is_dynamic) VALUES('fb_score_pos','1','1');
INSERT INTO phpbb_config(config_name,config_value,is_dynamic) VALUES('fb_score_neu','0','1');
INSERT INTO phpbb_config(config_name,config_value,is_dynamic) VALUES('fb_score_neg','-1','1');
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_access',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_add',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_edit',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_delete',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_addmore',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_ignoreflood',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_bbcode',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('u_fb_smilies',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('m_fb_edit',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('m_fb_delete',1,0,0);
INSERT INTO phpbb_acl_options(auth_option,is_global,is_local,founder_only) VALUES('m_fb_viewip',1,0,0);
Forum voor NL Extensie vertalingen ---> https://www.solidjeuh.fun
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
dankjewel
die error is weg nu.
Maar nu in mijn adm control paneel krijg ik dit:
http://prntscr.com/18ld1z
en als ik erop klik:
http://prntscr.com/18ld7d

Maar nu in mijn adm control paneel krijg ik dit:
http://prntscr.com/18ld1z
en als ik erop klik:
http://prntscr.com/18ld7d
Re: error in database bij feedback systeem
Hmz .. heb je alles goed geupload naar de map /includes/acp ?
Volgens mij mist daar de file: acp_reputation.php
En je mist de taal bestanden: languages/nl/mods ..
Kijk ook of je daar alle bestanden geupload hebt
Volgens mij mist daar de file: acp_reputation.php
En je mist de taal bestanden: languages/nl/mods ..
Kijk ook of je daar alle bestanden geupload hebt
Forum voor NL Extensie vertalingen ---> https://www.solidjeuh.fun
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
acp_reputation staat er niet wel heb ik:
acp_feedback
acp_feedback
Re: error in database bij feedback systeem
Volgens de error die ik zie op de printscreen mis je ' acp_reputation.php '
Is van een reputatie mod die je hebt of had ..
Is van een reputatie mod die je hebt of had ..
Forum voor NL Extensie vertalingen ---> https://www.solidjeuh.fun
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
nu heb ik die acp_reputation.php wel en krijg ik dit:
http://prntscr.com/18lesr
http://prntscr.com/18lesr
Re: error in database bij feedback systeem
Heb je die reputatie mod nog altijd?
Of heb je die verwijderd?
Dan is er daar ergens iets fout gegaan
Of heb je die verwijderd?
Dan is er daar ergens iets fout gegaan
Forum voor NL Extensie vertalingen ---> https://www.solidjeuh.fun
----------------------------------------------------------------------------
----------------------------------------------------------------------------
-
- Berichten: 76
- Lid geworden op: 24 mei 2013, 23:52
Re: error in database bij feedback systeem
Heb hem en is geinstalleerd