<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "JForum permissions manual"]]></title>
		<link>http://www.andowson.com/posts/list/7.page</link>
		<description><![CDATA[Latest messages posted in the topic "JForum permissions manual"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>JForum permissions manual</title>
				<description><![CDATA[ 餵。對不起，我的中文不好，我用谷歌翻譯將文本轉換從英語譯成漢語。我已經實現JForums為我們的網站，但它看起來像原來jforums社會有點兒死亡。 <br /> <br /> 我真正想做的是手動授予權限的組而不是通過管理控制面板。我創建了200個團體在jforum_groups表。請您告訴我的表，我需要手動插入的權限的組？。美國廣播公司等集團不是管理員，也只能看到某某類，具有只讀權限的瑞士EFG論壇等<br /> <br /> 希望你有我的觀點。感謝您的支持<br /> ]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/642.page</guid>
				<link>http://www.andowson.com/posts/preList/347/642.page</link>
				<pubDate><![CDATA[Thu, 10 Sep 2009 14:55:02]]> GMT</pubDate>
				<author><![CDATA[ acer123]]></author>
			</item>
			<item>
				<title>回覆:JForum permissions manual</title>
				<description><![CDATA[ Dear acer123,<br />        It's OK for you to ask question in English. The translated Chinese by Google translation is not very clear for me to understand. So, can you repeat your question again?<br /> <br /> Andowson]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/643.page</guid>
				<link>http://www.andowson.com/posts/preList/347/643.page</link>
				<pubDate><![CDATA[Thu, 10 Sep 2009 17:20:53]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>回覆:JForum permissions manual</title>
				<description><![CDATA[ Thank you for your reply. i have close to 50 groups created under jforum_groups table with user id assigned to those groups manually in jforums_user_groups table. Now instead of giving setting each of those groups permissions through Admin control panel i would like to give them permissions through the table meaning by inserting queries manually for assigning categories to those groups, is administrator, read only forums etc.I need to know some insight on the tables or may be a data dictionary would be great. Thanks.]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/644.page</guid>
				<link>http://www.andowson.com/posts/preList/347/644.page</link>
				<pubDate><![CDATA[Thu, 10 Sep 2009 20:48:14]]> GMT</pubDate>
				<author><![CDATA[ acer123]]></author>
			</item>
			<item>
				<title>回覆:JForum permissions manual</title>
				<description><![CDATA[ You can refer to the data_dump.sql script inside the WEB-INF/config/database directory.<br /> Take postgresql as an example:<br /> Replace the ? mark with the group_id you created and remove some unnecessary permission from the SQL script.<br /> [code=sql]<br /> --  Admin<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_administration');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_post_remove');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_post_edit');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_topic_move');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_topic_lockUnlock');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_approve_messages');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_create_sticky_announcement_topics');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_vote');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_create_poll');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_karma_enabled');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_bookmarks_enabled');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_attachments_download');<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_moderation_log'); -- novo<br /> INSERT INTO jforum_roles (group_id, name) VALUES (?, 'perm_full_moderation_log'); -- novo<br /> <br /> --<br /> -- View Forum<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_forum', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> --<br /> -- Anonymous posts<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_anonymous_post', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> --<br /> -- View Category<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_category', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> --<br /> -- Create / Reply to topics<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_read_only_forums', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> -- <br /> -- Enable HTML<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_html_disabled', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> --<br /> -- Attachments<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_attachments_enabled', ?);<br /> INSERT INTO jforum_role_values (role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> <br /> --<br /> -- Reply only<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_reply_only', ?);<br /> INSERT INTO jforum_role_values ( role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1');<br /> 	<br /> --<br /> -- Reply without moderation<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_reply_without_moderation', ?); -- novo<br /> INSERT INTO jforum_role_values ( role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1'); <br /> 	<br /> --<br /> -- Moderation of forums<br /> --<br /> INSERT INTO jforum_roles (name, group_id) VALUES ('perm_moderation_forums', ?); <br /> INSERT INTO jforum_role_values ( role_id, role_value) VALUES ((SELECT CURRVAL('jforum_roles_seq')), '1'); <br /> [/code]<br /> <br /> And see http://code.google.com/p/jforum2/wiki/Permissions for the detail descripton of each permission<br /> <br /> After manually insertion to the database, you need to reload the JForum application to take effect.]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/645.page</guid>
				<link>http://www.andowson.com/posts/preList/347/645.page</link>
				<pubDate><![CDATA[Fri, 11 Sep 2009 13:54:14]]> GMT</pubDate>
				<author><![CDATA[ andowson]]></author>
			</item>
			<item>
				<title>回覆:JForum permissions manual</title>
				<description><![CDATA[ Thank you so much for your prompt reply. This is very helpful. ]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/646.page</guid>
				<link>http://www.andowson.com/posts/preList/347/646.page</link>
				<pubDate><![CDATA[Fri, 11 Sep 2009 21:14:23]]> GMT</pubDate>
				<author><![CDATA[ acer123]]></author>
			</item>
			<item>
				<title>回覆:JForum permissions manual</title>
				<description><![CDATA[ Just wanted to let you know mate that in the SSO example you posted it works fine however if a person close the browser and go to the list.page in the forums directly by pasting the link in the browser he can still enter the site because he is an anonymous user. You might wanna send a redirect to xyz.page where it creates the anonymous user in the SSO method. <br /> <br /> Just wanted to share with you guys. Hope it helps other people. ]]></description>
				<guid isPermaLink="true">http://www.andowson.com/posts/preList/347/647.page</guid>
				<link>http://www.andowson.com/posts/preList/347/647.page</link>
				<pubDate><![CDATA[Tue, 15 Sep 2009 13:10:58]]> GMT</pubDate>
				<author><![CDATA[ acer123]]></author>
			</item>
	</channel>
</rss>
