pkg_socialads_v4.2.1_a5b042f3

Version 4.2.1
Maturity Stable
Release Date 2024-05-08 05:30
Unfortunately you do not have access to this file.

Features

1. Daily / Total budget changes based on dates
2. Add multiple ad locations on the map/Add Multiple locations on select dropdown
3. Wallet balance and campaign budget relation
4. In third-party form > Image link OR target link

User need to execute following sql command
After installation of the latest package


CREATE TABLE IF NOT EXISTS `#__ad_map_target_locations` (
`id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,
`ad_map_target_id` INT(11) NOT NULL DEFAULT 0 COMMENT 'FK to #__ad_data',
`location` VARCHAR(100) NOT NULL DEFAULT '' COMMENT 'Ad lat and lng address',
`population` INT(11) NOT NULL DEFAULT 0 COMMENT 'Number of people present in given area',
`radius` float(10,2) NOT NULL DEFAULT 0,
`city` VARCHAR(50) NOT NULL DEFAULT '' COMMENT 'City of Ad ',
`region` VARCHAR(50) NOT NULL DEFAULT '' COMMENT 'State of Ad ',
`country` VARCHAR(50) NOT NULL DEFAULT '' COMMENT 'Country of Ad ',
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modify_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

// Update table name as per database prefix