Forum Made Simple 0.7
Re: Forum Made Simple 0.7
Hmm,
i'll wait for 0.9 because i don't want to allow guests to post stuff.
i'll wait for 0.9 because i don't want to allow guests to post stuff.
Re: Forum Made Simple 0.7
I have 404 not foundpepawo wrote: I have translated your 0.9 version to Czech lng.
www.rudice.info/soubory/cs_CZ.txt
Alby
Re: Forum Made Simple 0.7
Uncheck in Admin "Allow guest posting" for a private forum.gdfreezer wrote: i'll wait for 0.9 because i don't want to allow guests to post stuff.
For allow guests read and write check "Allow guest posting"
Here, there is a 0.9.0 RC
Alby
Last edited by alby on Sun Oct 14, 2007 8:28 pm, edited 1 time in total.
Re: Forum Made Simple 0.7
alby wrote: Uncheck in Admin "Allow guest posting" for a private forum.
For allow guests read and write check "Allow guest posting"


bye
gd
ps: i m writing on german translation.
Re: Forum Made Simple 0.7
Ok, I misunderstood this. Look my Reply #42 of Reply #40 of pepawo.gdfreezer wrote:alby wrote: Uncheck in Admin "Allow guest posting" for a private forum.
For allow guests read and write check "Allow guest posting"but if i uncheck, guests can't read the forum
i hope 0.9 will solve this problem.
bye
gd
ps: i m writing on german translation.
In this moment FMS roadmap is:
0.9.1:
- move all parameter from global to "per forum"; in this way you can set all parameters and it's simple add new params and permission
- install forum stylesheet
0.9.2:
- update permission of guests: can read forums only (ONLY OR NOT?) can read and write posts & topics
- edit of first post for edit topic name
0.9.3:
- In admin panel you can ban members
PS: Thank you for translation, there is a link problem with Translation Center
Alby
Last edited by alby on Tue Oct 16, 2007 4:13 pm, edited 1 time in total.
Re: Forum Made Simple 0.7
Hi Alby,
sorry, just I changed my test web to production one. The new and right address is http://www.rudice.cz/soubory/cs_CZ.txt. The forum vers. 0.9 is on this site, too...
Josef
sorry, just I changed my test web to production one. The new and right address is http://www.rudice.cz/soubory/cs_CZ.txt. The forum vers. 0.9 is on this site, too...
Josef
Re: Forum Made Simple 0.7
Where can I download the last or newest version 0.9.3, because at CMSms Forge there is only the version 0.8 (4.10.2007) for download ? The internal links in this forum are making me confused, because there is never a real zip-file with the content to install the newest Forum Made Simple. 

