Notifications
Clear all

[Solved] adsence ads help

5 Posts
2 Users
0 Likes
2,661 Views
Posts: 3
Customer
Topic starter
(@catothebasterd)
Member
Joined: 6 years ago

every thing i try to add comes up Ad adding error    eny guid on how to do it

4 Replies
Posts: 3
Customer
Topic starter
(@catothebasterd)
Member
Joined: 6 years ago
Skjermbilde

what im on

Posts: 4172
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago

Hi  catothebasterd,

Please make sure you use latest wpForo plugin and wpForo Ads addon.

Make sure you put adsence ad code in Text mode of editor, don't use the View mode.

Also please leave the error message, we don't see the problem you're asking here.

1 Reply
Customer
(@catothebasterd)
Joined: 6 years ago

Member
Posts: 3

version im on

Skjermbilde
1

only thing that shows is 

2
Posts: 4172
 Tom
Admin
(@tomson)
Famed Member
Joined: 9 years ago

Hi Victoria,

Please make sure you use the latest wpForo and wpForo Ads manager (current version is 1.0.3).

Also please make sure the wp_wpforo_ads table exists in database. Use Hosting Service cPanel > phpMyAdmin database manager tool. If this table doesn't exist, please execute this SQL:

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
CREATE TABLE `wp_wpforo_ads` (
`adid` bigint(20) UNSIGNED NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`code` text COLLATE utf8mb4_unicode_520_ci,
`body` longtext COLLATE utf8mb4_unicode_520_ci,
`start_date` datetime DEFAULT '0000-00-00 00:00:00',
`end_date` datetime DEFAULT '0000-00-00 00:00:00',
`forumids` longtext COLLATE utf8mb4_unicode_520_ci,
`hide_for_groupids` longtext NOT NULL DEFAULT '',
`tpllocs` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;

ALTER TABLE `wp_wpforo_ads`
ADD PRIMARY KEY (`adid`),
ADD KEY `start_date` (`start_date`),
ADD KEY `end_date` (`end_date`),
ADD KEY `tpllocs` (`tpllocs`(191)),
ADD KEY `status` (`status`);

ALTER TABLE `wp_wpforo_ads`
MODIFY `adid` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

If your database table prefix is not wp_ please change it.

Share:
Scroll to top