Forum Activity for @michael

michael
@michael
12/15/16 10:56:37PM
7,837 posts

Stream Pay


Using Jamroom

That info is listed in the credit log in the ACP for the admin to see. The data is not currently displayed anywhere else.
michael
@michael
12/15/16 10:50:46PM
7,837 posts

Listing featured events that occur today and in future


Using Jamroom

search2="event_date >= `$smarty.now`" 
is going to evaluate into a timestamp, so become
search2="event_date >= 1481870742"
so you need to add the number of seconds between 'now' and 'midnight'. Thats a little harder than just adding a day to now. A day is 86400 seconds.

If that is acceptable, then
{$end = $smarty.now+86400}
{jrCore_list ......... search2="event_date >= $end" ........}

updated by @michael: 12/15/16 10:51:51PM
michael
@michael
12/15/16 11:22:41AM
7,837 posts

Podcast Hosting


Using Jamroom

Not sure changing 'genre' to 'date and time' is a wise move unless you're just talking about the label and not the Form Field type. If it works and you're happy with it though, cool.

The Form Designer changes Forms. The Template Editor changes Templates. Templates are where info from the database is displayed. Forms are where data gets put INTO the database.

So ... "how can I display the Show (formerly Album) names in the menu on the profile page? " will be an alteration to a template probably, but im not sure of the exact location you're referring to. Screenshot with a circle around the location please, or a URL.
michael
@michael
12/15/16 10:57:23AM
7,837 posts

PHPstorm xdebug setup on JR Hosting


Suggestions

xdebug is not something you setup on your production server. Its something you setup on your local network or local pc.

There is an older tutorial here:

Docs: "Setting up a debugging environment"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/129/setting-up-a-debugging-environment

but I usually use this as the guide to setting up the server:

Guide: "High Performance Jamroom on Digital Ocean"
https://www.jamroom.net/brian/documentation/guides/1188/high-performance-jamroom-on-digitalocean

So if you have an old pc that you can connect to your local network, turn that into a server. Thats the best way I reckon. If you dont have that install a server in the same pc you're running PhpStorm on, that works too.
michael
@michael
12/15/16 12:48:34AM
7,837 posts

Podcast Hosting


Using Jamroom

from a quick look at their website, it looks like "Audio" and "Video" are what it does. Which would correspond to the Audio and Video modules in Jamroom.

Anything special that Podcasts need to do that you're not seeing possible in Jamroom now?

Looks like a real easy setup to make a podcasting community. Not sure of the specific needs Podcasters have though.

You're the expert here Jeff, what would you want to exist?
michael
@michael
12/15/16 12:40:13AM
7,837 posts

Lost images during domain name change tool


Suggestions

curtis's idea could be right. If the URL was hard coded this could be possible, would need to see the templates and URL's to understand what the cause of the issue is.

If its working though, its working. :)
michael
@michael
12/14/16 11:51:34AM
7,837 posts

Seperate header or footer


Design and Skin Customization

Too vague, need more info. Templates are a language, they do whatever you want them to do, so you need to say what you want to do.

"I want to write a book, which words come first?" is difficult to answer.
michael
@michael
12/14/16 11:15:14AM
7,837 posts

Seperate header or footer


Design and Skin Customization

you can use an {if} statement for the different footer content, or if you REALLY need them in different files, use an {if} with a {jrCore_include} in it.
{if .....}
// first footer here
{else}
// Second footer here
{/if}

Docs: "Template Blocks"
https://www.jamroom.net/the-jamroom-network/documentation/jamroom-developers-guide/3126/template-blocks
michael
@michael
12/12/16 12:20:58PM
7,837 posts

Quick Tip: Posting your forum posts on Social Media


Using Jamroom

got a screenshot of what a forum feed to facebook looks like? interested. :)
  307