v3.0.0 to v3.1.0
This guide is for you who want to migrate from older version (v3.0.0) to latest version (v3.1.0) without losing your previous data, but, to avoid unexpected data loss, we recommend that you backup your data before doing this step, this step is for the admin panel as server side.
Update Database
Login to your cpanel hosting, open PhpMyAdmin
Select your database and make update by inserting SQL query function starting from Query 1 - 6
CREATE TABLE `tbl_ads` (
`id` INT NOT NULL AUTO_INCREMENT,
`ad_status` varchar(5) NOT NULL DEFAULT 'on',
`ad_type` varchar(45) NOT NULL DEFAULT 'admob',
`admob_publisher_id` varchar(45) NOT NULL DEFAULT '0',
`admob_app_id` varchar(255) NOT NULL DEFAULT '0',
`admob_banner_unit_id` varchar(255) NOT NULL DEFAULT '0',
`admob_interstitial_unit_id` varchar(255) NOT NULL DEFAULT '0',
`admob_native_unit_id` varchar(255) NOT NULL DEFAULT '0',
`fan_banner_unit_id` varchar(255) NOT NULL DEFAULT '0',
`fan_interstitial_unit_id` varchar(255) NOT NULL DEFAULT '0',
`fan_native_unit_id` varchar(255) NOT NULL DEFAULT '0',
`startapp_app_id` varchar(255) NOT NULL DEFAULT '0',
`interstitial_ad_interval` int(11) NOT NULL DEFAULT '3',
`native_ad_interval` int(11) NOT NULL DEFAULT '20',
`native_ad_index` int(11) NOT NULL DEFAULT '4',
`date_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
Update PHP Script
Login to your cpanel hosting, open File Manager
Navigate to the directory where you put the php admin panel code
Delete All Old PHP Scripts and folder in your admin panel directory EXCEPT : ‘upload’ and ‘includes’ folder (Optional)
Download recipes_admin_panel_update_v31.zip, upload it into your existing admin panel directory and then extract it (this update code same with admin panel code in the Codecanyon download package except upload and includes folder).
After the extract process is complete, refresh it
Your Admin Panel is ready to use. (Note : if you use Google Chrome, click “Ctrl + F5” to reload the Admin Panel page).
Last updated
Was this helpful?