Notifications
Clear all

wpForo 1.x.x [Closed] google maps

5 Posts
2 Users
1 Likes
1,712 Views
Melafon
Posts: 47
Topic starter
(@rexxx)
Trusted Member
Joined: 7 years ago

Hello, why do not working google maps? For example: https://www.russpuss.ru/eskort-v-rossii/bryansk/ thanks

4 Replies
Melafon
Posts: 47
Topic starter
(@rexxx)
Trusted Member
Joined: 7 years ago

Also any time after edit topic forum show some error  https://www.russpuss.ru/eskort-v-rossii/habarovsk/

SELECT * FROM wpnx_wpforo_activity WHERE `type` IN('edit_topic') AND `itemid` IN(389) AND `itemtype` IN('topic') ORDER BY id ASC

Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago
Posted by: rexxx

Hello, why do not working google maps? For example: https://www.russpuss.ru/eskort-v-rossii/bryansk/ thanks

Please use iframe code in text mode. The text mode can be opened using {;} button on toolbar.

Robert
Posts: 10499
Admin
(@robert)
Support Team
Joined: 8 years ago
Posted by: rexxx

Also any time after edit topic forum show some error  https://www.russpuss.ru/eskort-v-rossii/habarovsk/

SELECT * FROM wpnx_wpforo_activity WHERE `type` IN('edit_topic') AND `itemid` IN(389) AND `itemtype` IN('topic') ORDER BY id ASC

For some reason the new table have not been created on plugin update. The database user permission is not full. So your WordPress doesn't have access to create table in database, thus all plugins doesn't have this as well. in any case you can create it using this SQl code. Just execute it in your hosting service cPanel > phpMyAdmin > WordPress Database > SQL Tab:

CREATE TABLE IF NOT EXISTS `wpnx_wpforo_activity` (
`id` BIGINT UNSIGNED NOT NULL AUTO_INCREMENT,
`type` VARCHAR(60) NOT NULL,
`itemid` BIGINT UNSIGNED NOT NULL,
`itemtype` VARCHAR(60) NOT NULL,
`itemid_second` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`userid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`name` VARCHAR(60) NOT NULL DEFAULT '',
`email` VARCHAR(70) NOT NULL DEFAULT '',
`date` INT UNSIGNED NOT NULL DEFAULT 0,
`content` TEXT,
`permalink` VARCHAR(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `type` (`type`),
KEY `type_objid_objtype` (`type`,`itemid`,`itemtype`),
KEY `type_objid_objtype_userid` (`type`,`itemid`,`itemtype`,`userid`),
KEY `date` (`date`)
);

 

Melafon
Posts: 47
Topic starter
(@rexxx)
Trusted Member
Joined: 7 years ago

Thanks