Bitcoin Forum
June 20, 2024, 11:48:56 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 »
381  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 19, 2015, 12:06:06 PM
I'd like a new stats feature which allow us to see what  countries make more claims, like a list of countries sorted by number of claims made.

You should use Google Analytics or something similar for that.

Hi Kazuldur, can you add some feature on faucet or on faucetbox account, which will show us , for how many user this current balance is enough.

It depends on too many factors, it can't be easily calculated. Specifically it depends on how you advertise your faucet and what kind of users visit it, which is something that FaucetBOX.com can't know.

yes thats right,now i got this error:
PHP Notice:  Array to string conversion in /home/greenbit/public_html/index.php on line 1566
[quote
Which version do you use? Did you modify index.php anyway? This error doesn't make sense on this line...
If you modified the script please tell me what's on line 1566 in your index.php file.

no,im using r56 version.

It still doesn't make sense, line 1566 in r56 only has a bracket in it. Can you send me lines 1560-1570 from your index.php?

Currently you have to do that in the code of your faucet. Checking the error code and changing $ret['html'] around line 2355 in index.php should work.
However I think that customizing error messages is quite a nice idea, we'll think about implementing this in next version.
I found it, but what change?
Thank you
Code:
} else {
                        if($data['unit'] == 'satoshi')
                            $data['paid'] = $ret['html'];
                        else
                            $data['paid'] = $ret['html_coin'];
                    }
                } else {

That's not it. This snippet handles successful payout, you want to catch error. You want to find this part (line numbers from r62 added):
Code:
 2352                     }       
 2353                 } else {
 2354                     $data['error'] = $ret['html'];
 2355                 }
 2356                 if($ret['success'] || $fb->communication_error) {
and change it to something like this (not tested):
Code:
 2352                     }
 2353                 } else {
 2354                     if($ret['message'] == "This faucet exceeded it's safety limits!") {
 2355                         $ret["html"] = "<div class=\"alert alert-danger\">YOUR CUSTOM MESSAGE HERE</div>"
 2356                     }   
 2357                     $data['error'] = $ret['html'];
 2358                 }   
 2359                 if($ret['success'] || $fb->communication_error) {
382  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 18, 2015, 11:00:11 PM
Sorry, but in my settings I found new:
Send limits
Limits of how much this faucet can payout in a 30 minute window.

What is it? What a "30 minute window"?

How much your faucet can send in 30 minutes. For example if you set it to 0.001 BTC, that's how much the faucet will be able to spend between 12:00 and 12:30. The amount that faucet has spent resets every 30 minutes. If your faucet tries to spend more than that, API will return:

Code:
{"status": 450, "message": "This faucet exceeded it's safety limits!"}

We also plan adding email notifications to that and optional "paranoid mode" that will reset the API kay if the limit is hit.

It's meant to be a protection from hackers stealing all coins if they get the API key in their hands and mass attacks of bots.
It seems great to me! Is there any way to change that message?
For example
Code:
This site has a maximum of x satoshi every half an hour.

Currently you have to do that in the code of your faucet. Checking the error code and changing $ret['html'] around line 2355 in index.php should work.
However I think that customizing error messages is quite a nice idea, we'll think about implementing this in next version.
383  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 18, 2015, 09:37:22 PM
Hmm... it's possible that a second request after loading the faucet (done for example by AJAX) could be causing this. Can you tell me what's the URL of your faucet? I'll check that.


roll back to the 50 version, all worked fine  freecoin.in.ua

Bad idea. The problem here is an CSRF protection introduced in r52 (or r51, I'm not sure) that also makes it harder for simple bots to raid the faucet. You should really try to find out why it doesn't work for you. At freecoin.in.ua the problem is a feedjit.com that for some dumb reason makes a test connection to the site in backgroud, which generates a new token that isn't updated in the form. Removing feedjit.com should be enough to fix this issue.
384  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 18, 2015, 05:30:49 PM
Hmm... it's possible that a second request after loading the faucet (done for example by AJAX) could be causing this. Can you tell me what's the URL of your faucet? I'll check that.
385  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 18, 2015, 11:27:04 AM
yes thats right,now i got this error:
PHP Notice:  Array to string conversion in /home/greenbit/public_html/index.php on line 1566

Which version do you use? Did you modify index.php anyway? This error doesn't make sense on this line...
If you modified the script please tell me what's on line 1566 in your index.php file.

One more idea:
If captcha will be in a pop-up window would not be helpful?

Against bots? No, it wouldn't change anything. That's the same as anti-bot links.

Where does this configuration?


On the manage page of your faucet in your FaucetBOX.com Dashboard.


Try setting $display_errors = true; in your config.php file and check if there are any errors shown when changing things in admin panel.

what to do with this error   $display_errors = true

Notice: Post request, but session is invalid. in  /www/domen.in/index.php on line 2061

what do with it Angry Angry Angry Sad Sad... help to solve .. Sad Sad Sad

If that's the only error then I must say I'm puzzled and I don't know what may be causing that except for really bad hosting. Maybe it's some obscure bug in the script. Try adding:

Code:
echo "<pre>";
var_dump($_POST);
var_dump($_SESSION);
echo "</pre>";
die();

between lines 2060 and 2061. You want it to look like this after change:

Code:
             if($display_errors && $_SERVER['REQUEST_METHOD'] == "POST") {
                 if(array_key_exists('address_input_name', $_SESSION)) {
echo "<pre>";
var_dump($_POST);
var_dump($_SESSION);
echo "</pre>";
die();
                     trigger_error("Post request, but session is invalid.");
                 } else {
                     trigger_error("Post request, but invalid address input name.");
                 }
             }

That will break payouts completely, so just add it, test it yourself, copy what's shown and revert the change. Then tell us what did you see.
386  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 17, 2015, 09:51:57 AM
ever since I changed my hosting,I am not able to change admin panel,when i make changes , nothing happend!

Well... if it worked before then it sounds like there's something wrong with the new hosting, don't you think? Smiley
Try setting $display_errors = true; in your config.php file and check if there are any errors shown when changing things in admin panel.
387  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 17, 2015, 08:23:47 AM
Sorry, but in my settings I found new:
Send limits
Limits of how much this faucet can payout in a 30 minute window.

What is it? What a "30 minute window"?

How much your faucet can send in 30 minutes. For example if you set it to 0.001 BTC, that's how much the faucet will be able to spend between 12:00 and 12:30. The amount that faucet has spent resets every 30 minutes. If your faucet tries to spend more than that, API will return:

Code:
{"status": 450, "message": "This faucet exceeded it's safety limits!"}

We also plan adding email notifications to that and optional "paranoid mode" that will reset the API kay if the limit is hit.

It's meant to be a protection from hackers stealing all coins if they get the API key in their hands and mass attacks of bots.
388  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 12, 2015, 06:11:10 PM
But it is that I have tried from my faucet, either I put my referral and I claimed the reward but not reflected in Faucetbox.

The image that I put what happened to me, not I did that referred from my website.

I'm sorry, but I completely don't understand. Please write step by step, what you did, when you did it, what result did you expect and what result did you actually get.
389  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 12, 2015, 03:25:35 PM
Why ignore my comments and private messages?

I don't help through PM. Either ask your question directly here or send an email to support@faucetbox.com.
Is it possible from my own faucet and with my btc address to collect referral?

It is that I see in my account as that from my site and my own address of btc is pay me the referral.

Deputy captures many thanks.

I don't really understand your question. Yes, it is possible that your own faucets sends you referral coins if someone provided it in referral link.
390  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 12, 2015, 11:18:25 AM
Why ignore my comments and private messages?

I don't help through PM. Either ask your question directly here or send an email to support@faucetbox.com.
391  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 11, 2015, 07:07:28 PM
i uploaded this to my public_html root
https://faucetinabox.com/static/download/tools/test.php
and i got my faucet IP and my internet IP , but when checking my site domain in who.is it gives me Cloudflare IP

So the "Connecting IP address" was your personal real IP address? Interesting. Is it possible that your web server is converting the IP address for you already? Maybe you did one of these guides:

https://support.cloudflare.com/hc/en-us/articles/200170706-How-do-I-restore-original-visitor-IP-with-Nginx-
https://support.cloudflare.com/hc/en-us/articles/203656534-How-can-I-set-up-Apache-mod-CloudFlare-

?

If you did, then you shouldn't have Cloudflare enabled in the admin panel and everything will work correctly.
392  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 11, 2015, 01:14:09 PM
i am using cloudflare without active it in faucet admin page , and no problem with users IPs , is this normal ?
If you can claim satoshi from your faucet then it is fine.
so what is the necessary of activate cloudflare in the admin page if every thing working correctly ?

No, it's not normal. However cloudflare has many servers, so it's possible that you haven't seen the issue because you don't have enough users.
Try this script: https://faucetinabox.com/static/download/tools/test.php . If "Connecting IP address:" is your address, then you didn't set up Cloudflare correctly (which means that  users are connecting to you directly). If you see a Cloudflare IP address (you can check it here: https://who.is/), then soon you'll have problems with timer shared between many users.

It is necessary to activate Cloudflare in admin panel. However if you're not sure about it, then I don't recommend you using Cloudflare at all. If you do enable it and it is possible to bypass Cloudflare and access your faucet directly, a malicious user will be able to bypass the timer entirely.

Hello when you activate the ACL tried to collect on my website and I get Disallowed IP


After activating the ACL you also have to provide a list of IP addresses that are allowed to use your API keys. You haven't provide the address of your faucet, so the request was disallowed. That's how it's supposed to work Wink
393  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 10, 2015, 11:05:04 PM
Kazuldur... I have a doubt.

When the NastyHosts check function indentifies a bad IP, the script calls the banned() function?

I'm not finding the code that calls NastyHosts and handle with the blacklisted IPs...

Yes, it calls the banned() function. It's lines 1548 - 1554 in r62.
394  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 10, 2015, 10:10:49 AM
I do not understand very well the functioning of ACL, does it mean that only the IP in the list can receive satoshi from the faucet?


No, that means that that's the only IP that can send coins or call the API. So that should be the IP of your faucet.

Just a suggestion... The same way you are using NastyHosts to check the claimer IPs, there are other services like this doing the same work.
You could install some codes to check those services like Nastyhosts.

I don't believe that any of Terms of Services of other services allow this. It would be pretty much like stealing.

Would be great if instead to select just one service We could select 2 or three to work a the same time.

I'm open for suggestions. Problem is that GetIPIntel has really small limits (1k requests daily, while there are faucets with 20k users...) and minFraud is expensive. I don't know others. If there's a service you'd like to see in Faucet in a BOX script, just tell us which one.

Other good feature would be the possibility to install two simaultaneous captchas.

Has someone tried that already? I think it would help, but at the same time I think real users would stop using it too... If someone is doing it successfully then I think we can implement that.

Quote
Maybe turning the simple submit claim button in a slice/slider button would avoid some bots. Its simple to implement.

Bots that inject into browser can just call something like document.getElementsByTagName('form')[0].submit() and bots that don't use browsers don't click any buttons at all, they just scrap the captcha and then make HTTP requests on their own.

That's just like the "anti-bot links". It doesn't stop bots, it just annoys real users. Things like that works good when they're deployed manually by faucet owners. Call it an arms race. But when we implement that in stock script, then bots are really quick to workaround it. And whatever a real user can do, bot can do too, it's just a matter of implementing it.
395  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 09, 2015, 07:30:35 PM
Guys, please check your faucets and make sure you keep your passwords safe and you have MFA, ACL and Login notifications enabled. Also check your antibot measures.

Many people reported being hacked recently Sad

EDIT: We're working on some basic anti-fraud measures that should prevent at least most obvious hacks, like withdrawing all balance in one send. I hope we'll be able to deliver them soon.
396  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 08, 2015, 07:13:28 PM
FaucetBOX.com will be down for about 30 minutes at 20:00 UTC today (that's about 50 minutes from now).

EDIT: we're back up.
397  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 07, 2015, 11:16:51 PM
Kaz have you altered the way payouts are calculated from Faucetbox? I.E. not using the 'cutoff' in your daily accounting checks.

I seem to have been getting much prompter payments - and also getting the full amounts that I can see in my Faucetbox instead of the amount you guys 'approve'.

I have no idea what cutoff are you talking about. We don't 'approve' anything and nothing changed in the way payouts are calculated.

However we've got a new server, which can calculate payouts much faster. I know that it was source of some confusion, as calculating the payouts could take even 12 hours and when the calculation has finished it already had obsolete data, so at the moment the transaction was actually sent not all coins were actually sent.

I think I've already explained that a few times in this and previous thread, but my English isn't very good, so in case previous paragraph isn't clear, here's what happens step by step:

1. you accumulate some coins, let's say 20k satoshi
2. FaucetBOX.com starts calculating payouts
3. you accumulate some more, let's say another 30k for a total of 50k satoshi
4. your /check page now shows 50k satoshi accumulated, 0 satoshi paid
5. FaucetBOX.com finished calculating payouts and it has data from the moment it started
6. a transaction for 20k satoshi is sent
7. your /check page now shows 30k satoshi accumulated, 20k satoshi paid
8. you wait another day till next payout and the 30k satoshi is paid out too.

Getting a new server allowed us to reduce the time between points 2. and 5., which leads to more robust payouts. Previously it was usually about 3-6 hours (except for a last week or two before the migration, when it could reach even 24 hours...), now it's around 2-3 hours.

Is everything clear now Smiley?
398  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 07, 2015, 05:35:50 PM
Can I send from Faucetbox Bitcoin address to address of litecoin in the same Faucetbox?

No, FaucetBOX.com is not an exchange.

You website time is 1 hour faster then our time you can see below

You can change it on the Faucetbox site.

Cheers
I am from nepal so I have change my time zone to NPT but there you can see, time difference between my site and my computer is 1 hour.

Thanks for the report, I confirm there's a bug. It'll take us a while to fix it though, sorry.

Kazuldur.

Would be great if you decrease the need of 4 confirmations for 2 r 3 confirmations.

De deposits would finish faster.

2 confirmations are a good proof of that a transaction is done.

No, 2 confirmations aren't enough. 2 confirmations can easily be reverted. Just check how often 1-block forks happen: https://blockchain.info/orphaned-blocks. Here even forks as long as 4 and 3 blocks are mentioned: http://bitcoin.stackexchange.com/a/4638 .

EDIT: To clarify, I don't mean that 2 confirmations can easily be reverted on purpose. I mean that they can be reverted by accidental blockchain fork.
399  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 05, 2015, 07:26:50 PM
Hi Kazuldur, Can you add real time BTC price on BTC address checker
If you add this feature then it will better for us.

No, that's not what FaucetBOX.com is all about Smiley

what about creating like & dislike voting widget so we can put it in our sites ?

That sounds good, I've added it to our issue tracker for further discussion.

Hi, Kazuldur.

Sometimes It seems me that the referral payments are made many hours after the claim. I mean that I think I'm receiving my referral earnings late.

Aren't the referrals payments instantly?

FaucetBOX.com doesn't handle referrals, faucets do that themselves. Faucet in a BOX script makes payments instantly, but others differ. Some even require you to claim from the faucet from time to time and only then you'll be paid referral earnings.
400  Economy / Micro Earnings / Re: FaucetBOX.com Discussion on: November 05, 2015, 11:54:09 AM
EDIT: actually we only require 4 confirmations. So this transaction should be credited since a few minutes ago if you used a deposit address.
I have got the transaction come into pending tomorrow. From yesterday I can see the following:

222328e8db8bc3dc008c3238f2a1ab1a11adefeaeebf13ca162648d29a03e15f

0.00114559 BTC   2015-11-03 UTC

But I've got NOT A SINGLE SATOSHI coming to my wallet! It's look like my satosh have been stolen!!! There were more transactions and the same thing happened to them.

And there are no payouts for 3 past days. It writes: "No payouts will be done in this time. We'll send all pending withdrawals after successful migration. We're really sorry for any inconvenience caused by this move." So WHEN the payouts will be maid? How much time I have to wait? A day? A week? A month? A year? And the main thing is why there no respond from yesterday when I write to support@faucetbox.com asking them the same question

Check any block explorer, this transaction is in your wallet already, it has 29 confirmations currently: http://btc.blockr.io/tx/info/222328e8db8bc3dc008c3238f2a1ab1a11adefeaeebf13ca162648d29a03e15f

The payouts are already working properly, we just didn't update the website yet.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 [20] 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!