Re: Forum Made Simple 0.7
knuzen wrote: Where can I download the last or newest version 0.9.3, because at CMSms Forge there is only the version 0.8 (4.10.2007) for download ? The internal links in this forum are making me confused, because there is never a real zip-file with the content to install the newest Forum Made Simple.![]()
0.9.3 is in roadmap not released; today I have released 0.9.0.alby wrote: In this moment FMS roadmap is:
..............
Alby
Re: Forum Made Simple 0.7
Hey Alby,
I am having a problem and I was hoping you can tell me how to fix. The Forum options allow you to set "Allow guest posting" but what it really does is both (limits posting and reading). How can I change it so visitors can read the forum but must login to reply to threads.
Current Versions for this instance: CMSMS v2.2, FEU v1.3.1, Fourm v0.9
Any ideas?
Thanks,
-Jack
I am having a problem and I was hoping you can tell me how to fix. The Forum options allow you to set "Allow guest posting" but what it really does is both (limits posting and reading). How can I change it so visitors can read the forum but must login to reply to threads.
Current Versions for this instance: CMSMS v2.2, FEU v1.3.1, Fourm v0.9
Any ideas?
Thanks,
-Jack
Re: Forum Made Simple 0.7
If you put {cms_module module="Forum" ....} in a public template, you should read everything but not posting (with "Allow guest posting" disabled)Jack @ PharSide wrote: I am having a problem and I was hoping you can tell me how to fix. The Forum options allow you to set "Allow guest posting" but what it really does is both (limits posting and reading). How can I change it so visitors can read the forum but must login to reply to threads.
Check this and report if not
Alby
Re: Forum Made Simple 0.7
Hey Alby,
Thanks for the reply. I removed security and it is still happening. Any ideas? Has anyone else seen this?
Thanks again,
-Jack
Here is the url: http://www.insightcced.org/index.php?page=inbizforum
Thanks for the reply. I removed security and it is still happening. Any ideas? Has anyone else seen this?
Thanks again,
-Jack
Here is the url: http://www.insightcced.org/index.php?page=inbizforum
Re: Forum Made Simple 0.7
Very strange, are you sure that security is disabled?Jack @ PharSide wrote: Thanks for the reply. I removed security and it is still happening. Any ideas? Has anyone else seen this?
Comment calling module: {* cms_module module="Forum" .... *}
and view if you display anything in public mode
Alby
Re: Forum Made Simple 0.7
Hmm, lets see, I replaced the template with a 100% clean template. If you look at the source of the page, you will see how simple it is.
Here is the new page with new template:
http://www.insightcced.org/index.php?page=inbizforum
The template has NO code in it other than required html headers and what not. But nothing specific to the CMS other than the module tag.
Hope this helps,
-Jack
Here is the new page with new template:
http://www.insightcced.org/index.php?page=inbizforum
The template has NO code in it other than required html headers and what not. But nothing specific to the CMS other than the module tag.
Hope this helps,
-Jack
Re: Forum Made Simple 0.7
I was playing with the same option "Allow Guest Posting" and it's deceiving because it turns the whole forum private but what you actually want it read only.
Here's how I did it for now, until I can add captcha to the post and reply functions.
Open / Edit modules/Forum/Forum.module.php
Edit line: 124 (Approx) and add the highlighted red text. That tells the forum to allow public access to the default action, read forum. After a quick test it seemed to work fine.
PS. If someone knows how to add captcha to the reply and post pages please let me know.
~Ry
function CheckForumPermission( $action, $check='' )
{
if( ($action == 'edit_post') || ($action == 'delete_post') )
{
if( $this->IsModerator() || $this->IsPoster($check) ) return true;
else return false;
}
if($action == 'edit_topic') return $this->IsModerator();
echo "Action: ". $action ."";
if ($action == 'default'){
return true;
}
return !$this->IsGuest();
}
Here's how I did it for now, until I can add captcha to the post and reply functions.
Open / Edit modules/Forum/Forum.module.php
Edit line: 124 (Approx) and add the highlighted red text. That tells the forum to allow public access to the default action, read forum. After a quick test it seemed to work fine.
PS. If someone knows how to add captcha to the reply and post pages please let me know.
~Ry
function CheckForumPermission( $action, $check='' )
{
if( ($action == 'edit_post') || ($action == 'delete_post') )
{
if( $this->IsModerator() || $this->IsPoster($check) ) return true;
else return false;
}
if($action == 'edit_topic') return $this->IsModerator();
echo "Action: ". $action ."";
if ($action == 'default'){
return true;
}
return !$this->IsGuest();
}
Last edited by urbanroute on Mon Jun 02, 2008 6:15 pm, edited 1 time in total.
Re: Forum Made Simple 0.7
View 0.9.1 version.urbanroute wrote: I was playing with the same option "Allow Guest Posting" and it's deceiving because it turns the whole forum private but what you actually want it read only.
In this version you have option for guest view only (read-only) or guest view/write, setting per forum.
Please test and report for bugs before come out next version
Alby
Last edited by alby on Mon Jun 02, 2008 9:45 pm, edited 1 time in total.