Forum Activity for @michael

michael
@michael
12/18/17 05:09:58PM
7,826 posts

Checkout error


Using Jamroom

Check the GLOBAL CONFIG for the active payment plugin. Just from looking at the code it looks like the having the wrong plugin could be the cause of that error.

Would need admin logins and steps to reproduce to look into it further. If you'd like to send them to support at jamroom I can see if anything jumps out at me.
michael
@michael
12/18/17 01:11:24PM
7,826 posts

The Meaning of "updated" in lists?


Using Jamroom

A module called xxAudioOrder with just an inlcude.php file with this contents:
<?php
/**
 * @copyright noone
 */

// make sure we are not being called directly
defined('APP_DIR') or exit();

/**
 * meta
 */
function xxAudioOrder_meta(){
    $_tmp = array(
        'name'        => 'AudioOrder',
        'url'         => 'audioorder',
        'version'     => '1.0.0',
        'developer'   => 'noone, &copy;' . strftime('%Y'),
        'description' => 'Update audio files _updated key when comments are added',
        'license'     => 'mpl',
        'category'    => 'custom'
    );
    return $_tmp;
}

/**
 * init
 */
function xxAudioOrder_init(){
    jrCore_register_event_listener('jrCore', 'db_increment_key', 'xxAudioOrder_db_increment_key_listener');
    return true;
}

/**
 * Increment the _update key when a comment is added
 */
function xxAudioOrder_db_increment_key_listener($_data, $_user, $_conf, $_args, $event)
{ if (isset($_data['key']) && $_data['key'] == 'audio_comment_count' && isset($_data['update']) && $_data['update'] == false) { $_rep = array('audio_incremented' => time()); jrCore_db_update_item('jrAudio', $_data['id'][0], $_rep); } return $_data; }
would have the results you're looking for: when a comment is added the audio file's _updated timestamp would be incremented.
michael
@michael
12/18/17 12:17:12PM
7,826 posts

Christmas Decorations


Using Jamroom

oooohhhh, snow! :)

Merry Christmas.
michael
@michael
12/18/17 12:08:45PM
7,826 posts

Christmas Decorations


Using Jamroom

See that big YOUR-SKIN.... you're supposed to replace that with your skins name. :)
facepalm.jpg facepalm.jpg - 115KB
michael
@michael
12/18/17 11:15:01AM
7,826 posts

TinyMce Image Margin Not Showing in Firefox


Design and Skin Customization

It looks to me like the caption javascript is removing the margin from around the image.

Suggest trying adding
p figure {
 margin: 10px
}
to your CSS to fix the issue.
after_javascript.jpg after_javascript.jpg - 62KB
michael
@michael
12/18/17 10:59:25AM
7,826 posts

Christmas Decorations


Using Jamroom

This was at the top of the search results
http://www.schillmania.com/projects/snowstorm/

download this file:
http://www.schillmania.com/projects/snowstorm/snowstormv144_20131208.zip

Unzip it and rename the directory to 'snowstorm'.

Upload that folder to your site at:
/skins/YOUR-SKIN/contrib/snowskin

Adjust your skins meta.tpl to include this line
  <script src="{$jamroom_url}/skins/YOUR-SKIN/contrib/snowstorm/snowstorm.js"></script>

Rest the caches.
snow.jpg snow.jpg - 91KB
michael
@michael
12/17/17 04:06:31PM
7,826 posts

Trial Pro Install Failed


Installation and Configuration

2tunes:....permissions on that folders apache apache drwxrwxrwx ...
See if there is anything in the apache error_log and access_log

There should be no actual directory at:
/public_html/user/signup

That URL is routed to router.php by the .htaccess
michael
@michael
12/17/17 04:02:26PM
7,826 posts

Trial Pro Install Failed


Installation and Configuration

Good to know, hard to guess at solutions without all the info.
michael
@michael
12/17/17 03:51:09PM
7,826 posts

Trial Pro Install Failed


Installation and Configuration

are you using a domain name? if you're using localhost/jamroom or similar its likely to cause issues. use /etc/hosts (or equivalent) to set a domain name for your install.

I always follow Brian's guide even when setting up local dev servers:
https://www.jamroom.net/brian/documentation/guides
  165