Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Flood Protection Blocks New Thread Creation (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: Flood Protection Blocks New Thread Creation
#6023
Flood Protection Blocks New Thread Creation 1 Year, 5 Months ago  
I set Fireboard flood protection to 3 seconds.
It blocked every attempt to create a new thread.
(It might block every post, but I did not try.)

When I removed the number 3 and left flood protection blank, I could create a new thread and post without problems.

Running:
Joomla 1.0.12
PHP 5.2
Fireboard Forum

Now this is sounding like a bug report so I will try to submit it there.
pintobuck (User)
Junior Boarder
Posts: 30
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#11627
Re:Flood Protection Blocks New Thread Creation 1 Year, 4 Months ago  
I have the same issue, but with 1.0.1

If a user replys to a post, then trys to post again they get the flood protection message.

Help appreciated !
rawkey (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
Last Edit: 2007/06/13 16:40 By rawkey. Reason: added additional info.
 
The administrator has disabled public write access.  
#12114
Re:Flood Protection Blocks New Thread Creation 1 Year, 3 Months ago  
Same here on 1.0.1. Have been experimenting with different flood protection settings but anything other than 0 will block users after the first post they make.

www.starVmax.com
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1170
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#13796
Re:Flood Protection Blocks New Thread Creation 1 Year, 3 Months ago  
Has anyone solved this yet? I have the same problem. I have to set the flood to 0 or 0.5 to get it to work. That seems a bit dangerous to me.

Please help, FB is the core of my site.

Nick
nick51 (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#13797
Re:Flood Protection Blocks New Thread Creation 1 Year, 3 Months ago  
Nope - Still not working.
fxstein (Moderator)
FB Core Team
starVmax
Moderator
Posts: 1170
graphgraph
User Offline Click here to see the profile of this user
Gender: Male fxstein starVmax Location: Silicon Valley, USA
Logged Logged
 
 
The administrator has disabled public write access.  
#14558
Re:Flood Protection Blocks New Thread Creation 1 Year, 3 Months ago  
I am having the exact same issue.
thejarnold (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Dallas Birthdate: 1976-06-27
Logged Logged
 
The administrator has disabled public write access.  
#17348
Re:Flood Protection Blocks New Thread Creation 1 Year, 2 Months ago  
The following is my solution:

After:

[code:1]
if ($fbConfig['floodprotection'] != 0)
{
$database->setQuery("select max(time) from #__fb_messages where ip='$ip'"«»);
$lastPostTime = $database->loadResult();
}
[/code:1]

Add and repace:

[code:1]
$usertime = $systime+($fbConfig['board_ofset'] * 3600);
if ( $fbConfig['floodprotection'] != 0 && ($lastPostTime + $fbConfig['floodprotection']) > $usertime && $do != "edit" && !$is_admin)
{
echo _POST_TOPIC_FLOOD1;
echo $fbConfig['floodprotection'] . " " . _POST_TOPIC_FLOOD2 . "";
echo _POST_TOPIC_FLOOD3;
return;
}

if (($fbConfig['floodprotection'] != 0 && ((($lastPostTime + $fbConfig['floodprotection']) id)
{
$database->setQuery("SELECT name, username, email FROM #__users WHERE id=$my->id"«»);
$userquery = $database->loadObjectList();

if ($database->query())
{
foreach ($userquery as $user)
{
$my_name = $fbConfig['username'] ? $user->username : $user->name;
$my_email = $user->email;
$registeredUser = 1;
}
}
else
{
echo _POST_ERROR . "";
echo _POST_EXIT;
return;
}
}
}
/* comment the following code
else
{
echo _POST_TOPIC_FLOOD1;
echo $fbConfig['floodprotection'] . " " . _POST_TOPIC_FLOOD2 . "";
echo _POST_TOPIC_FLOOD3;
return;
}*/
[/code:1]
charles20hk (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#17830
Re:Flood Protection Blocks New Thread Creation 1 Year, 2 Months ago  
what file does that go into? And do you mean we replace the first line of code with the second? Or do we put the second block of code after the first?

thanks!
Bridger (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#28697
Re:Flood Protection Blocks New Thread Creation 11 Months, 3 Weeks ago  
The flood protection code is found in post.php

However, this fix doesn't work for me, using the latest Joomla 1.0.13 and Fireboard 1.0.3

Is anyone else experiencing the same difficulties using flood protection? This is an important element of the board for me, and I imagine many other users.
TWD (User)
Fresh Boarder
Posts: 12
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#28709
Re:Flood Protection Blocks New Thread Creation 11 Months, 3 Weeks ago  
I'm dealing with the same issue here, also with the newest versions.
My guets and registered users get the following message all the time when creating a new thread;
"The administrator of this forum has enabled Flood Protection and has decided that you must wait 3 seconds before you can make another post.
Please click your browser’s back button to get back to the forum."

Flood Protection at 0 doesnt sound very safe

I hope the BoJ-crew can help us out


Greetz Rody
TFDutchman (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/10/23 16:06 By TFDutchman.
 
The administrator has disabled public write access.  
Go to top