|
Page 3 of 3
|
Joshua203 
Joshua 203
Joined: August 2008
Posts: 1758
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Website Went Blanco
BTW ..
I don't expect this to help but it can not hurt either .. you can select all tables and do a repair DB
and incase you want to edit the page should be filled with little pencils (edit buttons)
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#31 Tue 06 Mar, 2012 22:51 |
|
Sponsors

|
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.
|
| |
sillybean 
Joined: January 2008
Posts: 15
|
 Re: Website Went Blanco
What I want to save from the old website is the memberlist + log ins etc-
Can I put these in? does it matter if the person has posted?
I was not able to open the back up I have- I can see all the files though- but-not as a website. I can open it with winrar ( duh LOL) and read it all-
also the sql-
Strange that I can't find any mistake- I tried about all htaccess etc-
Server side is fine too- I made a emergency site ( also Icy P.) and that shows fine.....
|
#32 Wed 07 Mar, 2012 00:33 |
|
Joshua203 
Joshua 203
Joined: August 2008
Posts: 1758
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Website Went Blanco
after pulling the full DB backup you could try replacing table by table ..I would still start with the forums table (because that's where you were removing when this went wrong?)
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#33 Wed 07 Mar, 2012 00:51 |
|
sillybean 
Joined: January 2008
Posts: 15
|
 Re: Website Went Blanco
Yes- that is an idea- thanks!
With what shall I start setting up- a new forum with myself as admin- then filling in the tables?
|
#34 Wed 07 Mar, 2012 04:57 |
|
Joshua203 
Joshua 203
Joined: August 2008
Posts: 1758
Location:  Earth, Europe, the Netherlands, Rotterdam
|
 Re: Website Went Blanco
you can try opening the old working backup and find a passage that looks like this:
DROP TABLE IF EXISTS ip_forums;
CREATE TABLE ip_forums(
forum_id smallint(5) unsigned DEFAULT '0' NOT NULL,
cat_id mediumint(8) unsigned DEFAULT '0' NOT NULL,
main_type char(1),
forum_name varchar(150),
forum_desc text NOT NULL,
forum_status tinyint(4) DEFAULT '0' NOT NULL,
forum_order mediumint(8) unsigned DEFAULT '1' NOT NULL,
forum_posts mediumint(8) unsigned DEFAULT '0' NOT NULL,
forum_topics mediumint(8) unsigned DEFAULT '0' NOT NULL,
forum_last_post_id mediumint(8) unsigned DEFAULT '0' NOT NULL,
forum_postcount tinyint(1) DEFAULT '1' NOT NULL,
forum_thanks tinyint(1) DEFAULT '0' NOT NULL,
forum_notify tinyint(1) unsigned DEFAULT '1' NOT NULL,
forum_similar_topics tinyint(1) DEFAULT '0' NOT NULL,
forum_topic_views tinyint(1) DEFAULT '1' NOT NULL,
forum_tags tinyint(1) DEFAULT '0' NOT NULL,
forum_sort_box tinyint(1) DEFAULT '0' NOT NULL,
forum_kb_mode tinyint(1) DEFAULT '0' NOT NULL,
forum_index_icons tinyint(1) DEFAULT '0' NOT NULL,
forum_rules tinyint(1) unsigned DEFAULT '0' NOT NULL,
forum_link varchar(255),
forum_link_internal tinyint(1) DEFAULT '0' NOT NULL,
forum_link_hit_count tinyint(1) DEFAULT '0' NOT NULL,
forum_link_hit bigint(20) unsigned DEFAULT '0' NOT NULL,
icon varchar(255),
prune_next int(11),
prune_enable tinyint(1) DEFAULT '0' NOT NULL,
auth_view tinyint(2) DEFAULT '0' NOT NULL,
auth_read tinyint(2) DEFAULT '0' NOT NULL,
auth_post tinyint(2) DEFAULT '0' NOT NULL,
auth_reply tinyint(2) DEFAULT '0' NOT NULL,
auth_edit tinyint(2) DEFAULT '0' NOT NULL,
auth_delete tinyint(2) DEFAULT '0' NOT NULL,
auth_sticky tinyint(2) DEFAULT '0' NOT NULL,
auth_announce tinyint(2) DEFAULT '0' NOT NULL,
auth_globalannounce tinyint(2) DEFAULT '3' NOT NULL,
auth_news tinyint(2) DEFAULT '2' NOT NULL,
auth_cal tinyint(2) DEFAULT '0' NOT NULL,
auth_vote tinyint(2) DEFAULT '0' NOT NULL,
auth_pollcreate tinyint(2) DEFAULT '0' NOT NULL,
auth_attachments tinyint(2) DEFAULT '0' NOT NULL,
auth_download tinyint(2) DEFAULT '0' NOT NULL,
auth_ban tinyint(2) DEFAULT '3' NOT NULL,
auth_greencard tinyint(2) DEFAULT '5' NOT NULL,
auth_bluecard tinyint(2) DEFAULT '1' NOT NULL,
auth_rate tinyint(2) DEFAULT '-1' 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)
);
INSERT INTO ip_forums (forum_id, cat_id, main_type, forum_name, forum_desc, forum_status, forum_order, forum_posts, forum_topics, forum_last_post_id, forum_postcount, forum_thanks, forum_notify, forum_similar_topics, forum_topic_views, forum_tags, forum_sort_box, forum_kb_mode, forum_index_icons, forum_rules, forum_link, forum_link_internal, forum_link_hit_count, forum_link_hit, icon, prune_next, prune_enable, auth_view, auth_read, auth_post, auth_reply, auth_edit, auth_delete, auth_sticky, auth_announce, auth_globalannounce, auth_news, auth_cal, auth_vote, auth_pollcreate, auth_attachments, auth_download, auth_ban, auth_greencard, auth_bluecard, auth_rate) VALUES (1, 1, 'c', 'Test Forum 1', 'This is just a test forum.', 0, 20, 2, 2, 2, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0, NULL, 0, 0, 0, NULL, NULL, 0, 0, 0, 1, 1, 1, 3, 3, 5, 5, 5, 5, 1, 1, 1, 1, 3, 5, 1, -1),(2, 1, 'f', 'Sub test', '', 0, 30, 1, 1, 3, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, '', 0, 0, 0, '', NULL, 0, 0, 0, 1, 1, 1, 3, 3, 5, 5, 5, 5, 1, 1, 1, 1, 3, 5, 1, -1);
Copy that section of your file, then open the DB of the old broken site with phpMyAdmin ...click the SQL tab ..paste the copied query in the big text box box and press start.
____________ www.DutchaGoGo.com (development/under construction ...Forever?¿?)
|
#35 Wed 07 Mar, 2012 05:26 |
|
TheSteffen 
Joined: August 2006
Posts: 1607
Location:  Magdeburg
|
 Re: [SOLVED] Website Went Blanco
Sorry, I did not read everything...
If you have still this error, you can try to resync all your forums and categories.
Because this was the last thing you did. "Delete a forum"
____________ TheSteffen
Often SEARCH is the quickest way to get support.
IcyPhoenix German Support
|
#36 Wed 07 Mar, 2012 09:52 |
|
spydie 
Joined: December 2008
Posts: 1791
Location:  In the Boxes
|
 Re: [SOLVED] Website Went Blanco
he can´t even see his site, nore ACP
____________ Driving me and my PC crazy, trying to create some pluggins
Icy-Mods.com ( IP 2.0 RC-1)
|
#37 Wed 07 Mar, 2012 23:43 |
|
sillybean 
Joined: January 2008
Posts: 15
|
 Re: Website Went Blanco
I am not being rude, just busy a couple of days;)) THANKS for all your help- it is very much appreciated!!!
|
#38 Sat 10 Mar, 2012 19:58 |
|
|
Page 3 of 3
|
Was this topic useful?
Was this topic useful?
| Link this topic |
| URL |
|
| BBCode |
|
| HTML |
|
You cannot post new topics You cannot reply to topics You cannot edit your posts You cannot delete your posts You cannot vote in polls You cannot attach files You can download files You cannot post calendar events
|
|
|
|