Forum Activity for @paul

paul
@paul
04/18/14 02:55:56AM
4,335 posts

How can I export only the"member's" area of the database ?


Using Jamroom

Two options -

1. Create a simple custom function to delete all profiles except the members in the signup quota, something like -

    $signup_quota = 2; // Or whatever your signup quota is
    $_s = array(
        "search" => array(
            "_profile_id > 1",
            "profile_quota_id != {$x}" 
        ),
        "exclude_quota_keys" =>true,
        "exclude_user_keys" =>
    );
    $_rt = jrCore_db_search_items('jrProfile',$_s);
    if (isset($_rt['_items']) && is_array($_rt['_items'])) {
        foreach ($_rt['_items'] as $rt) {
            jrProfile_delete_profile($rt['_profile_id']);
        }
    }

Then import your MP3s

2. I've recently merged all profiles and users from one site to another so have a custom module to do it. It ONLY does profiles, users, and their images and not any of their media or items. I could send it to you but bear in mind that while it worked for me, its not supported and its your problem if anything goes wrong. Do backups first.
It would also need a very simple (one line) tweak so that it only moves the 'signed up' profiles and users.
So, if you went this way, you'd need to create a target JR5 site, moved the signed up members over to it, import your MP3s to it, delete the original site, then move the new site into its place.

hth
Pa
paul
@paul
04/17/14 02:26:52PM
4,335 posts

How can I export only the"member's" area of the database ?


Using Jamroom

izhmel:
I have a artist and a member quota , I want only the members that sign up to be exported ..... and use the mp3 importer to re import the artist

I think I'm understanding you, but please confirm.
You want to keep 'signed up' members (and their media?) and deleted everything else, then import a load of MP3s and have the importer create artist profiles from their tags?
paul
@paul
04/17/14 02:19:58PM
4,335 posts

Just Released - Genosis


Announcements

SteveX:
What if I'm an alien?

I've often had my suspicions ;-)
paul
@paul
04/17/14 01:26:00PM
4,335 posts

Just Released - Genosis


Announcements

sekeri:
It is really nice but I think you should have spent your energy on something really related to Jamroom.

???? Genosis runs on Jamroom and nicely demonstrates that JR isn't just for music sites.
paul
@paul
04/17/14 01:49:00AM
4,335 posts

How can I export only the"member's" area of the database ?


Using Jamroom

Do you mean all the members' items (audio, video etc.)?
All datastore items include the profile and user IDs that they belong to. If you exported them, then re-import profiles and they end up with different IDs, their items won't tie correctly.
paul
@paul
04/16/14 01:28:39PM
4,335 posts

any docs coming out soon on the user polls,media url scanner


Using Jamroom

Yep - Forgot that its actually implemented here on the forums as well.
You can also paste in the URL of one of your profiles' media detail pages as well - http://yoursite.com/xxxx/audio/1/great-track
Works with audio, video, youtube, soundcloud, vimeo and flickr.
paul
@paul
04/16/14 01:06:02PM
4,335 posts

Master Admin


Using Jamroom

Have you edited the /data/config/config.php file with the new domain?
paul
@paul
04/16/14 12:12:46PM
4,335 posts

any docs coming out soon on the user polls,media url scanner


Using Jamroom

Just the info tab for jrUrlScan is correct. Just enable the module, then paste a media URL into a blog or an activity. Click on the link in the post and see what happens.
jrPoll is being tweaked atm so we'll get some docs up when that is done.

updated by @paul: 04/16/14 12:13:35PM
paul
@paul
04/16/14 07:56:21AM
4,335 posts

require Birthday when sign up


Design and Skin Customization

Selecting date as field type might only go back to 1/1/1970? And an old person would have a lot of calendar clicks to get to the right year!!
You might want to create three select fields - user_birth_day, user-birth_month and user_birth_year and enter the options in the options fields.
paul
@paul
04/16/14 03:49:47AM
4,335 posts

Upload files on item detail page for module


Jamroom Developers

Can you explain a bit more?
What do you want to achieve?
Are the uploads for the profile owner or for anyone to upload?
etc. etc.
  397