Personal Conversation Doubt

Divvens

Well-known member
Under "Personal Conversation Moderator Permission"

There is a permission "Always invite participants to conversations"

I was wondering what does that mean?
 
Under "Personal Conversation Moderator Permission"

There is a permission "Always invite participants to conversations"

I was wondering what does that mean?
it means 'does this person have the ability to invite new people into a pre-existing conversation, despite it being forbidden by conversation starter?'
 
I had another doubt, I thought it'd be better to post here instead of starting a new thread.

On my forums (which isn't yet publicly open) I just noticed this today, if I go to http://www.myforumlink.com <- i'm not logged in. While when I go to http://myforumlink.com I am logged in.

I'm guessing its something to do with the cookies, but the same isn't with xenforo, with the www and without www I am logged in. Is this something I need to configure?
 
So I just edit it this way:

Code:
<IfModule mod_rewrite.c>
        RewriteEngine On

        RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
        RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]

        RewriteCond %{REQUEST_FILENAME} -f [OR]
        RewriteCond %{REQUEST_FILENAME} -l [OR]
        RewriteCond %{REQUEST_FILENAME} -d
        RewriteRule ^.*$ - [NC,L]
        RewriteRule ^(data|js|styles|install) - [NC,L]
        RewriteRule ^.*$ index.php [NC,L]
</IfModule>

I selected to not used the www, the above mentioned code should be right?
 
All servers are different.

This is what I use on mine:
Code:
RewriteCond %{HTTP_HOST} www.cliptheapex.com$
RewriteRule ^(.*)$ http://cliptheapex.com/$1 [R=301,L]

You may need to try a few different ones until you find one that works.
 
Top Bottom