<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Question2Answer Q&amp;A - Recent questions tagged permission</title>
<link>https://www.question2answer.org/qa/tag/permission</link>
<description>Powered by Question2Answer</description>
<item>
<title>Only allow Editor or higher to close question</title>
<link>https://www.question2answer.org/qa/65335/only-allow-editor-or-higher-to-close-question</link>
<description>

&lt;p&gt;Based on the solution of q2apro at &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.question2answer.org/qa/16361/close-questions-only-by-admin&quot;&gt;this post&lt;/a&gt;:&amp;nbsp;&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:rgb(0, 0, 255)&quot;&gt;&lt;strong&gt;$rules['closeable'] = (qa_get_logged_in_level()&amp;gt;=QA_USER_LEVEL_ADMIN) &amp;amp;&amp;amp; (!$rules['closed']);&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;But I don't know why I can't limit permission to close question from EDITOR&amp;nbsp;and higher by using this:&lt;/p&gt;

&lt;p&gt;&lt;span style=&quot;color:rgb(0, 0, 255)&quot;&gt;&lt;strong&gt;$rules['closeable'] = (qa_get_logged_in_level()&amp;gt;=QA_USER_LEVEL_EDITOR) &amp;amp;&amp;amp; (!$rules['closed']);&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/65335/only-allow-editor-or-higher-to-close-question</guid>
<pubDate>Tue, 17 Jul 2018 03:48:40 +0000</pubDate>
</item>
<item>
<title>Prevent Q2A users of editing questions after admin approval</title>
<link>https://www.question2answer.org/qa/56188/prevent-q2a-users-of-editing-questions-after-admin-approval</link>
<description>Hi there,&lt;br /&gt;
&lt;br /&gt;
How I can disable users of editing their question after admin approval? Is there any permission or plugins?&lt;br /&gt;
&lt;br /&gt;
Some users ask their questions and once they get answers they edit the question and say &amp;quot;Remove this question&amp;quot;!&lt;br /&gt;
&lt;br /&gt;
Thanks</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/56188/prevent-q2a-users-of-editing-questions-after-admin-approval</guid>
<pubDate>Fri, 10 Feb 2017 10:25:40 +0000</pubDate>
</item>
<item>
<title>How can set permission only register user can download file attachment ?</title>
<link>https://www.question2answer.org/qa/48683/how-permission-only-register-user-download-file-attachment</link>
<description>Hi friends ,&lt;br /&gt;
&lt;br /&gt;
My website users downloading all data from site&lt;br /&gt;
&lt;br /&gt;
&amp;quot; deducting my bandwidth&amp;quot; &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
How can set only register user can download file attachment</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/48683/how-permission-only-register-user-download-file-attachment</guid>
<pubDate>Fri, 30 Oct 2015 12:46:33 +0000</pubDate>
</item>
<item>
<title>Sidebar: custom HTML module for registered user only</title>
<link>https://www.question2answer.org/qa/44082/sidebar-custom-html-module-for-registered-user-only</link>
<description>How to show the sidebar custom HTML module ONLY for registered user only (or editor / moderator)?&lt;br /&gt;
&lt;br /&gt;
Thank you!</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/44082/sidebar-custom-html-module-for-registered-user-only</guid>
<pubDate>Tue, 03 Mar 2015 10:15:57 +0000</pubDate>
</item>
<item>
<title>Make the site for registered users only</title>
<link>https://www.question2answer.org/qa/42244/make-the-site-for-registered-users-only</link>
<description>I want the Q&amp;amp;A website visible only for registered users.&lt;br /&gt;
&lt;br /&gt;
Thus, don't show the list of questions to the public, and not SEO or so.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/42244/make-the-site-for-registered-users-only</guid>
<pubDate>Mon, 15 Dec 2014 08:06:14 +0000</pubDate>
</item>
<item>
<title>Allowing only one specific user to edit answers and comments</title>
<link>https://www.question2answer.org/qa/40890/allowing-only-one-specific-user-to-edit-answers-and-comments</link>
<description>

&lt;p&gt;
	Hi everyone, I have a special case where only one specific user should (next to the admin) get the right to edit all answers and posts. But he should not get admin rights.&lt;/p&gt;


