Forum Activity for @the-patria-company

PatriaCo
@the-patria-company
06/21/17 08:10:07PM
349 posts

Custom Backgrounds in FollowMe


Design and Skin Customization

Is there a way to get the Profile Tweaks Custom Backgrounds to work in the FollowMe Skin?
updated by @the-patria-company: 09/22/17 11:05:12PM
PatriaCo
@the-patria-company
03/24/17 03:43:26PM
349 posts

Who to Follow - how to exclude a couple quota_id


Design and Skin Customization

It works with a single variable, but breaks the template with multiple variables.

search1="profile_quota_id not_in 3" >>> WORKS
search1="profile_quota_id not_in 3,4,5" >>> does not work

Another ideas I could try?
PatriaCo
@the-patria-company
03/24/17 12:06:39PM
349 posts

Who to Follow - how to exclude a couple quota_id


Design and Skin Customization

Is there a way to select or exclude multiple quotas in the search param?
PatriaCo
@the-patria-company
03/24/17 06:45:53AM
349 posts

Bridge Hook to JR data


Jamroom Developers

I have definitely been testing out Proxima. I cannot seem to access my api data via a HTTP Basic Authentication. I think it may have something to do with my system not registering as being a mobile device. Not for sure on this?

Currently all new signups are made on JR first (free account), then users are redirected to our WHMCS billing system when they want to upgrade.

Ultimately, I just need to be able to have our WHMCS billing system access a master admin account, find a user's profile and select the appropriate Quota.
PatriaCo
@the-patria-company
03/22/17 02:04:18PM
349 posts

Bridge Hook to JR data


Jamroom Developers

Thanks for helping me think this through Michael.

WHMCS offers an account creation API, as well as WHMCS OpenID.

So if I were to create a module that listened for the clear text and sent it via the API over to WHMCS to create the account. Then turned on the OpenID through OneAll.

Could I then use the WHMCS OpenID for an admin account, to manage the profile's quota selection? Or is external access to OneAll credentials in Jamroom not accessible?
updated by @the-patria-company: 03/22/17 07:44:03PM
PatriaCo
@the-patria-company
03/22/17 06:22:35AM
349 posts

Bridge Hook to JR data


Jamroom Developers

Yes, I am creating a "provisioning module" since my WHMCS instance is managing all of our advanced billing, live support and support tickets. I need to get the two systems talking. :)
PatriaCo
@the-patria-company
03/21/17 08:19:10PM
349 posts

Bridge Hook to JR data


Jamroom Developers

I am working on a bridge to WHMCS. They already have an internal function for POSTing data to create a new user when a current email match does not exist. I am just not sure how capture the data from my JR hosted instance. Here is the hook file that is triggered on every login attempt in my WHMCS:

<?php
add_hook('ClientLoginShare', 1, function($vars) {
    // Perform custom authentication logic here

    // User not found
    return false;

    // Login as existing WHMCS Client by Email Address
    return array(
        'email' => 'jr_user@my-site.com',
    );

    // Create a new client and login
    return array(
        'create' => true,
        'email' => 'jr_user@my-site.com',
        'companyname' => 'JR Username',
        'password' => 'xxxxxxxx',
    );
});


I am assuming that when create=>true, I need to authenticate into my JR hosted db, match the Email and pull the Username, Password. Then pass those variables into the return array (

however, my basic understanding of what I think needs to happen, does not yet translate into code. ;) Would someone have a minute or two to give me a hand? Much appreciated.

Thanks.
updated by @the-patria-company: 06/24/17 06:42:24PM
PatriaCo
@the-patria-company
03/20/17 06:30:20AM
349 posts

Who to Follow - how to exclude a couple quota_id


Design and Skin Customization

Would anyone have time to implement this soon? We are running into some issues were certain profiles continue to show up that need to be filtered out.

Thanks
  12