By Justin Kerns on Saturday, 30 January 2016
Replies 7
Likes 0
Views 1K
Votes 0
Easyblog hangs using recommended method it keeps hanging at Initializing Foundry Framework ...
Hey Justin,

I am really sorry for the delay of this reply as it is a weekend for us here. I have checked your site and it seems like these folders are actually not writable, http://screencast.com/t/xiqYlx5sUq

I believe this is causing the installation to fail. Can you please fix these folder permission issues and give it a try again?

If it still fails, can you please provide us with the FTP access by editing the post above and we'll perform the installation for you
·
Saturday, 30 January 2016 11:17
·
0 Likes
·
0 Votes
·
0 Comments
·
So when I checked it was writable so I tried again. When it didn't work I found the disc was too full and deleted some things. Tried again.it seems to have installed all files and folders but now its hanging at:
Initializing Database Synchronization ...
40%
·
Thursday, 04 February 2016 00:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Justin,

Did you upgraded from 3.9? It seems like some of the tables are missing from your site. Can you try running the following SQL queries to regenerate the missing tables?



CREATE TABLE IF NOT EXISTS `#__easyblog_post_subscription` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`post_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NULL DEFAULT '0',
`fullname` varchar(255) NULL,
`email` varchar(100) NOT NULL,
`created` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `easyblog_post_subscription_post_id` (`post_id`),
KEY `easyblog_post_subscription_user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `#__easyblog_blogger_subscription` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`blogger_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NULL DEFAULT '0',
`fullname` varchar(255) NULL,
`email` varchar(100) NOT NULL,
`created` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `easyblog_blogger_subscription_blogger_id` (`blogger_id`),
KEY `easyblog_blogger_subscription_user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `#__easyblog_category_subscription` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`category_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned NULL DEFAULT '0',
`fullname` varchar(255) NULL,
`email` varchar(100) NOT NULL,
`created` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `easyblog_category_subscription_category_id` (`category_id`),
KEY `easyblog_category_subscription_user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `#__easyblog_site_subscription` (
`id` bigint(20) unsigned NOT NULL auto_increment,
`user_id` bigint(20) unsigned NULL DEFAULT '0',
`fullname` varchar(255) NULL,
`email` varchar(100) NOT NULL,
`created` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `easyblog_site_subscription_user_id` (`user_id`),
KEY `easyblog_site_subscription_email` (`email`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

CREATE TABLE IF NOT EXISTS `#__easyblog_team_subscription` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`team_id` bigint(20) unsigned NOT NULL,
`user_id` bigint(20) unsigned DEFAULT '0',
`fullname` varchar(255) DEFAULT NULL,
`email` varchar(100) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `easyblog_team_subscription_team_id` (`team_id`),
KEY `easyblog_team_subscription_user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


Remember to replace #__ with your database prefix. Once, the above is done, try running the installer again.
·
Thursday, 04 February 2016 01:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Added the tables but it still seems hung at 40%
·
Thursday, 04 February 2016 02:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Justin,

Was this an upgrade or was this a fresh installation? I find it strange that there are lots of missing tables from the site.

Can you provide me with the phpmyadmin access?
·
Thursday, 04 February 2016 17:19
·
0 Likes
·
0 Votes
·
0 Comments
·
How do I provide the access? Here or in a message?
This is a fresh easyblog install, not an upgrade did not have it before. I've tried uninstalling and reinstalling several times.

Come to think of it, the ftp should just get to /cpanel on the site as well and from there you can get to PHPMyadmin. the Database ends with 838
·
Friday, 05 February 2016 03:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Justin,

Thanks! Managed to login to phpmyadmin. I believe the problematic installation was actually because you were trying to install earlier and the installer failed due to full disk space and it led to a different issue.

I have re-installed EasyBlog for you now and it works flawlessly
·
Friday, 05 February 2016 14:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post