Forum Activity for @michael

michael
@michael
10/17/14 01:27:47AM
7,832 posts

Insecure content


Off Topic

Your looking for the right thing.

Here's what I found:

This explains the issue:
https://support.mozilla.org/en-US/kb/how-does-content-isnt-secure-affect-my-safety?as=u&utm_source=inproduct

(which you already know.)

This is someone else in the same situation:
http://stackoverflow.com/questions/4728507/finding-all-insecure-content-on-a-secure-page

This was the suggested next step:

"Why No Padlock?"
https://www.whynopadlock.com/check.php

When your site was put in, it returned:
Quote: Valid Certificate found.
Problem verifying certificate.

It started to get very specific and technical when searching for
Quote: why not padlock "Problem verifying certificate."

does "Problem verifying certificate" mean anything to you? To me it seams like an issue with the servers SSL Cert. Don't have many more clues than that though.
michael
@michael
10/16/14 10:29:56PM
7,832 posts

JR Video Player on index.tpl or any other skin template


Jamroom Developers

It would but it looks like your skin does not define a default player to use. So you will need to add a type parameter.

In the skins from the-jamroom-network in the include.php file inside the _init() function you will see this type of setup:

jrCore_register_module_feature('jrCore', 'media_player_skin', 'jrElastic', 'jrVideo', 'jrVideo_player_dark');

Which is the skin registering which player it wants to use as the default player.

Since you getting a "jrCore_media_player: invalid type parameter" error it means that your skin hasn't got that setting set and that you will need to set it manually.

So use:
{jrCore_media_player module="jrVideo" items=$_items type="jrVideo_player_dark"}

and you should be good to go.
michael
@michael
10/16/14 10:20:37PM
7,832 posts

JR Video Player on index.tpl or any other skin template


Jamroom Developers

Yeah, I tried both ways before suggesting them. Both ways work. What code are you using?
michael
@michael
10/16/14 10:16:35PM
7,832 posts

form designer field permissions


Using Jamroom

could you take a screenshot of what you have set as the settings in the config for the
* User IDs
* Profile Quota IDs

Please.
michael
@michael
10/16/14 09:54:48PM
7,832 posts

Audio Counts


Using Jamroom

Facebook always seams to have the base of anything being servered from a facebook location.

When you put up a link to a page, it shows an image from the page, but the actual link to the image points to somewhere like:

I think its probably to make sure the image (or in this case audio file) is there if the post went viral.
michael
@michael
10/16/14 08:18:17PM
7,832 posts

JrCore_list


Genosis

{jrCore_list} works with whatever module you want to list up.

So in order for events to appear on the {jrCore_list} it would need to be in the system. If everyone did put that event in the system, then something like this would get it out:

 {jrCore_list module="jrEvent" search1="event_date >= `$smarty.now`" order_by="event_date NUMERICAL_ASC" pagebreak="10"}

That would get the next 10 events that are upcoming from todays date. Its totally going to depend on whether the event has actually been entered into the profile though.

If you wanted to base it off something like the persons birthday, then you'd need to build something custom to search for that instead.
updated by @michael: 12/29/14 09:23:55AM
michael
@michael
10/15/14 07:40:10PM
7,832 posts

What do i need to make it work


Installation and Configuration

Have you read the docs on what a quota is:

"The Jamroom Quota System"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/693/the-jamroom-quota-system

And this free course should help you understand how Jamroom works:

"Start Your Own Online Community"
https://www.udemy.com/start-your-own-online-community

It will walk you through setting up and using jamroom from the beginning.
michael
@michael
10/15/14 07:35:18PM
7,832 posts

Upload failed


Installation and Configuration

or perhaps provide some login info for a profile on your site, so we can try uploading something there. Either that or try from different computers/internet connections.
michael
@michael
10/15/14 07:22:01PM
7,832 posts

Buy now - button- time limit access


Using Jamroom

The first thing that comes to mind is to add a "Offer Ends" to the product for sale via the Form Designer for each product sold.

You would then need to alter the templates for the sales pages and surround the sale button with:
{if $_item.offer_ends <= `$smarty.now` }
 //show the buy now button here.
{/if}

You would need to get the variable correct, so use {debug} for that. And make sure it is in timestamp format so it corresponds to $smarty.now.
  651