Forum Activity for @michael

michael
@michael
06/12/14 01:31:04AM
7,832 posts

JPlayer seek-bar not working


Jamroom Developers

What kind of answer are you hoping to get with that question?

Best answer possible given all the info provided...

Working here:
http://demo.jamroom.net/jrMediaPro/elvis-fontenot/audio/18/my-oh-my
michael
@michael
06/11/14 08:53:04PM
7,832 posts

Assigning another User to main profile


Jamroom Help

First thought:
* don't use the "Solo Artist" skin as its meant to show only 1 profile and your wanting to have more than one.
* setup 3 quotas,
-- Artist quota
-- Band members quota
-- Fans quota

* display only stuff from the Artists quota on the main section of the site.
michael
@michael
06/11/14 06:02:14PM
7,832 posts

Assigning another User to main profile


Jamroom Help

Without doing too much searching I would expect it to have an effect.

The solo skin is supposed to only show 1 profile. So if you have other profiles while using the solo skin, if they were shown it would be surprising.

What do you want to happen?
michael
@michael
06/11/14 05:51:11PM
7,832 posts

How do i put a video on to a profile on solo artist bundle?


Using Jamroom

a profile is at the very core of the jamroom concept, its part of the core set of downloads. There is no way to NOT have a profile.

eg: currently you are on "The Jamroom Network" profile on jamroom.net. If you look at the side of this page you will see:
* Brian
* Douglas
* Paul
* Michael

All those users are members of the "The Jamroom Network" profile.

That means I am able to upload whatever options are available to this profile. I also have my own profile that I dont use much:
https://www.jamroom.net/michael

On your site, the profile page is here:
http://planetnelly.co.uk/nelly-niel/

since your using the solo skin.

When I go there I can see
* Timeline
* audio
* blog
* events
* payments
* bundles
* gallery
* playlist
* youtube

If you are a member of that profile you should see
* video

If the video module is enabled for that profile. You would be able to upload video at that location.

If you cant see it that means that that profile is not one that is allowed to upload video. The admin would need to change that in the ACP by allowing profiles in that same quota to upload video.

look for it at:
http://planetnelly.co.uk/video/admin/quota
michael
@michael
06/11/14 05:42:22PM
7,832 posts

Media storage and caching


Jamroom Developers

If your wanting to reduce delivery time of cached pages without need for reprogramming of the system take a look at cloudflare.com
michael
@michael
06/10/14 08:27:10PM
7,832 posts

I would like to give members free data . How would i do this? and where ?


Using Jamroom

You could do it with quotas and a few alterations to the templates.

Check that the user is in a specified quota, then show the download button. Its not able to be done by setting any settings at the moment. It would need custom code.
michael
@michael
06/10/14 08:24:41PM
7,832 posts

How do i put a video on to a profile on solo artist bundle?


Using Jamroom

That recent videos section will show any recent videos that have been uploaded.

Since Jamroom is profile centric, all uploaded material goes onto a profile.

Each user has a profile, eg your profile on jamroom.net is here:
https://www.jamroom.net/mick303

if there was a "Videos" section there, then you could upload videos to your profile. There isn't because jamroom.net does not have that module enabled.

So if your site does have that module enabled and your members are allowed to upload videos, when they do they will appear in the recent videos section of your site.
michael
@michael
06/09/14 07:51:55PM
7,832 posts

System Tips Modification


Suggestions

Do you know what you want the tips to say? It would save me time thinking about that if you already know.

Easier to implement something that's already half done.
michael
@michael
06/09/14 07:37:31PM
7,832 posts

System Tips Modification


Suggestions

Its using anchors for the tips, then figuring out what to write.

Technically doable.
michael
@michael
06/06/14 11:01:20PM
7,832 posts

How daily maintenance execute


Jamroom Developers

If you want to fire off a function from your module when the daily maintenance is run, use the 'daily_maintenance' listener.

You can see examples of modules registering to listen for it in the _init() function of these modules.
/modules/jrBackup/include.php
/modules/jrCharts/include.php
/modules/jrCore/include.php
/modules/jrImage/include.php

It will look like this:

    // Once a day we cleanup old cache entries
    jrCore_register_event_listener('jrCore', 'daily_maintenance', 'jrImage_daily_maintenance_listener');

What that piece of code reads is:
"When the daily maintenance is run, also fire off my function jrImage_daily_maintenance_listener()"

Then in jrImage_daily_maintenance_listener() the jrImage module cleans up cached files that have not been used lately.
  689