- Adres van je forum: http://www.zeverhoekske.be
Event. modificaties op je forum: http://www.phpbbhacks.com/download/8515
phpBB versie: 3.0.7-PL1
Wat is het probleem?
Kan me iemand uitleggen hoe en wat ik juist moet doen daarmee..
ben een beginneling, moet nog veel leren... lol
SQL
Code: Selecteer alles
INSERT INTO phpbb_acl_options (auth_option, is_global, is_local, founder_only) VALUES ('f_delete_forever', 0, 1, 0);
Code: Selecteer alles
INSERT INTO phpbb_acl_options (auth_option, is_global, is_local, founder_only) VALUES ('f_undelete', 0, 1, 0);
Code: Selecteer alles
INSERT INTO phpbb_acl_options (auth_option, is_global, is_local, founder_only) VALUES ('m_delete_forever', 1, 1, 0);
Code: Selecteer alles
INSERT INTO phpbb_acl_options (auth_option, is_global, is_local, founder_only) VALUES ('m_undelete', 1, 1, 0);
Code: Selecteer alles
ALTER TABLE phpbb_topics ADD ( topic_deleted_from mediumint(8) UNSIGNED DEFAULT "0" NOT NULL, topic_deleted_user mediumint(8) UNSIGNED DEFAULT "0" NOT NULL, topic_deleted_time int(11) UNSIGNED DEFAULT "0" NOT NULL, topic_deleted_reason varchar(255) DEFAULT "" NOT NULL);
Code: Selecteer alles
ALTER TABLE phpbb_posts ADD ( post_deleted_from mediumint(8) UNSIGNED DEFAULT "0" NOT NULL, post_deleted_user mediumint(8) UNSIGNED DEFAULT "0" NOT NULL, post_deleted_time int(11) UNSIGNED DEFAULT "0" NOT NULL, post_deleted_reason varchar(255) DEFAULT "" NOT NULL);