Hi,
I am moving a freind's phpBB forum to a new server.
What I did not realize is that he has around 100mb of data! and that some tables are around 30 bm!
even with maximum gzipped compression when exporting the table, the files are too bit, and phpMyAdmin on the new server will not post so much data at once.
i would have to break it down bit by bit, and this would take so long to do.
Ny question is:
could i possibly post the entire data by creating a php page (even if that page is 30 meg!), so i could call up the page in my browser and it will start posting data to the database?
My data is presented as below:
INSERT INTO phpbb_posts VALUES (12939, 738, 5, -1, 1111838264, '52344e25', '', 1, 0, 1, 0, NULL, 0);
INSERT INTO phpbb_posts VALUES (12940, 763, 5, 8, 1111838887, '9719964a', '', 1, 0, 1, 1, NULL, 0);
INSERT INTO phpbb_posts VALUES (12941, 738, 5, 10, 1111838897, 'd59c3467', '', 1, 0, 1, 0, NULL, 0);
INSERT INTO phpbb_posts VALUES (12942, 738, 5, -1, 1111840056, 'd58c0670', 'vaginoo', 1, 0, 1, 0, NULL, 0);
INSERT INTO phpbb_posts VALUES (12957, 775, 5, 18, 1111853697, '51d02450', '', 1, 0, 1, 0, NULL, 0);
INSERT INTO phpbb_posts VALUES (12956, 738, 5, 109, 1111853671, 'd58c1169', '', 1, 0, 1, 0, NULL, 0);
INSERT INTO phpbb_posts VALUES (12943, 738, 5, 101, 1111840207, 'd58c1649', '', 1, 0, 1, 0, NULL, 0);
etc...
Any idea how i could do this?
Many thanks,
vinny