Bitcoin Forum

Other => Meta => Topic started by: Sarthak on January 01, 2015, 06:39:05 PM



Title: I Cannot Post Reply On Posts!
Post by: Sarthak on January 01, 2015, 06:39:05 PM
Hello Guys,
 I am a new member of the BitcoinTalk Community! Whenever I post a comment on any post, An error Message is displayed which says I had already made a post within the last 360 seconds and I have to Wait..
BUT I had made no posts in the last 360 seconds!
Help Much Appreciated!
Thanks! ;D


Title: Re: I Cannot Post Reply On Posts!
Post by: Quickseller on January 01, 2015, 06:51:03 PM
You need to wait 360 seconds to post after you have logged in, sent a PM or posted (I think leaving trust counts for this as well).


Title: Re: I Cannot Post Reply On Posts!
Post by: MultipliedCombo on January 02, 2015, 09:09:43 AM
This occurs for new members of the forum to combat spam posts.

As you continue to post and your member rank increases, the restrictions will be lessened.


Title: Re: I Cannot Post Reply On Posts!
Post by: Minnlo on January 02, 2015, 09:13:52 AM
You need to wait 360 seconds to post after you have logged in, sent a PM or posted (I think leaving trust counts for this as well).

Not sure about trust feedback, but searching the forum is counted as well, and so you could use google search instead.



Title: Re: I Cannot Post Reply On Posts!
Post by: Grand_Voyageur on January 02, 2015, 10:03:23 AM
Hello Guys,
 I am a new member of the BitcoinTalk Community! Whenever I post a comment on any post, An error Message is displayed which says I had already made a post within the last 360 seconds and I have to Wait..
BUT I had made no posts in the last 360 seconds!
Help Much Appreciated!
Thanks! ;D

Just give a look to OP (https://bitcointalk.org/index.php?topic=178608.msg1861412#msg1861412) in this thread ====>>>>  https://bitcointalk.org/index.php?topic=178608.0 (https://bitcointalk.org/index.php?topic=178608.0)

Time limit to new post is linked to User Rank to prevent spamming (https://bitcointalk.org/index.php?topic=237597.0). Once your rank go upward you'll be able to wait less before posting again.
 ;)


Title: Re: I Cannot Post Reply On Posts!
Post by: anneke on January 02, 2015, 10:14:15 AM
I had the same problem.

I'd always had to wait 360 seconds before i could post.
But now i understand why.
Thanks for the explanation.


Title: Re: I Cannot Post Reply On Posts!
Post by: redHairy on January 02, 2015, 03:29:25 PM
Hello Guys,
 I am a new member of the BitcoinTalk Community! Whenever I post a comment on any post, An error Message is displayed which says I had already made a post within the last 360 seconds and I have to Wait..
BUT I had made no posts in the last 360 seconds!
Help Much Appreciated!
Thanks! ;D

simply chec this formula:

Code:
waittime = 360;
if(activity >= 15)
        waittime = (int)(90 - activity);
if(activity >= 60)
        waittime=(int)(34.7586 - (0.0793103 * activity));
if(activity >= 100)
        waittime = max((int)(14-(activity/50)), 4);

you have 3 steps...

360sec under 15activity
90sec under 60activity
about 34sec under 100activity etc etc