Forum Activity for @brian

brian
@brian
05/07/18 08:43:50AM
10,148 posts

AWS Backup


Using Jamroom

Yeah that first packet error makes me think it is a network issue.
brian
@brian
05/07/18 08:43:17AM
10,148 posts

Daily Offsite Backups form


Using Jamroom

Hi Steve -

I'm not able to replicate this on my end - what browser are you using?

Thanks!
brian
@brian
05/01/18 08:06:37AM
10,148 posts

JR sites going down...


Using Jamroom

Is your server check showing all green now?
brian
@brian
05/01/18 08:06:10AM
10,148 posts

MySQL error after updating Jamroom


Jamroom Developers

I cannot replicate this issue on this end - the DS is passing all unit tests as well. This is coming from your dashboard - have you created any custom dashboard panels? Do you know what panels are active? (look in the database jr_jrcore_settings table for the "dashboard_config" entry for the jrCore module).
brian
@brian
04/21/18 08:31:46AM
10,148 posts

JR sites going down...


Using Jamroom

This means your queue workers are not running. Are there a lot of things in the queue? You can start those.

When you say the site "keeps going down" what does that mean? Do you get the 504 error?

What Apache are you running and how are you running PHP? PHP-FPM? Fast CGI? CGI with suexec? mod_php?
brian
@brian
04/21/18 08:16:40AM
10,148 posts

Random Thoughts



10) Unfortunately rebase is problematic and can break an entire site. I've gone back and forth on simply removing the functionality. For now you just need to NOT have phpstorm running in the same directory you update from - i.e. update the site from one directory, then copy the updates over to phpstorm. Since you're a "developer" there's no plans to really change how this functions - you know what you're doing.

11) This would be cool I agree - this was the idea behind bundles. What you're proposing would be cool but would require a lot of work, so it's not likely to happen soon.

12) the marketplace query is a "heavy hitter" in that there are A LOT of listeners that do work on the listing - that's why it is currently set to what it is.
brian
@brian
04/21/18 08:03:07AM
10,148 posts

Changes to Subscription Blocked By Stripe


Using Jamroom

blindmime:
How do I change a subscription? I've set one up but now the price and other details say "changes locked by Stripe".

Once a Stripe plan has a paying customer on it some of the features of the plan cannot be changed - you'll need to create a new plan like Michael has outlined.
brian
@brian
04/21/18 07:59:25AM
10,148 posts

JR sites going down...


Using Jamroom

There's something wrong with your JR or how the server is configured. with 80 CPUs and 192G RAM you could run thousands of Jamroom sites no problem - seriously. Our $39 servers are 1 CPU and 1G RAM and can support hundreds of users online at the same time.

Are you running a control panel on the server? Are there errors in your data/logs/error_log?
brian
@brian
04/21/18 07:57:35AM
10,148 posts

Problem importing


Genosis

Welcome to Jamroom!

I'm not sure what would be causing this, but it sounds like it is getting to a location in the GEDCOM where it is looking for an image and not finding it. Have you uploaded your media via the Genosis Core -> Tools -> Import Media Archive tool? If you want to send your GEDCOM file to me at support [at] jamroom [dot] net I can check it out on this end and see if it's a parsing error.

Hope this helps!
brian
@brian
04/13/18 08:22:46AM
10,148 posts

Overriding a View Function


Jamroom Developers

If you want the URL to change, simple use a jrCore_location call instead - i.e.

function xxCustom_parse_url_listener($_data, $_user, $_conf, $_args, $event) {
    if (isset($data['module']) && $_data['module'] == 'jrBlog' && isset($_data['option']) && $_data['option'] == 'update') {
        $url = jrCore_get_module_url('xxCustom');
        jrCore_location("{$_conf['jrCore_base_url']}/{$url}/update-blog");
    }
    return $_data;
}

That will redirect the user to the URL passed into jrCore_location.
  60