Forum Activity for @michael

michael
@michael
10/18/17 08:58:02AM
7,823 posts

Host suggesting problem with .htaccess


Installation and Configuration

we've got the details, need to get dinner then will start poking around.
michael
@michael
10/18/17 08:48:48AM
7,823 posts

Jamroom Not Recognizing Valid YouTube API Key


Installation and Configuration

Jamroom tries to USE the key you put in, if it doesn't work, then its youtube rejecting it not jamroom.

Send the key to support at jamroom dot net and I will try it from here.
michael
@michael
10/17/17 11:04:51PM
7,823 posts

jrCore_list random order values


Using Jamroom

It will have a default limit of 10 or 12 if no limit is set. If you set a limit it will limit to what you set.
michael
@michael
10/17/17 11:02:56PM
7,823 posts

Host suggesting problem with .htaccess


Installation and Configuration

im seeing a 502 too.

Try adding a file something.html with some contents at yoursite.com/something.html and see if it comes up.

Should tell you if the domain is online or not.
Temporary_Error_502.jpg Temporary_Error_502.jpg - 173KB
michael
@michael
10/17/17 01:23:22PM
7,823 posts

removing home from index page title


Installation and Configuration

soaringeagle:
found force_url in db
it said off i changed to on.. still the same prob

Which is SOOOO weird because it sounds like what you have is the settings set in the ACP are not effecting their values in the database.
michael
@michael
10/17/17 01:21:34PM
7,823 posts

Atypical Site Builder Widget


Jamroom Developers

In your custom smarty function 3 search calls for the last 15 items ordered by updated
        $_sp = array(
            'skip_triggers' => true,
            'order_by' => array('_updated' => 'desc'),
        );
        $_rt = jrCore_db_search_items('jrBlog', $_sp);

// repeat for the other wanted modules, 
// merge by the updated time to filter to the latest 15
// spit it out to the templates

    $out = jrCore_parse_template('your-formatting-template.tpl', $_rep, 'xxSomeModule');
return $out;
michael
@michael
10/17/17 01:11:39PM
7,823 posts

Host suggesting problem with .htaccess


Installation and Configuration

Try looking via FTP at the error log for jamroom:
/data/logs/error_log

and uploading a .htaccess file from a newly downloaded jamroom 6 download from here:
https://www.jamroom.net/products
michael
@michael
10/17/17 01:08:59PM
7,823 posts

Host suggesting problem with .htaccess


Installation and Configuration

If the issue started with a change to the item_detail.tpl of youtube, that would be my best guess as to where to look to start with.

I'd be REAL surprised to hear that altering the item_detail.tpl file caused the .htaccess file to start having issues. (sarcasm, thats not the issue!!!!)

https://www.lifewire.com/502-bad-gateway-error-explained-2622939

What were you trying to add? some javascript? then the issue is probably it needs {literals}

Docs: "{literal}{/literal}"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/3011/literal-literal

I'm about to go to bed now, so doing a server setup could be a push. The site is easiest to move to jamroom hosting when it is up. There is a hosting transfer module that lets it import right in, but if the site isn't up, that method isn't an option.

Docs: "Hosting Transfer"
https://www.jamroom.net/the-jamroom-network/documentation/modules/2960/hosting-transfer
michael
@michael
10/17/17 12:30:22AM
7,823 posts

Chat Visibility?


Using Jamroom

The chat will only show for logged in users, if a logged out user tries to access the chat it will redirect them to the login screen.

eg: try accessing the stand alone chat while logged out yoursite.com/chat/mobile and you will be redirected.

It requires the user to be logged in to make sure they have access to the room. Only users with access to the room can view each room.
michael
@michael
10/17/17 12:23:31AM
7,823 posts

Atypical Site Builder Widget


Jamroom Developers

You COULD build it AS a widget, but since you're not planning on releasing the thing as a module, what I would do would be to use the TEMPLATE CODE widget along with a custom smarty function from your module and put all the logic into the function.

So in the TEMPLATE CODE widget would go:
{xxSomeModule_foo}

and in your module xxSomeModule build the custom smarty function:

Docs: "Defining your own SMARTY function"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1569/defining-your-own-smarty-function
  176