Forum Activity for @michael

michael
@michael
05/13/20 10:49:51PM
7,791 posts

Video and audio uploads not converting


Using Jamroom

Isleander:....Can I run my other non-jamroom sites on your Jamroom server as well as Jamroom?....
'NO' to wordpress. It's too buggy and will get your server hacked. Wordpress is not allowed on jamroom hosting.
michael
@michael
05/13/20 10:47:36PM
7,791 posts

Issues following the updates


Using Jamroom

Everyone having to re-login could be an expected side-effect of updating the code, but that should stick after they do it the first time. You're saying they have to do it each time? That would be a bug.
michael
@michael
05/13/20 10:45:31PM
7,791 posts

How I change the buttons ?


Using Jamroom

You can use the the URL from that button to construct a bigger link in the item_list.tpl pages. The link on that button will be something like:
http://yoursite.test/uploaded_audio/download/audio_file/1/general-rock
so you'd need to create a button in the item_list.tpl pages that looks something like this:
{jrCore_module_url module="jrAudio" assign="murl"}
<a href="{$jamroom_url}/{$mulrl}/download/audio_file/{$item._item_id}/{$item.audio_title_url}" class="custom-download-button">THIS IS THE DOWNLOAD BUTTON</a>

Then you'd need to style it however you like via CSS.
michael
@michael
05/13/20 05:01:55PM
7,791 posts

A - Z Artist / Profiles page - Audio Pro


Design and Skin Customization

it would list them in the order they signed up in because there is no order by parameter set
{jrCore_list module="jrProfile" search1="profile_url like a%" order_by="profile_url asc"}
or the reverse:
{jrCore_list module="jrProfile" search1="profile_url like a%" order_by="profile_url desc"}

That wild card mean (and an other characters) so
" search1="profile_url like a%"}
means (beginning with the letter 'a' )

" search1="profile_url like %a%"}
means (has the letter 'a' somewhere in it)

" search1="profile_url like %a"}
means (ends with the letter 'a')

--edit--
You can order by anything that exists in the profile datastore, so you could "Get all profiles beginning with 'a' and order them by their phone number" if you wanted.
updated by @michael: 05/13/20 05:03:23PM
michael
@michael
05/11/20 11:53:10PM
7,791 posts

Video and audio uploads not converting


Using Jamroom

We had someone using Plesk walk away grumpy a couple of weeks ago:

Forum: "Lucid Skin Error gets my server blocked on Chrome and Safari"
https://www.jamroom.net/the-jamroom-network/forum/installation-and-configuration/63071/lucid-skin-error-gets-my-server-blocked-on-chrome-and-safari

Something in that system adds security stuff that wont allow one part of jamroom to function. Should be ok as long as you understand that its possible that the
ACP -> SKINS -> STYLE

editor may not function under plesk. The work-around is to do all your customization in the file system and upload.
issue.jpg issue.jpg - 696KB

updated by @michael: 05/11/20 11:53:37PM
michael
@michael
05/10/20 06:21:05PM
7,791 posts

A - Z Artist / Profiles page - Audio Pro


Design and Skin Customization

Sorry, thought you were on our hosting. Its all-access to all the modules/skins we make so looking at it wouldn't involve purchasing anything. Just keep going with your existing structure, its working.
michael
@michael
05/10/20 06:14:23PM
7,791 posts

Video and audio uploads not converting


Using Jamroom

The underlying linux system does not matter so much, as long as it meets the server requirements:

Docs: "Server Requirements"
https://www.jamroom.net/the-jamroom-network/documentation/getting-started/774/server-requirements

so it could run on a correctly set up Cent OS7

--edit--
Whats going to be of more of a concern for you is will they help you setup the VPS. Because a lot of the time the cheaper VPS servers are 'unmanaged' which means as long as the server is online then their job is done, its up to you to take care of running the server. The more expensive version is a 'managed VPS' where if something goes wrong you can ask them to fix it.

Jamroom hosting is managed hosting: https://www.jamroom.net/hosting
updated by @michael: 05/10/20 06:17:45PM
michael
@michael
05/07/20 04:48:19PM
7,791 posts

Image watermarks


Using Jamroom

Its a setting that is not turned on by default.
ACP -> MODULES -> IMAGE SUPPORT -> QUOTA CONFIG -> WATERMARK

Uncheck the "Watermark Images" checkbox.
michael
@michael
05/07/20 04:45:06PM
7,791 posts

Video Upload Form Gone


Using Jamroom

The message reads "This video file is currently being processed and will appear here once complete".

So it could still be processing. Check the queues to see if there is anything there:
ACP -> DASHBOARD -> QUEUE VIEWER

if thats clear, then check the error log and activity logs for any more info.
ACP -> DASHBOARD -> ACTIVITY LOG
ACP -> DASHBOARD -> ERROR LOG
queue.jpg queue.jpg - 1.1MB
michael
@michael
05/07/20 04:40:05PM
7,791 posts

A - Z Artist / Profiles page - Audio Pro


Design and Skin Customization

MetalScene:......With regards to bands with Numbers or a # $ type symbol in the first part of the name, what character calls them up ?......

instead of 'profile_name' if you search on 'profile_url' that will not contain any weird characters.

{jrCore_list module="jrProfile" search1="profile_url like a%"}

'profile_url' is the profiles name converted to characters that are valid in a url, so "Crosby, Stills & Nash" would be converted to "crosby-stills-nash"
  66