Page 4 of 5

Re: Forum Made Simple 0.7

Posted: Sun Oct 14, 2007 4:51 pm
by gdfreezer
Hmm,

i'll wait for 0.9 because i don't want to allow guests to post stuff.

Re: Forum Made Simple 0.7

Posted: Sun Oct 14, 2007 7:52 pm
by alby
pepawo wrote: I have translated your 0.9 version to Czech lng.
www.rudice.info/soubory/cs_CZ.txt
I have 404 not found

Alby

Re: Forum Made Simple 0.7

Posted: Sun Oct 14, 2007 7:56 pm
by alby
gdfreezer wrote: i'll wait for 0.9 because i don't want to allow guests to post stuff.
Uncheck in Admin "Allow guest posting" for a private forum.
For allow guests read and write check "Allow guest posting"



Here, there is a 0.9.0 RC


Alby

Re: Forum Made Simple 0.7

Posted: Sun Oct 14, 2007 8:34 pm
by gdfreezer
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.

Re: Forum Made Simple 0.7

Posted: Sun Oct 14, 2007 8:53 pm
by alby
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.
Ok, I misunderstood this. Look my Reply #42 of Reply #40 of pepawo.
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

Re: Forum Made Simple 0.7

Posted: Mon Oct 15, 2007 12:00 pm
by pepawo
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

Re: Forum Made Simple 0.7

Posted: Tue Oct 16, 2007 3:58 pm
by Knuzen
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

Posted: Tue Oct 16, 2007 4:22 pm
by alby
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. ???
alby wrote: In this moment FMS roadmap is:
..............
0.9.3 is in roadmap not released; today I have released 0.9.0.

Alby

Re: Forum Made Simple 0.7

Posted: Fri Dec 07, 2007 7:15 pm
by Jack @ PharSide
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

Re: Forum Made Simple 0.7

Posted: Fri Dec 07, 2007 8:00 pm
by alby
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.
If you put {cms_module module="Forum" ....} in a public template, you should read everything but not posting (with "Allow guest posting" disabled)
Check this and report if not


Alby

Re: Forum Made Simple 0.7

Posted: Sat Dec 08, 2007 5:01 pm
by Jack @ PharSide
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

Re: Forum Made Simple 0.7

Posted: Sat Dec 08, 2007 6:13 pm
by alby
Jack @ PharSide wrote: Thanks for the reply. I removed security and it is still happening. Any ideas? Has anyone else seen this?
Very strange, are you sure that security is disabled?

Comment calling module: {* cms_module module="Forum" .... *}
and view if you display anything in public mode

Alby

Re: Forum Made Simple 0.7

Posted: Sat Dec 08, 2007 7:17 pm
by Jack @ PharSide
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

Re: Forum Made Simple 0.7

Posted: Mon Jun 02, 2008 6:08 pm
by urbanroute
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();
}

Re: Forum Made Simple 0.7

Posted: Mon Jun 02, 2008 9:41 pm
by alby
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.
View 0.9.1 version.
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