Bitcoin Forum
June 20, 2024, 12:04:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 [106] 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 »
2101  Economy / Auctions / Re: Auctioning my signature space on: May 28, 2015, 09:54:12 AM
I do not want to participate in auction but what if one person win the auction but resigns and do not pay you?
Then I will leave them negative trust and contact the second highest bidder. There's no point fretting over it. If they aren't going to pay, they aren't going to pay.
2102  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 27, 2015, 03:06:45 PM
Kkk...
It works like a charm. Grin
One more thing, if i want to store the status(200 for ok) and message values in 2 php variables???
Code:
$jsonResponse = json_decode($response);
$status = $jsonResponse->status;
$message = $jsonResponse->otherJsonString;
Returns only status and not the message. Sad Sad
otherJsonString is just a placeholder. I don't know which message you want to return, so you just put the string that you want to return in place of otherJsonString.
2103  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 27, 2015, 02:55:13 PM
Kkk...
It works like a charm. Grin
One more thing, if i want to store the status(200 for ok) and message values in 2 php variables???
Code:
$jsonResponse = json_decode($response);
$status = $jsonResponse->status;
$message = $jsonResponse->otherJsonString;

It works but not as I want. When the adblock is enabled I see the message Please disable adblock to claim.Пожалуйста, отключите Adblock, чтобы собрать сатоши but only 1 second or even less. After that I see the countdown button and after 5 sec the standart button Get reward appears. So actually script for adblock doesn't work
My apologies, I forgot a crucial part of it.

Try this:
Code:
<span id = 'subbtn'>
        <a href="" class="btn btn-success disabled">Wait 5s.</a>

        <script>
        var count = 5; //This is the time you want before the button is clickable
        if(window.canRunAds !== undefined){
                var counter=setInterval(timer, 1000);
        }

        function timer(){
        count=count-1;

        if(count != 0){
        document.getElementById("subbtn").innerHTML="<a href='' class='btn btn-success disabled'>Wait "+count+"s.</a>";
        }else if(count == 0){
        clearInterval(counter);
        document.getElementById("subbtn").innerHTML="<input type = 'submit' class='btn btn-success' value = 'Claim Reward!'/>";
        }
        }
        </script>
</span>
<!--Check For Adblock-->
<script>
if(window.canRunAds === undefined){
   document.getElementById('subbtn').innerHTML = '<big>Please disable adblock to claim.Пожалуйста, отключите Adblock, чтобы собрать сатоши</big>';
}
</script>
2104  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 27, 2015, 02:04:17 PM
Hrmm, alright ,thanks. I guess I gotta sit tight.

I remember back in January when I started with faucetbox approval was within a couple of hours.
I expect there were a lot less faucets to trawl through back in January since the service was only a few months old. And you might have caught Kazuldur when he was online.

I tried fetching balance-
$json_url = "https://faucetbox.com/api/v1/balance?api_key=APIKEY&currency=BTC";
$json_data = file_get_contents($json_url);
$json_feed = json_decode($json_data);
$bal = $json_feed->balance;

This returns ok.

