Pages:
Author

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

legendary
Activity: 971
Merit: 1000
April 09, 2016, 05:50:58 AM
Hi,

I saw some rotators around like this one Yoyobtcrotator.cf/index.html
from which you can claim reward even if your ad-blocker is on.I 'm using faucetbox anti ad-blocker but nothing happens.You can claim easily & its a totally loss of faucet owners.
So today i use meta tag to block my site using as an iframe but its not a solution.I will lose many visitors.Any suggestions to use and trigger anti ad-block script in rotators?

This works with a lot of adblockers (not all I guess). It shows a message but can easily be changed to hide the reward button. Between the tags:

Code:


Under the tag:

Code:


The showads.js file is just a text file with this code:
Code:
var canRunAds = true;




That's exactly what builtin Faucet in a Box anti ad-blocker does.
hero member
Activity: 924
Merit: 1000
April 09, 2016, 03:34:29 AM
Give me some good reasons to use faucetbox instead of Xapo. I can't choose between them. Are their benefits above Xapo to use it?
hero member
Activity: 1218
Merit: 534
April 09, 2016, 03:27:55 AM
Hi,

I saw some rotators around like this one Yoyobtcrotator.cf/index.html
from which you can claim reward even if your ad-blocker is on.I 'm using faucetbox anti ad-blocker but nothing happens.You can claim easily & its a totally loss of faucet owners.
So today i use meta tag to block my site using as an iframe but its not a solution.I will lose many visitors.Any suggestions to use and trigger anti ad-block script in rotators?

This works with a lot of adblockers (not all I guess). It shows a message but can easily be changed to hide the reward button. Between the tags:

Code:


Under the tag:

Code:


The showads.js file is just a text file with this code:
Code:
var canRunAds = true;


member
Activity: 112
Merit: 10
★★SatoshiCollector.co.uk★★
April 08, 2016, 07:43:23 PM
Hi,

I saw some rotators around like this one Yoyobtcrotator.cf/index.html
from which you can claim reward even if your ad-blocker is on.I 'm using faucetbox anti ad-blocker but nothing happens.You can claim easily & its a totally loss of faucet owners.
So today i use meta tag to block my site using as an iframe but its not a solution.I will lose many visitors.Any suggestions to use and trigger anti ad-block script in rotators?
legendary
Activity: 971
Merit: 1000
April 07, 2016, 03:56:44 PM
Continuation of this thread: https://bitcointalksearch.org/topic/ann-faucetboxcom-api-faucet-script-create-your-own-crypto-faucet-844119
This time it's self-moderated due to increasing amounts of spam.

hi, when it will be available for ether faucet?



We don't plan it for a few more months at least.
newbie
Activity: 45
Merit: 0
April 07, 2016, 03:48:26 PM
Continuation of this thread: https://bitcointalksearch.org/topic/ann-faucetboxcom-api-faucet-script-create-your-own-crypto-faucet-844119
This time it's self-moderated due to increasing amounts of spam.

hi, when it will be available for ether faucet?

newbie
Activity: 30
Merit: 0
April 02, 2016, 05:14:01 PM
Thank you for answering so quickly. I appreciate Smiley
legendary
Activity: 1059
Merit: 1020
April 02, 2016, 04:26:43 PM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.
I believe CloudFlare can provide user's location in a custom HTTP header. Not only it will be stable, it'll also be much faster (as you won't need extra http request to external service).
If this doesn't work for you, you can use the other geo-location service I mentioned a page back in this way:
Code:
$countryCode = json_decode(file_get_contents('http://geoip.nekudo.com/api/' . getIP()))->country->code;
I'm not sure but Remote addr won't work with cloudflare. I had the problem and it worked with x-forwarded for.
Remote address return the ip of the cloudflare server.
You may look here

minifrij's example uses getIP() which can handle that (and does that securely). The problem here isn't getting the IP itself, but getting the geographical location of user.

Well, in one of my project I use to get the country of the user an with php function and an api.

The PHP function (from here)
Code:
function get_ip()
{
        if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && $_SERVER['HTTP_X_FORWARDED_FOR']) {
            $ipList                          = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
            $_SERVER['HTTP_X_FORWARDED_FOR'] = array_pop($ipList);
        } else {
            $_SERVER['HTTP_X_FORWARDED_FOR'] = false;
        }
        if (filter_var($_SERVER['HTTP_X_FORWARDED_FOR'], FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
            return $_SERVER['HTTP_X_FORWARDED_FOR'];
        } else {
            return $_SERVER['REMOTE_ADDR'];
        }
    return $_SERVER['REMOTE_ADDR'];
}

And the PHP API

Code:
$location = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.get_ip()));
echo strtolower($location['geoplugin_countryCode']); // if you come from russian, you get: ru

It returns 'ru' if you are russian.

