I am starting a new thread regarding difficulties updating from Easy Blog 3.9 to 5. The one click doesn't work and I tried manually installing it bit it gets hung up at 45% with the Launcher installer.
ALTER TABLE `#__easyblog_acl` ADD `group` varchar(255) NOT NULL;
ALTER TABLE `#__easyblog_post` ADD `state` int(1) unsigned NOT NULL;
ALTER TABLE `#__easyblog_post` ADD `locked` tinyint(3) NOT NULL;
ALTER TABLE `#__easyblog_post` ADD `doctype` varchar(255) NOT NULL;
ALTER TABLE `#__easyblog_post` ADD `revision_id` bigint(20) DEFAULT '0';
ALTER TABLE `#__easyblog_users` ADD `custom_css` text null;
Can you tell me HOW to execute the code? When i tried it in phpAdmin it said the table does not exist. Please give me a step by step How to execute the code.
// I will replace #_ with oasq9 to match with my own database prefix.
ALTER TABLE `oasq9_easyblog_acl` ADD `group` varchar(255) NOT NULL;
ALTER TABLE `oasq9_easyblog_post` ADD `state` int(1) unsigned NOT NULL;
ALTER TABLE `oasq9_easyblog_post` ADD `locked` tinyint(3) NOT NULL;
ALTER TABLE `oasq9_easyblog_post` ADD `doctype` varchar(255) NOT NULL;
ALTER TABLE `oasq9_easyblog_post` ADD `revision_id` bigint(20) DEFAULT '0';
ALTER TABLE `oasq9_easyblog_users` ADD `custom_css` text null;
// Replace #_ with your table prefix
SELECT COUNT( 1 ) FROM `#__easyblog_acl_group`
// Replace #_ with your table prefix
TRUNCATE TABLE `#__easyblog_acl_group`