Forum Activity for @michael

michael
@michael
04/10/18 10:01:24PM
7,823 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

The only part of that code related to signup_questions is this bit:
        {if jrUser_is_logged_in() && $_conf.sedreadsiteskin4_profile_questions == 'on'}
            {jrNingImport_signup_questions user_id=$_user_id assign="ning_questions"}
            {if isset($ning_questions)}
                <div class="block">
                    <div class="block_content mt10">
                        {$ning_questions}
                    </div>
                </div>
            {/if}
        {/if}
michael
@michael
04/10/18 09:50:30PM
7,823 posts

changes in configuration are not taking effect


Installation and Configuration

your php.ini file does have 2048MB for all 3 of the necessary items:
post_max_size = 2048M
upload_max_filesize = 2048M
memory_limit = 2048M
and your SYSTEM CHECK tool shows that it has that limit working. (screenshot)

But its not working, there are no errors, and it fails almost instantly on files larger than 512M. It doesn't even try to upload them partially.

I've replicated your php.ini setup here on my local environment but can not reproduce the issue. For me it does work.

That suggest something about the server is the issue, but I do not know what sorry.
system_ok.jpg system_ok.jpg - 129KB
michael
@michael
04/09/18 05:28:43PM
7,823 posts

Followers sometimes get doubled listing in 'my followers' list


Using Jamroom

In your jrFollower item_index.tpl template (yours is custom) I've added
group_by="_profile_id"
so double items are grouped together.

It now reads:
 {jrCore_list module="jrFollower" search1="follow_profile_id = `$_profile_id`" order_by="_created desc" pagebreak=40 page=$_post.p template=$ftpl pager=true group_by="_profile_id" }

That should fix it.
michael
@michael
04/09/18 05:05:19PM
7,823 posts

changes in configuration are not taking effect


Installation and Configuration

I replied asking for a file bigger than 512MB, can you send me one to use for testing. Thanks.
michael
@michael
04/09/18 05:03:27PM
7,823 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

The custom Form Designer fields have nothing to do with the output location. The Form Designer is for designing forms.

The template code will determine who sees what.

If you have made a new form field called user_birthday and set its DISPLAY GROUPS to "logged out users only" It will show for absolutely nobody. Because logged out users dont have access to forms.

So the settings in DISPLAY GROUPS only cover who sees what on forms.

If you want to change template stuff, try the {jrUser_is_logged_in()} function.
michael
@michael
04/09/18 04:58:08PM
7,823 posts

VR / 360 video experiences - any interest?


Off Topic

That's very cool. I dont have a VR headset, but love the concept.
michael
@michael
04/09/18 01:19:25AM
7,823 posts

profile custom feilds quota issues (opposite expected behavior)


Using Jamroom

cant see all the info, but that looks like a USER form field not a profile form field.
michael
@michael
04/08/18 09:37:47PM
7,823 posts

How to reply to comments in a comments list


Using Jamroom

The reason is that when you make a list of comments, there is not going to be a comment form there unless you put one there.

The REPLY button is expecting you to have put a comment reply form in there somewhere so the user can reply.
  <a id="cform"></a>
is what the javascript on the REPLY button is searching for. You can see the rest of the form in the jrComment/template/comment_form.tpl template.

If you're wanting to remove the reply button, i'd suggest CSS. If you're wanting to add the comment form too, it might be doable with a TEMPLATE CODE widget and site builder.
  135