Author

Topic: FaucetBOX.com Discussion - page 104. (Read 237001 times)

newbie
Activity: 14
Merit: 0
November 03, 2015, 01:30:16 PM
Hello.

Same here 2 deposits with +5 confirmations and not showing.

When will be proccessed?

Thanks
newbie
Activity: 25
Merit: 0
November 03, 2015, 12:52:42 PM
@Kazuldur I have sent 4 payments to my 2 faucets addresses, and in coinbase they area laready confirmed (10 and 16 confirmations).. but in my faucetbox panel the deposits are not shown
full member
Activity: 211
Merit: 100
November 03, 2015, 12:28:39 PM
How many confirmation to get in to my deposit wallet, because i already got 1 conf.
member
Activity: 88
Merit: 10
November 03, 2015, 12:00:14 PM
Hello!

I send 2 tranfers to my btc deposit adress 2 hours ago  (I'm faucet owner) but deposits are not showing on deposits, what can i do? my balance is running out...

Thank you!
legendary
Activity: 971
Merit: 1000
November 03, 2015, 11:41:30 AM
Sorry for downtime, our database server didn't come back to life after reboot, we're working on it.

EDIT: and we're back. I hope for good this time.
Do you mean that you already finished with the server transfer? Because i got a payment today but you were so pessimistic yesterday("should finish today evening but probably it won't").

 Grin

Yup. First test payouts went out already and we're processing the rest right now.
full member
Activity: 224
Merit: 100
★777Coin.com★ Fun BTC Casino!
November 03, 2015, 09:11:17 AM
Sorry for downtime, our database server didn't come back to life after reboot, we're working on it.

EDIT: and we're back. I hope for good this time.
Do you mean that you already finished with the server transfer? Because i got a payment today but you were so pessimistic yesterday("should finish today evening but probably it won't").

 Grin
legendary
Activity: 971
Merit: 1000
November 03, 2015, 06:44:50 AM
Sorry for downtime, our database server didn't come back to life after reboot, we're working on it.

EDIT: and we're back. I hope for good this time.
full member
Activity: 168
Merit: 100
November 03, 2015, 03:22:16 AM
Why I am getting an error "Server error 500" while enter in my admin Page and claim satoshi through my faucet.

Set $display_errors = true; in your config.php file, you'll see something more then. Probably you just don't have cURL enabled or something like that.
Then what should I do.
legendary
Activity: 971
Merit: 1000
November 03, 2015, 02:38:02 AM
Why I am getting an error "Server error 500" while enter in my admin Page and claim satoshi through my faucet.

Set $display_errors = true; in your config.php file, you'll see something more then. Probably you just don't have cURL enabled or something like that.
full member
Activity: 168
Merit: 100
November 03, 2015, 02:34:33 AM
Why I am getting an error "Server error 500" while enter in my admin Page and claim satoshi through my faucet.
sr. member
Activity: 396
Merit: 250
November 03, 2015, 12:27:42 AM
THANK YOU FAUCETBOX VERY MUCH. I LIKE FAUCETBOX  Grin
legendary
Activity: 971
Merit: 1000
November 02, 2015, 02:55:28 PM
We're forced to move FaucetBOX.com to new data center sooner that we expected. No payouts will be done in this time. We'll send all pending withdrawals after successful migration. Also you may experience decreased performance and random failed requests. We're really sorry for any inconvenience caused by this.

Hi, i send you pm please replay when you can Smiley

Contact [email protected], you have a better chance someone will reply you there. I'm too busy right now with all that migration madness Smiley

What about deposits? Are they going to be processed?

Deposits will be processed.
hero member
Activity: 686
Merit: 500
November 02, 2015, 02:40:00 PM
What about deposits? Are they going to be processed?
full member
Activity: 223
Merit: 100
November 02, 2015, 02:34:40 PM
We're forced to move FaucetBOX.com to new data center sooner that we expected. No payouts will be done in this time. We'll send all pending withdrawals after successful migration. Also you may experience decreased performance and random failed requests. We're really sorry for any inconvenience caused by this.

Hi, i send you pm please replay when you can Smiley
legendary
Activity: 971
Merit: 1000
November 02, 2015, 02:33:57 PM
We're forced to move FaucetBOX.com to new data center sooner that we expected. No payouts will be done in this time. We'll send all pending withdrawals after successful migration. Also you may experience decreased performance and random failed requests. We're really sorry for any inconvenience caused by this.

When it starts and when should be done?

It has already started an hour ago and if everything goes right, it should end tomorrow evening. But there's quite good chance that something will go wrong, so even 2-3 days without transactions are possible.

Just to clarify: API /send requests will mostly work, altough they may be slower than usual. What won't work for a day or two are blockchain withdrawal transactions to users.
sr. member
Activity: 392
Merit: 251
Bitcoin Faucet & Blog
November 02, 2015, 02:17:01 PM
We're forced to move FaucetBOX.com to new data center sooner that we expected. No payouts will be done in this time. We'll send all pending withdrawals after successful migration. Also you may experience decreased performance and random failed requests. We're really sorry for any inconvenience caused by this.

When it starts and when should be done?
legendary
Activity: 971
Merit: 1000
November 02, 2015, 02:00:29 PM
We're forced to move FaucetBOX.com to new data center sooner that we expected. No payouts will be done in this time. We'll send all pending withdrawals after successful migration. Also you may experience decreased performance and random failed requests. We're really sorry for any inconvenience caused by this.
sr. member
Activity: 392
Merit: 251
Bitcoin Faucet & Blog
November 02, 2015, 01:48:28 PM
Friend... you can do this way:

Code:
// Put your site IP bellow (you can ping your URL to get the IP)
$mySiteIp = '111.111.111.111'

//Get the visitor IP
$ip=$_SERVER['REMOTE_ADDR'];

//get the list of nodes that can achieve your site
$torList = file_get_contents("https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$mySiteIp&port=80");

//remove your IP address from the list. It is listed in the file header.
$torList = str_replace((string)$mySiteIp,"",$torList);

//check if the visitor IP is in the TOR list
if ((strpos((string)$torList, (string)$ip)) !== false)
{
banned();
}
Pulling the list from torproject.org on every hit is a Very Bad Idea, just grab it once a day and store a copy on the local filesystem.

I wouldn't worry about your own server's IP either. It's not ever going to be trying to hit itself.

In my faucet I'm storing/caching the result. But I think that consulting one time per day is less than the recommended.

TOR nodes are borning every hour...

Myabe check it every two hours could be a good move.
full member
Activity: 189
Merit: 100
November 02, 2015, 01:37:27 PM
Friend... you can do this way:

Code:
// Put your site IP bellow (you can ping your URL to get the IP)
$mySiteIp = '111.111.111.111'

//Get the visitor IP
$ip=$_SERVER['REMOTE_ADDR'];

//get the list of nodes that can achieve your site
$torList = file_get_contents("https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$mySiteIp&port=80");

//remove your IP address from the list. It is listed in the file header.
$torList = str_replace((string)$mySiteIp,"",$torList);

//check if the visitor IP is in the TOR list
if ((strpos((string)$torList, (string)$ip)) !== false)
{
banned();
}
Pulling the list from torproject.org on every hit is a Very Bad Idea, just grab it once a day and store a copy on the local filesystem.

I wouldn't worry about your own server's IP either. It's not ever going to be trying to hit itself.
sr. member
Activity: 392
Merit: 251
Bitcoin Faucet & Blog
November 02, 2015, 01:30:16 PM
I friend, if I put the torlist.txt in the index should activate the Nastyhost?
foreach (file('torlist.txt') as $torIP) {
If (getIP () == trim ($torIP)) {
banned();
}
}
Greetings thank you.
The Tor list and NastyHosts both achieve different purposes. You should have both.
Also. I fixed your code. You only need the opening brace '{' on lines 1 and 2, not both braces.
OK thanks, seems that the code was changed when I put it here.
Then I activate Nastyhost to run the torlist?

Friend... you can do this way:

Code:
// Put your site IP bellow (you can ping your URL to get the IP)
$mySiteIp = '111.111.111.111'

//Get the visitor IP
$ip=$_SERVER['REMOTE_ADDR'];

//get the list of nodes that can achieve your site
$torList = file_get_contents("https://check.torproject.org/cgi-bin/TorBulkExitList.py?ip=$mySiteIp&port=80");

//remove your IP address from the list. It is listed in the file header.
$torList = str_replace((string)$mySiteIp,"",$torList);

//check if the visitor IP is in the TOR list
if ((strpos((string)$torList, (string)$ip)) !== false)
{
banned();
}
Thank you, this we put it in the index.php instead torlist?


Yes.

Tell us if this is working well. Smiley

If you are interested, I developed a Protection Barrier with 8 layers of protection agains Bots, Proxies and malicious IPs.

Send me a PM to know more...
Jump to: