Bitcoin Forum
August 28, 2024, 12:38:43 AM *
News: All versions of Windows are affected by a critical security bug; make sure you update.
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 50 51 52 53 54 55 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 »
1141  Economy / Micro Earnings / Re: Add-on for FaucetBOX Script: Rewards will be changed with Bitcoin price (Auto) on: March 23, 2017, 10:55:28 AM
I'll ask the developer, but since were both still in school.
We both dont have alot of time, but ill ask if he can do it!

Thanks for making it again Cheesy
hehehe... Wink

thanks was really easy to implement this in my script (not faucetbox)


now i have a mind. and max. reward depending on the Bitcoin Kurse and payout is a random number , thanks !!

Code:
$get_rate 		= file_get_contents("https://blockchain.info/tobtc?currency=USD&value=1") * 100000000;
$payOut  = rand(intval($get_rate * 0.004), intval($get_rate * 0.002));
$payOutBTC  = $payOut / 100000000;


kind regards
well done... but what's your script? Smiley

youre script orginal faucetbox
because faucetbox.com is closed service
LTU_btc has already said but I am saying once again, faucetbox has been closed but their admin has said that they will develop continuously the script.

Wow, I think many faucet owners wanted for such add-on to set rewards based on USD value. As I understand, this addon in general works in same way like freebitco.in where rewards are alway s same value in USD.
youre script orginal faucetbox
because faucetbox.com is closed service
Yeah, Faucetbox is closed service but their faucet script is still very popular and used on many Faucethub, ePay and some Faucetsystem faucets
Thank you. I will be very happy if this helps faucet owners. Smiley

Testing it on https://btcforeveryone.xyz Smiley

Thanks!
have you done your testing?
1142  Economy / Micro Earnings / Re: ProLink → Advertising offer: Just 0.75$ CPM for worldwide traffic + extra on: March 23, 2017, 10:50:49 AM
Advertise on ProLink for just 0.75$ per 1000 view.
This offer is for worldwide traffic. You will get extra free traffics from us.
I hope your money will be returned to you from your site's ad network. So that's an win-win condition. Wink

Hi!

I want to buy some traffic but i see that is 2.25$ for worldwide and not 0.75$ ...
that's for all devices (Desktop, Mobile and Tablet). But 2.25$ is price for only Desktop views. If you want to buy only Desktop, let me know.
1143  Economy / Micro Earnings / Re: Add-on for Dice Script: Rewards will be changed with Bitcoin price (Auto) on: March 23, 2017, 05:21:00 AM
nice, can you make random payouts, too?Smiley)
Yeah... It's easy... When I'll be on my computer, I will share the code. Now I'm on mobile.
1144  Economy / Micro Earnings / Re: ProLink → Advertising offer: Just 0.75$ CPM for worldwide traffic + extra on: March 23, 2017, 04:17:02 AM
Advertise on ProLink for just 0.75$ per 1000 view.
This offer is for worldwide traffic. You will get extra free traffics from us.
I hope your money will be returned to you from your site's ad network. So that's an win-win condition. Wink
1145  Economy / Micro Earnings / Re: Add-on for FaucetBOX Script: Rewards will be changed with Bitcoin price (Auto) on: March 22, 2017, 06:29:09 PM
This is very good, i dont use faucethub script.
But i think alot of people which do use it (alot) will be very thankful for this.

Great job! Grin
thank you. But perhaps you can add this feature into your script too. Smiley

wow great work!

Thanks for helping us faucet owners with this great new tool.
You're most welcome and thank you. See this also for your dice script: https://bitcointalk.org/index.php?topic=1838418.0 Smiley

Well this is Good Ive put it on   http://faucetmega.com
 So its all working fine Smiley
just need some reward changing then it will work as planned Smiley

Great Job

WoW...! Thank you for testing it on your site. Smiley
1146  Economy / Micro Earnings / Add-on for Dice Script: Random Rewards + USD value on: March 22, 2017, 06:21:36 PM
After this post: https://bitcointalk.org/index.php?topic=1838228.0
Someone told me to add this feature on dice script.
It's very easy to add this feature in dice script.
Just open index.php file from root directory.
Find:
Code:
$startBal = 50; //starting balance for users
$reefAmount = 5; //referral amount
Replace with this code:
Code:
$faucet_reward = 0.001; //reward amount in USD
$ref_amount = 0.0001; //referral amount in USD
$get_rate = file_get_contents("https://blockchain.info/tobtc?currency=USD&value=1");
$rate_sats = $get_rate * 100000000;
$startBal = intval($faucet_reward * $rate_sats);
$reefAmount = intval($ref_amount * $rate_sats);



Edit:
So, here's the code for random rewards:
Code:
	$min_reward = 0.001; //minimum faucet reward in USD
$max_reward = 0.005; //maximum faucet reward in USD
$ref_prcnt = 0.05; //referral percentage divided by 100.
        $get_rate = file_get_contents("https://blockchain.info/tobtc?currency=USD&value=1");
        $rate_sats = $get_rate * 100000000;
