admin Site Admin
Joined: 18 Apr 2006 Posts: 805 Location: Saint-Petersburg, Russia
|
Posted: Fri Dec 11, 2009 4:27 am Post subject: |
|
|
Unfortunately yes, an intermediate question breaks file uploading. Solutions:
1) Answer a question before uploading files
2) Disable Advanced Textual Confirmation for uploading files. I don't know exactly how to do it, but probably the following might work. In the file "bbantispam.php", after
Code: | if ($_SERVER['REQUEST_METHOD'] != 'POST') { return; } |
add a line
Code: | if (false === strpos($_SERVER['REQUEST_URI'], 'upload.php')) { return; } |
_________________ Oleg Parashchenko, bbAntiSpam
Do you love our tools? Please sponsor further development! |
|