Als ik mn backup upload naar phpmyadmin, dan vind hij de pagina niet nadat hij b-tje bezig is geweest.
En daarna is er ook niks verandert aan de database. Ik zal ff kijken of het stukje voor stukje zegmaar wel lukt...
Code: Selecteer alles
#
# TABLE: phpbb_forums
#
DROP TABLE IF EXISTS phpbb_forums;
CREATE TABLE phpbb_forums(
forum_id smallint(5) unsigned NOT NULL,
cat_id mediumint(8) unsigned NOT NULL,
forum_name varchar(150),
forum_desc text,
forum_status tinyint(4) NOT NULL,
forum_order mediumint(8) unsigned DEFAULT '1' NOT NULL,
forum_posts mediumint(8) unsigned NOT NULL,
forum_topics mediumint(8) unsigned NOT NULL,
forum_last_post_id mediumint(8) unsigned NOT NULL,
prune_next int(11),
prune_enable tinyint(1) NOT NULL,
auth_view tinyint(2) NOT NULL,
auth_read tinyint(2) NOT NULL,
auth_post tinyint(2) NOT NULL,
auth_reply tinyint(2) NOT NULL,
auth_edit tinyint(2) NOT NULL,
auth_delete tinyint(2) NOT NULL,
auth_sticky tinyint(2) NOT NULL,
auth_announce tinyint(2) NOT NULL,
auth_global_announce tinyint(2) NOT NULL,
auth_vote tinyint(2) NOT NULL,
auth_pollcreate tinyint(2) NOT NULL,
auth_attachments tinyint(2) NOT NULL,
auth_cal tinyint(2) NOT NULL,
PRIMARY KEY (forum_id),
KEY forums_order (forum_order),
KEY cat_id (cat_id),
KEY forum_last_post_id (forum_last_post_id)
);
#
# Table Data for phpbb_forums
#
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('1', '1', 'News', 'Lees hier al het nieuws van dit forum...
<hr>
All the news of this board...', '0', '10', '35', '14', '275', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '3', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('2', '1', 'Feedback', 'Voor vragen, opmerkingen of wat dan ook, kan je hier terecht.
<hr>
Questions, observations, anything. Ask it here.', '0', '20', '9', '1', '130', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('3', '2', 'Life', 'Hoe ga je met het geloof om in het dagelijks leven, en in je eigen leven?
<hr>
How can you connect the faith, with the live, and your live?', '0', '20', '26', '2', '204', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('4', '2', 'Bible', 'Weet jij een mooie bijbeltekst, of heb je vragen over iets in de bijbel of wat dan ook?
<hr>
You know a good part in the bible? Or do you have any questions about something in the bible?', '0', '30', '24', '9', '174', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('5', '3', 'Koffiebar / Bar', 'Al het andere dat je kwijt wil, wat niet zozeer met het geloof te maken heeft...
<hr>
Everything you want to tell...', '0', '10', '29', '2', '258', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('6', '3', 'Stellingen / Opinions', 'Plaats hier wat stellingen...
<hr>
Place some opinions here...', '0', '40', '51', '3', '266', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('7', '2', 'Geloof algemeen / Faith', 'Alles over het geloof wat niet in de andere forums thuis hoort...
<hr>
Everything about the faith.', '0', '10', '13', '4', '276', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('8', '3', 'World', 'Films, politiek, alles in de wereld....
<hr>
Movie\'s, political, everything in the world...', '0', '20', '27', '2', '264', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('9', '3', 'Uitgaan / Going out', 'Wat kan wel, en wat niet? Of is er binnenkort een christelijke uitgaansgelegenheid? Je kan het hier plaatsen!
<hr>
Know a christian party or something soon? Place it here!', '0', '30', '13', '5', '253', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '0');
Code: Selecteer alles
Fout
SQL-query : [Wijzigen]
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('8', '3', 'World', 'Films, politiek, alles in de wereld....
<hr>
Movie\'s, political, everything in the world...', '0', '20', '27', '2', '264', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '3');
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_global_announce, auth_vote, auth_pollcreate, auth_attachments, auth_cal) VALUES('9', '3', 'Uitgaan / Going out', 'Wat kan wel, en wat niet? Of is er binnenkort een christelijke uitgaansgelegenheid? Je kan het hier plaatsen!
<hr>
Know a christian party or something soon? Place it here!', '0', '30', '13', '5', '253', NULL, '0', '0', '0', '0', '0', '1', '1', '3', '3', '5', '1', '1', '0', '0');
MySQL retourneerde:
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 ';
INSERT INTO phpbb_forums (forum_id, cat_id, forum_name, foru