Forum Activity for @michael

michael
@michael
05/15/20 12:33:49AM
7,816 posts

Jamroom Paypal Callback


Jamroom Developers

It depends on what modules you're using. It could be in jrPayment, jrPaypal or jrFoxyCart.

Whichever one its in, if your developer is planning on changing code in any of those modules it will break as soon as an update comes out.

The correct way to adjust something is via

Docs: "Events and Listeners"
https://www.jamroom.net/the-jamroom-network/documentation/module-developer-guide/1011/events-and-listeners

There will be an event in the location that you're after to change whatever you want to from within your own module so no code needs to be changed in the jamroom modules.

That will keep your code safe when things are updated.
michael
@michael
05/14/20 05:59:21PM
7,816 posts

Charts acting strange after 6.5 Upgrade


Using Jamroom

It looks like its only the 1 day chart that is out of order. I suspect it will fix itself by tomorrow if that's the case.

If you'd like me to debug it, send the admin login details to support at jamroom dot net along with a link to this thread.

I'll download the chart related data and put it on a local server to figure out whats going on.

Are you seeing it in any other location than:
( YOUR SITE ).com/chart/days=1

( YOUR SITE ).com/chart/days=7
( YOUR SITE ).com/chart/days=30
Look like its working correctly
updated by @michael: 05/14/20 05:59:35PM
michael
@michael
05/14/20 04:44:45PM
7,816 posts

ISSUE from Last update 6.5.0


Using Jamroom

yeah the issue is jQuery is not available so the many of the buttons are not working. If you do find yourself in a situation of wanting to click a button you can use the browsers developer tools to remove the
onclick="....."
and change the input type to "submit" and that usually gets the buttons to work. I needed to do that to login with the details you sent me.
michael
@michael
05/14/20 03:49:14PM
7,816 posts

ISSUE from Last update 6.5.0


Using Jamroom

It looks like your site is online, if the issue is still just buttons not working in the ACP and you'd like me to take a look at it, send your admin login details to support at jamroom dot net with a link to this thread and I'll take a look.
michael
@michael
05/14/20 03:45:48PM
7,816 posts

ISSUE from Last update 6.5.0


Using Jamroom

yeah, you can change the skin in the database. Its in the jr_jrCore_settings table. The setting name is 'active_skin'. Here's a screeenshot of the value to change.

--edit--
Change the value, then clear the caches.

either by running the repair.php like you did before, or by clearing out /data/cache via SFTP
skin.jpg skin.jpg - 783KB

updated by @michael: 05/14/20 03:46:52PM
michael
@michael
05/13/20 10:49:51PM
7,816 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,816 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,816 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,816 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,816 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
  68