&lt;p&gt;
	I have already used all available rangs from Editor, Moderator, etc. He should stay moderator together with some other users.&lt;/p&gt;


&lt;p&gt;
	The way I have to go now is to change the core to permit his userid to edit A and C.&lt;/p&gt;


&lt;p&gt;
	How I am doing it:&lt;/p&gt;


&lt;p&gt;
	&lt;strong&gt;qa-app-users.php&lt;/strong&gt;&lt;/p&gt;


&lt;p&gt;
	After line:&lt;/p&gt;


&lt;p&gt;
	$error=qa_permit_error($permitoption, $userid, qa_get_logged_in_level(), $flags);&lt;/p&gt;


&lt;p&gt;
	I added:&lt;/p&gt;


&lt;p&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if($userid==123 &amp;amp;&amp;amp; $error == 'level') {
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;return false;
&lt;br&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;}
&lt;br&gt;
	&amp;nbsp;&lt;/p&gt;


&lt;p&gt;
	because a level error would be thrown otherwise.&lt;/p&gt;


&lt;p&gt;
	Any other idea how to solve this?&lt;/p&gt;


&lt;p&gt;
	Thanks,
&lt;br&gt;
	Kai&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/40890/allowing-only-one-specific-user-to-edit-answers-and-comments</guid>
<pubDate>Sat, 08 Nov 2014 06:19:15 +0000</pubDate>
</item>
<item>
<title>Improving the Permissions page in admin panel</title>
<link>https://www.question2answer.org/qa/40858/improving-the-permissions-page-in-admin-panel</link>
<description>

&lt;p&gt;
	With version 1.6.3 it is hard to see who can do what:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=17962850962817359809&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	
&lt;br&gt;
	I suggest a &lt;strong&gt;slider system &lt;/strong&gt;(and/or checkboxes), for instance:&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=17028211669525642757&quot;&gt;&lt;/p&gt;


&lt;p&gt;
	That would make an overview much easier.&lt;/p&gt;


&lt;p&gt;
	Or we use checkboxes, if there is a need to distinguish more levels.&lt;/p&gt;


&lt;p&gt;
	What do you think?&lt;/p&gt;</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/40858/improving-the-permissions-page-in-admin-panel</guid>
<pubDate>Fri, 07 Nov 2014 09:00:22 +0000</pubDate>
</item>
<item>
<title>Is there a plugin to restrict attachment download to the register users only?</title>
<link>https://www.question2answer.org/qa/38077/there-plugin-restrict-attachment-download-register-users</link>
<description>I would like to develope it myself. Can someone provide me direction?</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/38077/there-plugin-restrict-attachment-download-register-users</guid>
<pubDate>Sat, 06 Sep 2014 12:11:21 +0000</pubDate>
</item>
<item>
<title>Download attachment permissions only to registered users</title>
<link>https://www.question2answer.org/qa/36787/download-attachment-permissions-only-to-registered-users</link>
<description>Is there a way to allow only those users to donwload attachments who have registered.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
TIA</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/36787/download-attachment-permissions-only-to-registered-users</guid>
<pubDate>Wed, 06 Aug 2014 01:08:29 +0000</pubDate>
</item>
<item>
<title>How to make unavailable &quot;chat room&quot; for registered members?</title>
<link>https://www.question2answer.org/qa/32354/how-to-make-unavailable-chat-room-for-registered-members</link>
<description>

&lt;p&gt;
	&lt;span style=&quot;font-size:14px;&quot;&gt;I installed chat room plugin for my site and make the link visible for only Experts, Editors, Moderators and Admins. It is working and link tab only visible for Experts, Editors, Moderators and Admins. It is not visible for registered users but registered users can enter chat room using the link “&lt;a href=&quot;http://www.mysite.net/chat&quot;&quot; rel=&quot;nofollow&quot;&gt;http://www.mysite.net/chat&quot;&lt;/a&gt;. Please tell me how to prevent this?&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size:14px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=2280173683521907749&quot; style=&quot;width: 600px; height: 133px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;font-size:14px;&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=13363824174665939102&quot; style=&quot;width: 600px; height: 264px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;After followed instruction given by Kai&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;


