Forum Made Simple 0.7

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
User avatar
gdfreezer
Forum Members
Forum Members
Posts: 14
Joined: Tue Sep 18, 2007 4:39 pm

Re: Forum Made Simple 0.7

Post by gdfreezer »

Hmm,

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

Re: Forum Made Simple 0.7

Post 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
alby

Re: Forum Made Simple 0.7

Post 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
Last edited by alby on Sun Oct 14, 2007 8:28 pm, edited 1 time in total.
User avatar
gdfreezer
Forum Members
Forum Members
Posts: 14
Joined: Tue Sep 18, 2007 4:39 pm

Re: Forum Made Simple 0.7

Post 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.
alby

Re: Forum Made Simple 0.7

Post 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
Last edited by alby on Tue Oct 16, 2007 4:13 pm, edited 1 time in total.
pepawo
Forum Members
Forum Members
Posts: 17
Joined: Tue Oct 09, 2007 11:04 am

Re: Forum Made Simple 0.7

Post 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
Knuzen

Re: Forum Made Simple 0.7

Post 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. ???
alby

Re: Forum Made Simple 0.7

Post 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
Jack @ PharSide

Re: Forum Made Simple 0.7

Post 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
alby

Re: Forum Made Simple 0.7

Post 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
Jack @ PharSide

Re: Forum Made Simple 0.7

Post 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
alby

Re: Forum Made Simple 0.7

Post 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
Jack @ PharSide

Re: Forum Made Simple 0.7

Post 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
urbanroute

Re: Forum Made Simple 0.7

Post 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();
}
Last edited by urbanroute on Mon Jun 02, 2008 6:15 pm, edited 1 time in total.
alby

Re: Forum Made Simple 0.7

Post 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
Last edited by alby on Mon Jun 02, 2008 9:45 pm, edited 1 time in total.
Locked

Return to “Modules/Add-Ons”