$shw_min = intval($min_reward * $rate_sats);
$shw_max = intval($max_reward * $rate_sats);
$reward = rand($shw_min, $shw_max);
        $startBal = intval($reward);
$reefAmount = intval($ref_prcnt * $startBal);

Now paste this code anywhere inside <body> </body> tag to show the rewards:
Code:
<?php echo "Win between $shw_min and $shw_max Satoshi every xxx minutes."?>
That's it. Now your dice is ready to change the reward amount according to the change of bitcoin price, just like freebitco.in. Wink
1147  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 22, 2017, 04:40:00 PM
DOGE to BTC is available now. Thanks to Josh20 for testing it and helping me to find bugs. Smiley

You always Welcome Mate!!!
 i am always glad to help when ever Smiley

Thank you. Smiley Smiley Smiley

BTC to DOGE is available now. Smiley
1148  Economy / Micro Earnings / Add-on for FaucetBOX Script: Rewards will be changed with Bitcoin price (Auto) on: March 22, 2017, 04:34:35 PM
Price of Bitcoin changes everyday. So, faucet owners need to keep a balance between bitcoin price and faucet rewards because profit from ad networks depends on bitcoin price. So, I have written a few codes that will change faucet rewards as bitcoin price goes.
[Note: That's for faucetBOX script]

1. Open: /libs/service.php file
Find:
Code:
public function send($to, $amount, $userip, $referral = "false") {
Add after:
Code:
        if($this->currency === "BTC") {
        $get_rate = file_get_contents("https://blockchain.info/tobtc?currency=USD&value=1");
        $rate_sats = $get_rate * 100000000;
        $amount = intval($amount * $rate_sats);
        }

2. Create a file named rs.php

Add these codes into it:
Code:
<?php
     $get_rate 
file_get_contents("https://blockchain.info/tobtc?currency=USD&value=1");
     
$rate $get_rate 100000000;
     
$reward1 intval($rate 0.001); // your first reward in USD
     
$reward2 intval($rate 0.0025); // your second reward in USD
     
$reward3 intval($rate 0.005); // your third reward in USD
     
echo "$reward1 , $reward2 , $reward3";
?>

Note: This file is just for showing faucet rewards. If you want to add more rewards, add like this:
Code:
$reward4 = intval($rate * 0.004);
$reward5 = intval($rate * 0.005);
$reward6 = intval($rate * 0.006);
Just replace 0.004, 0.005, 0.006 with your own numbers. Don't touch other things.
Then just add these $reward4 , $reward5 , $reward6 inside echo "";
Example:
Code:
echo "$reward1 , $reward2 , $reward3, $reward4 , $reward5 , $reward6 ";
Now upload this file anywhere and get the URL.

3. Then open /templates/default/index.php
Find:
Code:
<?php echo $data["rewards"]; ?>
Replace with:
Code:
<?php $show_rewards file_get_contents("http://example.com/rs.php"); echo "$show_rewards"?>
Note: Replace http://example.com/rs.php with your rs.php file's URL.

4. After completing this part, go to admin panel and put rewards as USD value. Example: 0.001 for 100 satoshi.
That's it. Now everything is complete! Rewards of your faucet will be changed automatically according to bitcoin price, you won't have to worry. Smiley
1149  Economy / Micro Earnings / Re: notice for ePay, FaucetHub, and other micro wallets -important for faucet owners on: March 21, 2017, 06:54:59 PM
FaucetHUB checks addresses, if coin address is invalid, it returns error 412. Same is for FaucetSystem.
1150  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 21, 2017, 05:55:40 PM
DOGE to BTC is available now. Thanks to Josh20 for testing it and helping me to find bugs. Smiley
1151  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 21, 2017, 05:44:15 PM
It's nice to see fast progress of exchange development, I wish good luck for you Alamin with the project. I'm not sure how such service are needed, but I will use it. For example, I almost never claim from litecoin faucets, but sometimes I got referral commission or FH chat rain and I would like to exchange these litecoins to bitcoins. I think thst people need for such service Smiley
Thank you for sharing your words. Well, how that can help faucet users, I will write a note about it. Stay tuned. Wink


Only thing is that you basically ask us for our "Private keys" from faucethub, which, if used correctly ( if your database gets hacked ), can do alot of damage to  faucet owners.

How can i assure that you don't store them for example?


 Is your site opensource btw?
There's no database/such things. There are just some php codes to handle the transaction.
The basic algorithm is: if (it receive from you) {it will pay you.} else {error}. There's no need of database and there's no javascript codes also. If my site gets hacked, they will get my API, not yours because it doesn't store your API. And I think hacking is not possible there.
And my site is not open source. Smiley
Quote
How can i assure that you don't store them for example?
Thanks to tungaqhd. He has already said what I recommend to do.
1152  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 21, 2017, 09:06:16 AM
It's nice to see fast progress of exchange development, I wish good luck for you Alamin with the project. I'm not sure how such service are needed, but I will use it. For example, I almost never claim from litecoin faucets, but sometimes I got referral commission or FH chat rain and I would like to exchange these litecoins to bitcoins. I think thst people need for such service Smiley
Thank you for sharing your words. Well, how that can help faucet users, I will write a note about it. Stay tuned. Wink
1153  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 21, 2017, 09:05:10 AM
Wow this is awesome man keep it up  Smiley
btw once the design comes it will look way better

also done my first exchange Ever Heres some Screenshots

 






Thanks a lot Josh for testing it. Smiley
I will look at design after completing the coding.
Thank you again. Smiley
1154  Economy / Micro Earnings / Re: SolveMedia no Revenue? on: March 21, 2017, 08:01:38 AM
I just notice that solve media is not paying anymore for solved captchas?

In last 7 days I have 5000 solved captachas but 0.00 revenue.
I have millions solved but 0.00 revenue! you're only 5000. Tongue
1155  Economy / Micro Earnings / Re: [Coming Soon] Micro Exchanger for Micro Wallets on: March 20, 2017, 06:47:02 PM
Beta is available: https://bitcointalk.org/index.php?topic=1835316.0
1156  Economy / Micro Earnings / Re: Micro Exchanger: Public Beta Version [Currently for FaucetHUB] on: March 20, 2017, 06:44:37 PM
cool man!

I wish you luck with your project and I will keep an eye on it.


thank you. Smiley Smiley Smiley
1157  Economy / Micro Earnings / Micro Exchanger: Released for FaucetHUB.io on: March 20, 2017, 05:52:41 PM
Want to convert currencies of your favorite microwallet FaucetHUB.io? Try this one: Micro-Exchanger.info

Supported exchanges:
=> BTC to LTC
=> BTC to DOGE
=> LTC to BTC
=> LTC to DOGE
=> DOGE to BTC
=> DOGE to LTC


Note: It will get live exchange rates via https://cryptonator.com 's API.

Always read F.A.Q. before using this service.
1158  Economy / Micro Earnings / Re: [Need your opinion] Microwallet for withdrawing to other microwallets? on: March 20, 2017, 05:56:24 AM
I think that Alamin is already creating something similar:
https://bitcointalk.org/index.php?topic=1832520.0
Mine will be mainly a currency exchanger. But @ Rick, you don't need to create a service for this purpose. The easiest way is to create a faucet script that will allow users to choose micro wallet. I am planning to mod the faucetinabox script to add this feature.☺
1159  Economy / Services / Re: Advertise on ProLink on: March 19, 2017, 05:49:37 PM
can you use google analytics ?

awstats are not as accurate.
LoL. I don't use Google Analyzer. But do you know awstats is always more accurate than google analytic? You may question, "Why?". So, I am trying to write some answers.

1. Google Analyzer is 3rd party analyzer but awstats is hosted on own server. So, my own can analyze better than a third party.
2. Google Analytics requires you to copy/paste the JavaScript code they provide to you on each of your webpages. So, if a website visitor happens to have disabled Cookies and/or JavaScript in their internet browser, the code that Google Analytics uses may not get run and those visits are not counted. Also, Google Analytics opt-out users are not counted either.
3. Awstats can detect search engine bots that access and crawl your website to learn more about your website content, link structure, etc., whereas  Google Analytics does not register this type of traffic since most crawlers and spiders don’t run JavaScript code.
4. The Awstats program does distinguish between the visits from humans and non-humans, categorizing traffic as “Viewed traffic” and “Not viewed traffic”, where “Not viewed traffic includes traffic generated by robots, worms, or replies with special HTTP status codes”. Awstats has a large list of known robot/spider ips, and most of them do identify themselves as robots/spiders. It can also detect these from interactions.
5. Google Analytics by default counts a session as a 30 minute interval. So if the user goes on a 30-minute lunch break in between visits on your website for example, that will count as 2 visits. Awstats counts a session as 1 hour.
6. Finally, no traffic statistics program is ever 100% accurate. Wink
1160  Economy / Micro Earnings / Re: Coinmedia is full of fake traffic. Don't advertise there. on: March 19, 2017, 04:24:27 PM
These can affect if you start network campaign. But I think if anyone manually choose website for advertising and check it's stats and then start advertising, he will get good results.


Exactly, but people barely start campaigns specifically site based, I think only 5% of my earnings on coinmedia come from direct campaigns.

This means that legit publisher are really getting hurt aswell by these people with their fake traffic.

They are literally sucking up all the ads, which leaves an unmonetized site behind for real publishers. In the last 24 hours I've only received 11 satoshis per hour, because there are no network campaigns left.
You're absolutely right. Legit publishers always suffer for these. I am expecting CoinMedia will become advertiser-less soon if they allow these happenings continuously.
Pages: « 1 ... 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 50 51 52 53 54 55 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!