I can't disable AntiDDoS on phx 3.11.0

Bozzie

New Member
Jun 19, 2011
26
0
Well now that Phoenix has this AntiDDoS table, evertime I click disable it just doesnt do it, all the connections are coming from one IP which is my proxy IP, so it sees it as a threat so I cannot get over 11 users!

ANY HELP WOULD BE MOST APPRECIATED.
 

zMagenta

Posting Freak
Jul 15, 2011
1,414
682
Yeah I do, I tried upping the connections on the AntiDDoS file but it still blocks it.
Right, I'll guide you through step by step, this is how I fixed it. Firstly, open up the project file in Phoenix in SharpDevelop/C++ editing programs.

First, search in all files
PHP:
if (AntiDDosSystem.smethod_2(text)

and you should find the line
Code:
if (AntiDDosSystem.smethod_2(text) > 10 && text != "127.0.0.1" && !LicenseTools.bool_0)

Change that line to:
Code:
if (AntiDDosSystem.smethod_2(text) > 10 && text != "127.0.0.1" && text != "192.169.80.182" && !LicenseTools.bool_0)
(this is for attackprotect)

Re-compile the emulator, and voila!
 

Bozzie

New Member
Jun 19, 2011
26
0
Thanks!, can I ask which is the Project file?

Don't worry I got it, thanks for the help would of been clueless otherwise!

It's still happening, do I drag the AntiDDoS.cs file into sharp editor edit that line then just save? @zMagenta
 
Last edited by a moderator:

Users who are viewing this thread

Top