Forum Activity for @paul

paul
@paul
03/08/16 07:22:53AM
4,335 posts

Hide download button for a particular quota


Installation and Configuration

Try it now. I just did what was described above.
paul
@paul
03/08/16 04:50:05AM
4,335 posts

Hide download button for a particular quota


Installation and Configuration

Maybe it'll be easier and quicker if you send us the site url and admin logins, along with the quota you want downloads blocked for. Send them to support[at]jamroom[dot]net
Thanks
paul
@paul
03/08/16 12:09:16AM
4,335 posts

how can I make the Geo flags active


Jamroom Developers

GeoFlags is a third party module. Try posting this on the B360 forum - https://www.jamroom.net/b360/forum
Thanks
paul
@paul
03/07/16 02:10:40PM
4,335 posts

Proxima User details after loging issue.


Proxima

I've recently been checking out Proxima and have written a few simple bits of php code to test it out. Here's what I use to get user info -

        // Bring in Proxima Class
        if (!is_file(APP_DIR . "/modules/jrXProximaWidgets/contrib/Proxima.php")) {
            $_SESSION['jrXProximaWidgets_server_response'] = "ERROR: Proxima class file not found";
            jrCore_location("{$_conf['jrCore_base_url']}{$_post['url_option']}");
        }
        require_once APP_DIR . "/modules/jrXProximaWidgets/contrib/Proxima.php";
        $prx = new Proxima($_conf['jrXProximaWidgets_client_key']);
        $prx->SetProximaUrl("{$_conf['jrXProximaWidgets_proxima_url']}/api");
        $prx->SetSessionID($_SESSION['jrXProximaWidgets_local_session']['session_id']);

        // Get logged in user data
        $_rs = $prx->Get('user' . '/' . $_SESSION['jrXProximaWidgets_local_session']['_id']);

        if ($_rs && $_rs['code'] == 200) {
            // User OK
        }
        else {
            // User not on system
        }
So basically this line -

$_rs = $prx-> Get('user' . '/' . $_SESSION['jrXProximaWidgets_local_session']['_id']);

Is the "GET http://my.jamroom.site.com/api/user/x" bit where x is the Proxima user ID.

One comment on your post above is that you are requesting Proxima _id:1
There can never be a Proxima _id 1 as Proxima users are saved on the Jamroom user datastore and the Jamroom site admin will always be _user_id 1, so the minimul Proxima _id would be 2.
hth
paul
@paul
03/07/16 07:28:02AM
4,335 posts

Hide download button for a particular quota


Installation and Configuration

I still don't understand why the above solution Michael and myself explained will not do what you want?
paul
@paul
03/07/16 01:23:11AM
4,335 posts

When a member dies...and their private messages?


Using Jamroom

Quote: "I'd suggest that unless there was a very good reason, his private messages ought to stay private, so to achieve that, clone his quota to a 'Memorialised Quota', disable the PrivateNote module for that quota, then move him to it."

Paul- if i did that, would his private messages be automatically deleted for good?, or might I be able to turn the messages back on later ...if for example his son or daughter wanted to have their father's private messages? (sort of like having someone's old letters)
No messages would be deleted. If you re-enabled the module, all his messages would appear to the logged in user.

Quote: "You would also then have the option of testing for the quota in the profile templates and adding 'Memorialised' next to his name, say."

Paul, I'm not sure I understand what/how you mean about this 'testing'...? Yes I would like to create a Memorialized Quota and I know how to clone off the member quota...but can you clarify the other part you said, and how to add Memorialized next to the profile name in that quota?
In the appropriate skin profile templates you could just add a bit of code like this in the required place -

{if $profile_quota_id == x}
    "Memorialised"
{/if}
It might be easier though just to change his profile name to "John (Memorialised)"

Quote: "I'd also set his profile to one of the 'followers only' options"

What exactly do you mean by this and what setting are you talking about...and why would this be good?
Go to his profile update view and checkout the Profile Privacy options.

Please note that these are just suggestions of what can be done. You know all the circumstances in this case so need to decide the best course of action.
hth
paul
@paul
03/06/16 01:33:35AM
4,335 posts

When a member dies...and their private messages?


Using Jamroom

Its really up to you how you handle this, but personally, I'd suggest that unless there was a very good reason, his private messages ought to stay private, so to achieve that, clone his quota to a 'Memorialised Quota', disable the PrivateNote module for that quota, then move him to it. You would also then have the option of testing for the quota in the profile templates and adding 'Memorialised' next to his name, say.
I'd also set his profile to one of the 'followers only' options and certainly set the 'approve followers' option. I wouldn't give his user account to anyone (unless there was a very good reason, of course) and I'd even consider deleting it, leaving the profile owned by master admin (you), but if not, certainly change his password, just in case anyone else has it.
hth
paul
@paul
03/05/16 12:56:24PM
4,335 posts

Cannot export User CSV file...


Using Jamroom

Just to be clear, are you exporting users or profiles?
100 'users' shouldn't be an issue but 43000 profiles could well give memory problems.
paul
@paul
03/05/16 05:07:28AM
4,335 posts

Cannot export User CSV file...


Using Jamroom

The error says it all - your server is running out of memory when trying to process them all into a csv file.
How many profiles do you have?
paul
@paul
03/04/16 11:29:15AM
4,335 posts

4.0 to 5.0 conversion kit


Suggestions

Unfortunately not. Jamroom5 was a total rebuild, from te ground up, and is completely different to Jamroom4. Nothing is compatible.
If its any consolation, modules are a lot quicker and easier to build with JR5 than they ever were with JR4.
Thanks
  229