Post
Topic
Board Micro Earnings
Re: FaucetBOX.com Discussion
by
ahmedjadoon
on 29/01/2016, 11:27:57 UTC
It was r60. I just installed latest version overwriting old files to make sure that there is no modification on script which obviously broke my customized theme. Anyhow I switched to Default theme and tried to Claim reward and got same error but now "line 2061".

Well... I have to say that I have no idea why that's happening. Here's what you can check, but it might just be easier/faster to change hosting:

1. Do you see any "REFERER CHECK FAILED, ASSUMING CSRF!" errors in your server's error log?
2. Does it help if you temporarily remove line 90:
Code:
$_POST[$_SESSION['address_input_name']] = "";
from index.php?
3. can you put
Code:
trigger_error("Address input name changed");
in line 2388, like that:
Code:
Line 2387:         $data['page'] = $page;
Line 2388:         trigger_error("Address input name changed");
Line 2389:         $_SESSION['address_input_name'] = randHash(rand(25,35));
and then visit your page once and see if this error was added only once to your server's error log? (it's important to check the error log and not only in browser)
1. Yes, I could see this error in the log present twice for yesterday 28th January only( the same day I checked the log after your instruction).
2. I removed the line and tested but same issue.
3.I put that code and checked my error log and this error "
Code:
PHP Notice:  Post request, but session is invalid. in /home/dailyfre/public_html/aquabitcoin.com/index.php on line 2061
" displayed once only. However this error
Code:
[29-Jan-2016 11:15:55 UTC] PHP Notice:  Address input name changed in /home/dailyfre/public_html/aquabitcoin.com/index.php on line 2388
appeared many times maybe because of changes I made above.