Support Forum

Advanced Search
Forum Scope


Match



Forum Options



Minimum search word length is 3 characters - maximum search word length is 84 characters
general-topic
Upgraded test site and got Table '_sfforums' doesn't exist
Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Jan 15, 2018 - 7:07 am

It's just the topics table that is missing there. I included the able sfuseractivitytype in my list but realised that this is a 5.8 upgrade table so you wont have that at all yet anyway.

I will create a sql script as above for the sftopics table. Give me a few minutes...

andy-signature.png
YELLOW
SWORDFISH
Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Jan 15, 2018 - 7:14 am

OK - sftopics. Again you will need to change the tabke prefix from xxx_ to your own.

CREATE TABLE `xxx_sftopics` (
 `topic_id` bigint(20) NOT NULL AUTO_INCREMENT,
 `topic_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
 `topic_date` datetime NOT NULL,
 `topic_status` int(4) NOT NULL DEFAULT '0',
 `forum_id` bigint(20) NOT NULL,
 `user_id` bigint(20) unsigned DEFAULT NULL,
 `topic_pinned` smallint(1) NOT NULL DEFAULT '0',
 `topic_opened` bigint(20) NOT NULL DEFAULT '0',
 `blog_post_id` bigint(20) NOT NULL DEFAULT '0',
 `topic_slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
 `post_id` bigint(20) DEFAULT NULL,
 `post_count` mediumint(8) DEFAULT '0',
 `topic_status_flag` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
 `post_id_held` bigint(20) DEFAULT NULL,
 `post_count_held` mediumint(8) DEFAULT '0',
 `answered` bigint(20) NOT NULL DEFAULT '0',
 `expire_date` datetime DEFAULT NULL,
 `expire_action` int(4) NOT NULL DEFAULT '0',
 PRIMARY KEY (`topic_id`),
 KEY `forum_id_idx` (`forum_id`),
 KEY `topic_slug_idx` (`topic_slug`),
 KEY `user_id_idx` (`user_id`),
 KEY `post_id_idx` (`post_id`),
 KEY `topic_status_flag_idx` (`topic_status_flag`),
 KEY `expire_date_idx` (`expire_date`)
) ENGINE=MyISAM AUTO_INCREMENT=22840 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

I have included a few columns that are usually added with SP plugins (same with the other one earlier) but that's OK.

andy-signature.png
YELLOW
SWORDFISH
Avatar
Chris Moody
Member
sp_UserOfflineSmall Offline
Jan 15, 2018 - 8:39 am

Ok seems to work again 😉

 

thank you for your time

regards

 

PS do you know what it could be  ??

Avatar
Yellow Swordfish
Glinton, England
SP Master
sp_UserOfflineSmall Offline
Jan 15, 2018 - 11:28 am

No - as I said on the post earlier, I have no idea what ion earth could cause that. But as I also said, I would urge you to talk to your host and look at the mysql error log.

andy-signature.png
YELLOW
SWORDFISH
Forum Timezone: Europe/Stockholm
Most Users Ever Online: 1170
Currently Online:
Guest(s) 1
Currently Browsing this Page:
1 Guest(s)
Top Posters:
Mr Papa: 19448
Ike: 2086
Brandon: 864
kvr28: 804
jim: 650
FidoSysop: 577
Conrad_Farlow: 531
fiddlerman: 358
Stefano Prete: 325
Member Stats:
Guest Posters: 619
Members: 17362
Moderators: 0
Admins: 4
Forum Stats:
Groups: 7
Forums: 17
Topics: 10127
Posts: 79625