Forum Activity for @ultrajam

SteveX
@ultrajam
04/07/14 06:16:10PM
2,589 posts

is PHP allowed on the pages to be inserted


Installation and Configuration

Make sure you understand your eternal javascript before you try to add it to jamroom (I am assuming you understand Jamroom).
SteveX
@ultrajam
04/07/14 04:44:27PM
2,589 posts

is PHP allowed on the pages to be inserted


Installation and Configuration

These are probably not problems with the javascript of either Jamroom or your mysa script. Javascript generally doesn't interfere, it progressively enhances.

Are you sure you understand what you are doing? Are you sure you are not breaking it?
SteveX
@ultrajam
04/07/14 01:13:55PM
2,589 posts

How To Capitalize Meta Tags?


Design and Skin Customization

Above the left shift key on your computer keyboard there is a Caps Lock button.

Press that and everything you type will be in capitals.

updated by @ultrajam: 04/07/14 01:14:32PM
SteveX
@ultrajam
04/04/14 02:12:57PM
2,589 posts

Registering account_tab with jrUser


Jamroom Developers

Yes it is registered.

Looking at jrUser_account_tabs function it doesnt look like the tab is being unset if the quota is not allowed.

                // $label can come in as an array
                if (is_array($label)) {
                    $_tbs["{$mod}/{$view}"] = array(
                        'label' => (isset($_lng[$mod]["{$label['label']}"])) ? $_lng[$mod]["{$label['label']}"] : $label['label'],
                        'url'   => "{$_conf['jrCore_base_url']}/{$url}/{$view}"
                    );
                    if (!isset($label['quota_check']) || $label['quota_check'] === true) {

                        // Check for specific field access
                        $fld = "quota_{$mod}_allowed";
                        if (isset($label['field']) && strlen($label['field']) > 0) {
                            $fld = $label['field'];
                        }

                        if (isset($_user[$fld]) && $_user[$fld] != 'on') {
// added this at line 741
unset($_tbs["{$mod}/{$view}"]);
                            continue;
                        }
                    }
                }

// added this at line 741
unset($_tbs["{$mod}/{$view}"]);

With that unset added in it seems to work properly.
updated by @ultrajam: 04/04/14 02:14:23PM
SteveX
@ultrajam
04/04/14 05:11:47AM
2,589 posts

Registering account_tab with jrUser


Jamroom Developers

The quota check doesn't seem to run on Lifestreams when registering an account_tab with jrUser. The lifestreams account tab appears even when the module is disabled for the quota.


Its based on the foxycart init function, this is from foxycart:
    // Setup our Subscription Browser
    $_tmp = array(
        'label' => 34,
        'quota_check' => false
    );
    jrCore_register_module_feature('jrUser', 'account_tab', 'jrFoxyCart', 'subscription_browser', $_tmp);

This is from my module function:
    // Setup the stream settings tab
    $_tmp = array(
        'label' => 1,
        'quota_check' => true
    );
    jrCore_register_module_feature('jrUser', 'account_tab', 'ujLifeStreams', 'stream_settings', $_tmp);

Is there anything I am missing to get that tab working as expected?
Thanks
updated by @ultrajam: 05/04/14 11:22:32PM
SteveX
@ultrajam
04/03/14 02:36:02PM
2,589 posts

Fatal error


Installation and Configuration

Probably not. You'd need to fix the code error or it will just be copied to the cache the next time. Make sure the developer module is enabled and that cache is set to 0 seconds.
updated by @ultrajam: 04/03/14 02:36:35PM
SteveX
@ultrajam
04/03/14 02:32:50PM
2,589 posts

Publishing from development server to production server


Installation and Configuration

You jsut use the marketplace to update, or overwrite the files manually. You only need to reconfigure if you are creating a new website.
updated by @ultrajam: 04/03/14 02:33:46PM
SteveX
@ultrajam
04/03/14 02:01:21PM
2,589 posts

checktype error


Jamroom Developers

That's my checktype. I dont remember anything about a "jrcore_checktype_cache" from back then though.

The foxycart module was always enabled on the dev site, so are you doing this on a new install already?
SteveX
@ultrajam
04/03/14 01:53:40PM
2,589 posts

Publishing from development server to production server


Installation and Configuration

Hi Danny,

From when I last looked at xtraxx, evrything should be portable to the live site, so you could just do a fresh jr5 install and copy over your custom modules and skin.

You'd then need to reconfigure the live site and foxycart similar to the dev site.

Imo that would be quicker than trying to copy over parts of your existing dev site config. So that's what I'd do: everything is supposed to be portable so you only need to copy over the modules and skin. I'd also trial that move to a second dev server before trying it on the live site, bugs can be found.

Steve
SteveX
@ultrajam
04/03/14 01:36:44PM
2,589 posts

Fatal error


Installation and Configuration

Hi Danny,

The line numbers are no use since it's coming out of a cached template. Try searching the templates for the text "xtAjax_get_meta_tags('xtSong', {$_post._1})" - the cause of the error will be close to that.
  174