Forum Activity for @paul

paul
@paul
01/16/19 03:31:14PM
4,335 posts

question about moving group/forum threads


Using Jamroom

Sorry that this has happened to you. I will check it out of course and my immediate thoughts are that target group members were being notified upon every new comment creation.
I recommend that no one else uses this tool until I can get to the bottom of it.
Thanks
paul
@paul
01/16/19 02:11:40PM
4,335 posts

Moving from WP Job Site to Jamroom


Using Jamroom

Hi - Don't know of any job listing Jamroom sites offhand, so hopefully another user has one? But what you describe should be pretty straightforward with JR.

If you want to import DB data checkout the Jamroom Exporter/Importer modules. These have been designed to bring third party DB data into a Jamroom site, though it is via CSV files so there would be a certain amount of work exporting the source database to CSV, then formatting it.

We offer old Jamroom customers $50 discount on our Premium package and $100 discount on our Professional package - https://www.jamroom.net/products
Alternatively, checkout our Hosted packages where you'd get access to all Jamroom modules and skins for as many domains as you want (provided they reside on one of our servers).

Hope this helps
paul
@paul
01/16/19 06:10:33AM
4,335 posts

Modify the guestbook module or build a custom module?


Jamroom Developers

Quote: Because it's designed for other users to post on a users profile rather than for the profile owner to enter info, the guestbook doesn't have a form for the profile owner in the way that other modules have (there's no 'create new' on the admin side) so form designer doesn't appear. I would need to hard code the extra form fields and i'm still trying to figure out how to get those fields configured.

Yes, the GuestBook module is a bit different, as you say, because users other than the profile owner can create entries. This is why there is no 'jrGuestBook_create' view in the module's index.php file and the form is included in the module's 'item_index.tpl' template file (lines 19 - 39) -
        <div class="item">

            {if jrUser_is_logged_in()}

                <div id="guestbook_notice" style="display:none;"><!-- any guestbook errors load here --></div>

                <form id="gform" method="POST" onsubmit="jrGuestBook_post_entry('{$_profile_id}','#gform','#guestbooks');return false">
                <input type="hidden" id="profile_id" name="profile_id" value="{$_profile_id}">
                <textarea name="guestbook_text" cols="40" rows="5" class="form_textarea"></textarea>
                <br>
                <div style="vertical-align:middle">
                    <img id="form_submit_indicator" src="{$jamroom_url}/skins/{$_conf.jrCore_active_skin}/img/submit.gif" width="24" height="24" alt="{jrCore_lang module="jrCore" id="73" default="working..."}" style="margin:8px 8px 0px 8px;"><input id="guestbook_submit" type="submit" value="{jrCore_lang module="jrGuestBook" id="19" default="sign guest book"}" class="form_button" style="margin-top:8px;">
                </div>
                </form>

            {else}

                {jrCore_lang module="jrGuestBook" id="22" default="You must be logged in to post to this guestbook!"}

            {/if}
        </div>

Quote: Also, the logged into post - I explained that wrong, what I actually want is:
I have three quotas - A,B,C
Only quota A has the module on their profiles
Only quotas A, and B can post to the modules on other (quota A's) profiles
Anyone, logged in or out, can view entries on a quota A's profile

Do this by adding extra conditions to the if statement in the above template code -

{if jrUser_is_logged_in() && ($_user.profile_quota_id == A || $_user.profile_quota_id == B)}

A and B would need to be the numeric values of the quota_id's in question, of course.

You then might want to modify the view_jrGuestBook_sign function in the module index.php as an extra security feature -

    // Must be logged in
    jrUser_session_require_login();
    if ($_user['profile_quota_id'] != A && $_user['profile_quota_id'] != B) {
        jrUser_not_authorized();
    }
    jrCore_validate_location_url();

with A and B being the numeric quota_ids, as above.

hth
paul
@paul
01/16/19 12:50:24AM
4,335 posts

Modify the guestbook module or build a custom module?


Jamroom Developers

As it sounds as through you just want a variant of the Guestbook module, maybe 'clone' that and use that as a starting point?
Try it as follows -

1) Create your module folder 'xxTestimonial' say
2) Copy all the jrGuestBook files to xxTestimonial
3) Work through all xxTestimonial files changing all instances of 'jrGuestBook' to 'xxTestimonial' and 'guestbook' to 'testimonial'
4) Test the new xxTestimonial to see that it still works the same as the guestbook module
5) Edit the xxTestimonial item_index.tpl template to add extra fields to the 'sign' page
6) As admin, goto a user's testimonial page and click on the update (*) icon. Use the Form Designer to add form fields to match those added to the template.

Quote: make it so that everyone can view the posts but only logged in users can make a post.
The GuestBook module already works this way so nothing to do for that.

Hope this helps
paul
@paul
01/13/19 12:53:59PM
4,335 posts

Help with subscription module


Jamroom Developers

Probably to do with configuration but difficult to say without more information on your setup.
Send your site and the master admin login to support[at]jamroom[dot]net and we'll take a look.
Thanks
paul
@paul
01/12/19 07:34:56AM
4,335 posts

Can't get SSL to work


Using Jamroom

Quote: but will it cause any issues down the line if I don't have the redirect in the config file

So what does your config.php file look like now?
paul
@paul
01/12/19 06:26:07AM
4,335 posts

Can't get SSL to work


Using Jamroom

Make sure that the /data/config/config.php is configured correctly with the right base url.
Also, is this a stock Jamroom skin or have you edited it at all?
What is the site url?
paul
@paul
01/12/19 03:00:55AM
4,335 posts

List of Pending Users shows only recently pending.


Using Jamroom

...I have this fixed on your site and in the next release of the jrUser module.
Thanks for bringing it to our attention.
paul
@paul
01/11/19 01:32:48AM
4,335 posts

question about moving group/forum threads


Using Jamroom

Actually, when moving group discussions, commenters are made (pending) members of the target group. It advises that this will happen in the tool view (see screenshot). However, they do then remain members of the source group regardless of whether they have posted in any other source group discussion or not.

Similarly, group memberships are created when transfering a forum topic, but for some reason, the notification in that tool view doesn't exsist!!
hth
Screen Shot 2019-01-11 at 09.26.10.png Screen Shot 2019-01-11 at 09.26.10.png - 53KB
  72