Forum Activity for @brian

brian
@brian
05/03/16 01:39:55PM
10,149 posts

CRI: Query Error: Table db-name.jr_jrcore_log' doesn't exist


Installation and Configuration

soaringeagle:
would it not dump that table if its real busy like can't get a lock on it

Unless you're using --lock-tables on your mysqldump command line I don't believe they are locked - you can always try --lock-tables=false.
brian
@brian
05/03/16 01:38:41PM
10,149 posts

CRI: Query Error: Table db-name.jr_jrcore_log' doesn't exist


Installation and Configuration

Here's the table create statement for that table:
CREATE TABLE `jr_jrcore_log` (
  `log_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `log_created` int(11) unsigned NOT NULL DEFAULT '0',
  `log_priority` varchar(8) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'inf',
  `log_ip` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `log_text` varchar(4096) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`log_id`),
  KEY `log_priority` (`log_priority`)
) ENGINE=MyISAM AUTO_INCREMENT=3026 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
brian
@brian
05/03/16 01:29:03PM
10,149 posts

fail SOX binary is not working


Using Jamroom

Sounds like binaries are not executable under your web server - you will want to contact your hosting provider and have them all those binaries to be run under PHP.
brian
@brian
05/03/16 01:17:11PM
10,149 posts

Newletters and multiple quotas


Using Jamroom

perrie:
I am trying to figure out a work around to be able to send a group a newsletter. I was wondering if a profile can belong to multiple quotas? Then all I would have to do is create a quota for that group. Can something like that be done?

A profile can only belong to 1 quota at a time - there is nothing in JR at this time that will let you send a newsletter to a specific group.

We know this is something that ex-Ning users are looking for however, and we have it on our to-do to come up with something that will work for you.
brian
@brian
05/03/16 01:15:40PM
10,149 posts

CRI: Query Error: Table db-name.jr_jrcore_log' doesn't exist


Installation and Configuration

The jr_jrcore_log table is a "core" table - if you are seeing that not being installed, then the core is either not installed or you did not transfer all the tables.
brian
@brian
05/02/16 02:01:14PM
10,149 posts

Services Module Question


Design and Skin Customization

Hi Ken -

Form Designer support is in version 1.0.1 of the Service Shop module - update and you should be set.

Hope this helps!
brian
@brian
05/02/16 01:51:44PM
10,149 posts

Unchecked additional profiles on Account form after changing User Group


Using Jamroom

I've been testing this here today and am not able to replicate the issue - there's some new changes coming in the next User module that take care of some other issues around this area though, so it may already be fixed. After the next release if you see this again let me know.

Thanks!
brian
@brian
05/02/16 01:50:23PM
10,149 posts

iFrame using sub-domain


Using Jamroom

This is fixed in the next core release.

Thanks!
brian
@brian
05/02/16 01:48:44PM
10,149 posts

expanding the results for Email Delivery Log?


Using Jamroom

I completed this a few days ago - let me know if you see any issues.

Thanks!
brian
@brian
05/02/16 01:48:01PM
10,149 posts

ShareThis problem


Design and Skin Customization

correct - when you load something up via AJAX, the script tags are not going to load in the remove scripts and make that available for you - you need to move the ShareThis JS out to the main page - not the page being loaded via an XHR call. The, in the callback function for the load you need to initialize your ShareThis on the newly loaded contents.

Let me know if that helps
  271