Forum Activity for @michael

michael
@michael
09/17/14 06:47:15PM
7,832 posts

Grrrr... Error 404


Installation and Configuration

This is the link to our recommended package:
https://www.jamroom.net/r/recommended-hosting

Its $4/month if you take out a longer term payment scheme, or $7 if you go month to month.

Good to hear your excited. Hope you build something cool. :)
michael
@michael
09/17/14 06:29:24PM
7,832 posts

How To Embed or Pop Out Single Audio Track


Design and Skin Customization

You would create a page that contains the player only. Then make that pop out using whatever popout you like.

Loose overview:
your-site.com/popout_player

would link to
/skins/YOUR-SKIN/popout_player.tpl

Put the player in there using variables that come in from the url.

If you want a song, then add that to the url your using in the popout call

your-site.com/popout_player/555

Then in popout_player.tpl use the {debug} to find out the name of the variable that has "555" as its value.

Pass that to the player as the item_id of the song you want to play.
michael
@michael
09/17/14 06:23:40PM
7,832 posts

adding menu tabs to jrseamless


Design and Skin Customization

"Adding a tab menu" sounds like you want to create a new skin element.

jrSeamless is a used to get data. They're not really related.

You could setup a tab menu, then use jrSeamless to make the list of content.

Think of jrSeamless the same as {jrCore_list}. Its a way to get data from the database.

Sounds like what you need is probably "How do I make a tab section?" Does that sound right?
michael
@michael
09/15/14 11:54:54PM
7,832 posts

Worker queues


Jamroom Developers

Lecture 19 in "Developers Guide to Customizing Jamroom" course is "The Queueing System"
https://www.udemy.com/developers-guide-to-customizing-jamroom

Or you can watch this video on YouTube:

"Jamroom queueing system"
Jamroom queueing system
michael
@michael
09/15/14 11:49:59PM
7,832 posts

active market


Using Jamroom

hmmm... working here for me.

Wonder what the error was... Any other info? error logs, console errors?
michael
@michael
09/15/14 05:56:35PM
7,832 posts

Some template questions..


Design and Skin Customization

m2antrax:1. How can i get the default image of the current member loged in?

If you want anything of the user looking at the screen, its found in the $_user array.


You might try:
{jrCore_module_function function="jrImage_display" module="jrProfile" type="profile_image" item_id=$_user._profile_id size="large" class="img_scale" alt="Your Image" title=$hover width=false height=false}
michael
@michael
09/12/14 10:05:36PM
7,832 posts

recent upgrade broke my site


Using Jamroom

If you like that sort of challenge, then turn on the beta channel. That's EXACTLY the challenge in there. ;)
michael
@michael
09/12/14 09:47:29PM
7,832 posts

Insert extra fields in the search form..?


Using Jamroom

You can put a job there from your profile.

https://www.jamroom.net/torbenj on the JOB tab.

But that tab is only there for VIP Members. You can become a VIP Memeber by subscribing here ( $29 / YEAR ):
https://www.jamroom.net/subscribe
michael
@michael
09/12/14 09:45:15PM
7,832 posts

Linking power user profiles to new user accounts.


Using Jamroom

Linking accounts is an admin level feature. Its not available to be allocated.

Its in the ACP under USER PROFILES - TOOLS - USER PROFILE LINK:
your-site.com/profile/user_link

If you wanted to expose that functionality to a quotas you'd have to do something custom.
michael
@michael
09/11/14 09:50:04PM
7,832 posts

Radio Option On Form Designer Has Bugs


Design and Skin Customization

Ekwe:
Every time I select it as an option for my modules, they do not work anymore. Except I make them inactive.

I keep getting this - invalid jrCore_checktype:
'Invalid jrCore_checktype' means the checktype your trying to use is unknown. Make sure its correct.

The docblock for checktype contains all the options:
Quote:
/**
* Test a value to see if it is of a specific "type"
*
* The jrCore_checktype function is used for variable validation to ensure
* a given variable is of the requested "type". Valid types are:
*
* * allowed_html - Ensures value is a string and is allowed to contain HTML allowed in the profile's quota
* * core_string - the numbers 0-9, letters a-z and _ (underscore)
* * date - a valid date
* * domain - a valid domain name (no www)
* * email - a valid email address
* * float - a floating point number
* * hex - a hexidecimal value
* * ip_address - a valid IP Address
* * is_true - boolean TRUE or int or string "1"
* * md5 - valid 32 character long MD5 hash
* * multi_word - a string with more than 1 word
* * not_empty - a string of any length
* * number - an integer
* * number_nn - an integer greater than or equal to zero (0)
* * number_nz - an integer greater than or equal to one (1)
* * onoff - either "on" or "off"
* * price - a price in D.CC format
* * printable - UTF-8 characters with HTML stripped
* * sha1 - a 40 character SHA1 hash
* * string - a string that does not contain HTML or hidden characters
* * url - a valid URL
* * url_name - the numbers 0-9, letters a-z, _ and - (dash)
* * user_name - the numbers 0-9, letters a-z, _ (underscore), - (dash) and spaces
* * file_name - string that can contain a . (dot)
* * yesno - "yes" or "no"
* * json - check if a string is json or not
*
* @param string $input String to test
* @param string $type "Type" to test incoming string against.
* @param bool $desc_only Returns checktype description ONLY if set to true
* @param bool $type_only Returns checktype TYPE ONLY if set to true
*
* @return mixed
*/

updated by @michael: 09/11/14 09:50:39PM
  661