Then i try this -
$json_url = "https://faucetbox.com/api/v1/send?api_key=APIKEY&currency=BTC&to=$addr&amount=$cash";
$json_data = file_get_contents($json_url);
$json_feed = json_decode($json_data);
$status = $json_feed->status;
if ($status == '200') {
echo'A payment of '.$cash.' has been sent to <a href="https://faucetbox.com/en/check/$addr">your faucetbox account</a>.<br>Thanks for using Bitcoin Play!<br>';

I get a return - {"status":414,"message":"Missing or invalid parameters."}
I also get this error when i try to fetch the last payouts.
You seem to have given me every request but the one that you're having trouble getting, unless it's sending the BTC which is giving you trouble.
If that is not the case, when trying to get the last payouts what request do you send?
2105  Economy / Services / Re: *Custom made keylogger service! 100% FUD! FULL ESCROW -LEGAL USE ONLY* on: May 27, 2015, 01:27:18 PM
EDIT: Great then I look and he was last on the 3rd of May! Dude above why didn't you just leave this thread in the abyss.... You have created an account to find this and bump it! Are you OP?
They're probably just trying to promote their service. Pretty terrible way to do it.

If anyone needs a keylogger there are tons of tutorials for making one using Python for free. Don't bother buying one.
2106  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 27, 2015, 01:22:53 PM
I am having some problems in sending payments through your api. When i check the balance using json it returns everything all right. But when i send a payment or fetch the most recent payouts, it says -
{"status":414,"message":"Missing or invalid parameters."}

Please help ASAP.
What's the request you're sending?
2107  Economy / Auctions / Re: Auctioning my signature space on: May 27, 2015, 01:09:25 PM
Thanks for the bids everyone!

Current leader is Xiaoxiao with 0.055BTC
2108  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 27, 2015, 12:49:07 PM
Is there a reason why it takes so long to get approved? I've been waiting for 4 days now for my faucet to get approved, and I've been watching the faucets list for BTC, hasn't changed at all.

Thanks.

I know it says "up to a week" but from what I can tell, it's deliberately making me wait a week.
Because there's one or two people checking through hundreds of faucets to make sure they all work correctly and fit the ToS. That does take time.
2109  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 26, 2015, 08:57:45 PM
So the whole code will be like that?
snip
I made an error, here is the entire code:
Code:
<span id = 'subbtn'>
        <a href="" class="btn btn-success disabled">Wait 5s.</a>

        <script>
        var count = 5; //This is the time you want before the button is clickable
        var counter=setInterval(timer, 1000);

        function timer(){
        count=count-1;

        if(count != 0){
        document.getElementById("subbtn").innerHTML="<a href='' class='btn btn-success disabled'>Wait "+count+"s.</a>";
        }else if(count == 0){
        clearInterval(counter);
        document.getElementById("subbtn").innerHTML="<input type = 'submit' class='btn btn-success' value = 'Claim Reward!'/>";
        }
        }
        </script>
</span>
<!--Check For Adblock-->
<script>
if(window.canRunAds === undefined){
   document.getElementById('subbtn').innerHTML = '<big>Please disable adblock to claim.Пожалуйста, отключите Adblock, чтобы собрать сатоши</big>';
}
</script>
This should be correct.
2110  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 26, 2015, 08:28:16 PM
For the timed button in combination with the adblock script shown above, you just have to put this script in the <span id = 'subbtn'></span> tags.

Code:
<a href="" class="btn btn-success disabled">Wait 5s.</a>

<script>
var count = 5; //This is the time you want before the button is clickable
var counter=setInterval(timer, 1000);

function timer(){
count=count-1;

if(count != 0){
document.getElementById("subbtn").innerHTML="<a href='' class='btn btn-success disabled'>Wait "+count+"s.</a>";
}else if(count == 0){
clearInterval(counter);
document.getElementById("timer").innerHTML="<input type = 'submit' class='btn btn-success' value = 'Claim Reward!'/>";
}
}
</script>

Then with the adblock script below as shown in the example above.
2111  Economy / Auctions / Re: Auctioning my signature space on: May 26, 2015, 07:59:01 PM
If I buy your space, can I have any special wish-the few sections where I want most of your posts ?
It's dependent. Almost all of my posts are in the Marketplace section, mostly Service Announcements, Services, Digital Goods and Auctions.
If it's none of those sections I may not be the right guy.
2112  Economy / Services / Re: ★ LuckyBit Bitcoin Talk Affiliate Program ★ [OPEN] on: May 26, 2015, 03:20:01 PM
Now that clarifies it for me. This is what I get when I go to their site

snip
*cough* 1LuckyG4tMMZf64j6ea7JhCz7sDpk6vdcS *cough*
2113  Economy / Services / Re: ★ LuckyBit Bitcoin Talk Affiliate Program ★ [OPEN] on: May 26, 2015, 02:56:15 PM
Oh? I went to the site and it told me that US participants cannot play..Hmm. Let me check this out then. Thx!
Basically, you're not meant to play if you're in the US but Luckyb.it cannot block players anymore than they already have.
So, if you were to get around the blockades then it would just be a terrible accident that Luckyb.it could not have stopped.
2114  Economy / Micro Earnings / Re: [ANN] Paytoshi - Microtransaction Wallet + Faucet API & Script on: May 26, 2015, 02:47:32 PM
Hello,

Faucet owners, what is the best way to monetize a faucet ? Adsense sucks, a-ads is better but not impressive, and others like adhexa or bidvertiser pays too low... Sad
Adsense is commonly known as the best for revenue. Have you tried http://adbit.co or http://bee-ads.com ?
2115  Economy / Auctions / Re: Auctioning my signature space on: May 26, 2015, 01:57:21 PM
Neotox is leading with 0.007BTC
Still cheap!
2116  Economy / Auctions / Re: Auctioning my signature space on: May 25, 2015, 07:16:52 PM
0.007btc per month?

if yes then i will start bidding with 0.007btc
Oops, forgot to put that in. Yes, this is for my signature for a month.

Thanks for the bid!
2117  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 25, 2015, 07:07:31 PM
no worry man I am looking into api to do direct deposit into accounts.  I like Faucetbox but if they are gonna authorize scammers like him I rather not be part of it.  He scams people, advertisers and other faucet owner like he is gonna get rich with a faucet lol he will if he keeps scamming like he is but hey i move on and
I wouldn't blame FaucetBox for any actions of anyone else. If his site works correctly and is not trapping users it is none of FaucetBox's concern what else he does.

If you need any help send me a PM, APIs like blockchain.info are fairly easy to use.
2118  Economy / Auctions / Auctioning my signature space on: May 25, 2015, 07:02:35 PM
Hi,
Since all signature campaigns seem to be full or their owners AWOL, I would like to auction my signature space for anyone to use.

Account Statistics:
Posts: 885
Activity: 588
Rank: Hero
Average monthly posts: 80-100, varies monthly.

Auction Rules:
Start Bid: 0.007BTC
Minimum Increment: 0.001BTC
Auction End: 72 hours after final bid.
No ghost/proxy bidding.

Thank you, good luck!
2119  Other / Meta / Re: About the recent server compromise on: May 25, 2015, 04:05:47 PM
Glad that it's back, but as previously said it's fairly unacceptable that a forum with such a security aura can still be compromised by attackers.
When will the new forum be happening? It's been in speculation for at least a year, if not longer now. It cannot take this long to code a forum software.

Yeah, DDOS you out of digital existence.
Do you think that they would bother? Surely to take down as many people as it would be worth here it would take more resources than what the attacker could get back.
2120  Economy / Micro Earnings / Re: [ANN] FaucetBOX.com - API & faucet script, create your own crypto faucet on: May 21, 2015, 03:58:07 PM
snip
Nice constructive post.

I don't care about any ptc sites, cause I'm not poor and I don't need to click on ads for cents Wink
Whether or not you use them for revenue is irrelevant, as he was talking about getting traffic through advertising on them.

...but your sites are just a piece of shit, how obvious, isn't it?  Kiss
The pot said to the kettle.

// From now, I will not respond to any of your posts, because I just don't want to spam others and mine threads like you  Roll Eyes
Good, and please do the same yvesp. Not to disrespect any of you, but you are spamming the thread massively.
To post a scam accusation go here, if you have any other problems you should probably solve them over PM or other means.
Pages: « 1 ... 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 [106] 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!