&lt;p&gt;
	&lt;img alt=&quot;&quot; src=&quot;http://www.question2answer.org/qa/?qa=blob&amp;amp;qa_blobid=11948361486115518453&quot; style=&quot;width: 431px; height: 369px;&quot;&gt;&lt;/p&gt;</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/32354/how-to-make-unavailable-chat-room-for-registered-members</guid>
<pubDate>Wed, 26 Feb 2014 14:15:50 +0000</pubDate>
</item>
<item>
<title>Is there away to make question in some categories answerable by every registered members and others by Experts Only?</title>
<link>https://www.question2answer.org/qa/27394/question-categories-answerable-registered-members-experts</link>
<description>Hello,&lt;br /&gt;
&lt;br /&gt;
Is there away to make question in some categories answerable by all registered members and others by Experts Only? because some times there are general questions of which any member might have an answer to it and yet they do not have the permission to answer them.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
Thank you&lt;br /&gt;
&lt;br /&gt;
Ronnie</description>
<category>Plugins</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/27394/question-categories-answerable-registered-members-experts</guid>
<pubDate>Sun, 08 Sep 2013 06:04:47 +0000</pubDate>
</item>
<item>
<title>Keep having to approve edited posts.</title>
<link>https://www.question2answer.org/qa/26174/keep-having-to-approve-edited-posts</link>
<description>When a user edits a post I often have to approve it. Can I disable this or only enable it for users with less than X points?</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/26174/keep-having-to-approve-edited-posts</guid>
<pubDate>Sun, 28 Jul 2013 05:19:27 +0000</pubDate>
</item>
<item>
<title>Attachment download should be only for registered users</title>
<link>https://www.question2answer.org/qa/25986/attachment-download-should-be-only-for-registered-users</link>
<description>Hi,&lt;br /&gt;
&lt;br /&gt;
Can any one tell me how I can make visitors to download files/attachments only after they are registered.&lt;br /&gt;
&lt;br /&gt;
Thanking you in advance for your help,&lt;br /&gt;
&lt;br /&gt;
Suresh</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/25986/attachment-download-should-be-only-for-registered-users</guid>
<pubDate>Tue, 23 Jul 2013 04:25:50 +0000</pubDate>
</item>
<item>
<title>Is QA_USER_LEVEL_APPROVED required?</title>
<link>https://www.question2answer.org/qa/24386/is-qa_user_level_approved-required</link>
<description>I think that user's recognition condition is unrelated to user's level. Since we can judge user's approval state by QA_USER_FLAGS_MUST_APPROVE of qa_users.flags, I can't understand the reason of QA_USER_LEVEL_APPROVED needs. It is hard to make program using the relation of user level and permission because user level has QA_USER_LEVEL_APPROVED. &lt;br /&gt;
&lt;br /&gt;
Excuse me, please let me know developer's opinion.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/24386/is-qa_user_level_approved-required</guid>
<pubDate>Thu, 06 Jun 2013 21:34:25 +0000</pubDate>
</item>
<item>
<title>Big problem with deploy a web application in subdomain.</title>
<link>https://www.question2answer.org/qa/21408/big-problem-with-deploy-a-web-application-in-subdomain</link>
<description>I have deployed an instance of Q2A on my host (root of my host) now i want to install a web analytic php web application in a folder called &amp;quot;stat&amp;quot; (in the root of my host as a sub domain) but Q2A does not allow ro access &amp;quot;stat&amp;quot; folder how can i config &amp;quot;.htaccess&amp;quot; file to allow map stat.mydomain.com to &amp;quot;stat&amp;quot; folder.&lt;br /&gt;
&lt;br /&gt;
I wish i can describe my problem presicely. please help me as soon as possible.&lt;br /&gt;
&lt;br /&gt;
Thanks in advance.</description>
<category>Q2A Core</category>
<guid isPermaLink="true">https://www.question2answer.org/qa/21408/big-problem-with-deploy-a-web-application-in-subdomain</guid>
<pubDate>Tue, 12 Feb 2013 16:00:44 +0000</pubDate>
</item>
</channel>
</rss>