The API works on my site although remote_addr don't work. The function checks if ip from $_SERVER['REMOTE_ADDR'] is valid, if not it get the IP from $_SERVER['HTTP_X_FORWARDED_FOR'].
legendary
Activity: 971
Merit: 1000
April 02, 2016, 03:35:43 PM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.
I believe CloudFlare can provide user's location in a custom HTTP header. Not only it will be stable, it'll also be much faster (as you won't need extra http request to external service).
If this doesn't work for you, you can use the other geo-location service I mentioned a page back in this way:
Code:
$countryCode = json_decode(file_get_contents('http://geoip.nekudo.com/api/' . getIP()))->country->code;
I'm not sure but Remote addr won't work with cloudflare. I had the problem and it worked with x-forwarded for.
Remote address return the ip of the cloudflare server.
You may look here

minifrij's example uses getIP() which can handle that (and does that securely). The problem here isn't getting the IP itself, but getting the geographical location of user.
legendary
Activity: 1059
Merit: 1020
April 02, 2016, 02:25:44 PM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.
I believe CloudFlare can provide user's location in a custom HTTP header. Not only it will be stable, it'll also be much faster (as you won't need extra http request to external service).
If this doesn't work for you, you can use the other geo-location service I mentioned a page back in this way:
Code:
$countryCode = json_decode(file_get_contents('http://geoip.nekudo.com/api/' . getIP()))->country->code;
I'm not sure but Remote addr won't work with cloudflare. I had the problem and it worked with x-forwarded for.
Remote address return the ip of the cloudflare server.
You may look here

I hope I can help you.

Cheers
Salmen
legendary
Activity: 2352
Merit: 1268
In Memory of Zepher
April 02, 2016, 12:28:43 PM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.
I believe CloudFlare can provide user's location in a custom HTTP header. Not only it will be stable, it'll also be much faster (as you won't need extra http request to external service).
If this doesn't work for you, you can use the other geo-location service I mentioned a page back in this way:
Code:
$countryCode = json_decode(file_get_contents('http://geoip.nekudo.com/api/' . getIP()))->country->code;
legendary
Activity: 971
Merit: 1000
April 02, 2016, 12:13:27 PM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.

I believe CloudFlare can provide user's location in a custom HTTP header. Not only it will be stable, it'll also be much faster (as you won't need extra http request to external service).
newbie
Activity: 30
Merit: 0
April 02, 2016, 11:12:38 AM
Hi, freegeoip.net is no longer going to work stable. My question is what alternative can be used? I use geolocation to pay users.
full member
Activity: 195
Merit: 100
account out of order
April 01, 2016, 04:29:22 PM
BTC just cleared up,  Grin I guess we have it rolling again.
LTC and DOGE still pending ...
legendary
Activity: 971
Merit: 1000
April 01, 2016, 03:34:29 PM
Which off the captcha system providers are good to avoid the bots ?Are you planning to add any other company of captcha more hard to bots to make the claim auto?

Do you suggest any captcha service? Sadly we didn't find any that we'd consider safer than what we currently offer.

since, you don't reply to my PM, i am here posting the same in public,
1) I am running 3 faucets from single faucetbox account.

I would like to know the individual total payout stats of every faucets by monthly basis, so we can calculate our profits. Currently it's not showing correctly.

Stats should be shown like Date 1 to Date 30/31 (end of the month) for all individual faucets.
2) Can you move one of the faucet to newer faucetbox account without losing old userbase and stats?

1. that's something we're working on, however it requires deep changes in our system, so it will take a while. You can always implement something like that in your faucet script.
2. I don't see how userbase is related to faucetbox account. No, we can't move faucet without losing stats.

I am waiting for my withdraw its almost more then 3 days today site is also down any update about this ?

What's your address?
I received my bitcoins but LTC and Dash both still not waiting for some your intention in these both coins thanks

Sorry for delays, all coins should be transfered today.

Faucetbox was good until it added "This faucet exceeded it's safety limits!"  Everytime I see that message and think of the time has been wasted, I want to punch a hole through my screen.

Unfortunately that's a problem FaucetBOX.com has to face when trying to find the sweet spot between interest of users, faucet owners and overall performance. We're working on showing this information before the captcha, so you'd immediately know that there's no point in solving it.

For now I just recommend avoiding faucets that abuse that feature. It's something that faucet owners should set high enough to never be triggered on daily basis. If you see that more than once or twice on a single faucet, you should probably stop using it.
hero member
Activity: 784
Merit: 506
April 01, 2016, 03:22:58 PM
Faucetbox was good until it added "This faucet exceeded it's safety limits!"  Everytime I see that message and think of the time has been wasted, I want to punch a hole through my screen.
sr. member
Activity: 252
Merit: 250
April 01, 2016, 02:17:16 PM
I am waiting for my withdraw its almost more then 3 days today site is also down any update about this ?

What's your address?
I received my bitcoins but LTC and Dash both still not waiting for some your intention in these both coins thanks
sr. member
Activity: 400
Merit: 250
Play2Live presale starts on 5th December
April 01, 2016, 01:39:31 PM
Same here DDHppmwaoLNgQ1Cicbat7f6EqCYTBv4sk8  and  AdCAhAPiFoF3T8T5db7KYKi7bZuGM3SD9b
full member
Activity: 195
Merit: 100
account out of order
April 01, 2016, 08:57:12 AM
I am waiting for my withdraw its almost more then 3 days today site is also down any update about this ?

What's your address?

Same here, experiencing delays with BTC, LTC and DOGE, PPC arrived in time.
legendary
Activity: 1764
Merit: 1012
April 01, 2016, 02:54:40 AM
since, you don't reply to my PM, i am here posting the same in public,


1) I am running 3 faucets from single faucetbox account.

I would like to know the individual total payout stats of every faucets by monthly basis, so we can calculate our profits. Currently it's not showing correctly.

Stats should be shown like Date 1 to Date 30/31 (end of the month) for all individual faucets.

2) Can you move one of the faucet to newer faucetbox account without losing old userbase and stats?

Pages:
Jump to: