Pages:
Author

Topic: MiniFaucet Script (a MyFaucet replacement) - page 15. (Read 51971 times)

sr. member
Activity: 434
Merit: 250
December 27, 2013, 05:30:08 PM
#70
Will try the new version tonight on one of my faucets. By the way, your demo site is down.

legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 27, 2013, 05:05:16 PM
#69
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  Cheesy)

if you upgrade, you sould migrate the config!

Great upgrade Grin
Will test,soon Smiley

You have to setup a daemon for this?
legendary
Activity: 1036
Merit: 1000
December 27, 2013, 04:14:20 PM
#68
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  Cheesy)

if you upgrade, you sould migrate the config!

Great upgrade Grin
Will test,soon Smiley
hero member
Activity: 525
Merit: 529
December 27, 2013, 04:06:11 PM
#67
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  Cheesy)

if you upgrade, you sould migrate the config!
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 13, 2013, 09:16:13 PM
#66
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca We also have a competition going for best bitcoin tool Smiley

Your site is a marketplace for scripts? They are pretty expensive.

Way too expensive for anyone to want to buy. Not enough sales on existing items to make anyone want to submit. Hope it works out though, but for the meantime I'll stick to codecanyon/themeforest.

What I do is if I like a theme, I just remove the frame and save the page... Grin Then I realize that it doesnt look how I want it to and remake it my self.
sr. member
Activity: 434
Merit: 250
December 13, 2013, 08:17:05 AM
#65
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca We also have a competition going for best bitcoin tool Smiley

Your site is a marketplace for scripts? They are pretty expensive.

Way too expensive for anyone to want to buy. Not enough sales on existing items to make anyone want to submit. Hope it works out though, but for the meantime I'll stick to codecanyon/themeforest.
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 12, 2013, 08:02:41 PM
#64
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca We also have a competition going for best bitcoin tool Smiley

Your site is a marketplace for scripts? They are pretty expensive.
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 12, 2013, 08:02:14 PM
#63
I'll let you know how I get on, once someone reaches my 70,000 satoshi threshold  Cool

Thats quite high. Many people probably wont favor yours over others.
member
Activity: 98
Merit: 10
December 12, 2013, 04:11:36 PM
#62
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca We also have a competition going for best bitcoin tool Smiley
sr. member
Activity: 434
Merit: 250
December 09, 2013, 08:58:45 PM
#61
I'll let you know how I get on, once someone reaches my 70,000 satoshi threshold  Cool
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 09, 2013, 06:25:33 PM
#60
A note on this that took me ages to figure out: script requires PHP 5.3 or newer.
Tried running it on 5.2 and could figure out why it wasnt working, upgraded PHP and it's working Smiley
added a php version checking, so others will know easy if they has same error.

I have updated the code on my site, it now accepts emails and btc however when sending from one coinbase to another coinbase I still receive the fee required error. I thought coinbase to coinbase was supposed to be free? Any thoughts?



This is what I was talking about in an early post. I also get the same error! Any ideas why?
i tested with coinbase i can send 0.00001 btc from coinbase to coinbase account without fee. I will test to send to external account too. bitcoind test will be soon.
But i hasnt blockchain account, so that i cannot test Sad



Coinbase to coinbase used to work fine for me but recently stopped.
full member
Activity: 168
Merit: 100
December 09, 2013, 04:29:40 PM
#59
Coinbase too coinbase is working fine, atleast onmy site it has done multiple payouts.
(im still running an older version tho)

Hope for some good updates on this with support for sending too other wallets too, its an great script.
hero member
Activity: 525
Merit: 529
December 09, 2013, 03:15:40 PM
#58
A note on this that took me ages to figure out: script requires PHP 5.3 or newer.
Tried running it on 5.2 and could figure out why it wasnt working, upgraded PHP and it's working Smiley
added a php version checking, so others will know easy if they has same error.

I have updated the code on my site, it now accepts emails and btc however when sending from one coinbase to another coinbase I still receive the fee required error. I thought coinbase to coinbase was supposed to be free? Any thoughts?



This is what I was talking about in an early post. I also get the same error! Any ideas why?
i tested with coinbase i can send 0.00001 btc from coinbase to coinbase account without fee. I will test to send to external account too. bitcoind test will be soon.
But i hasnt blockchain account, so that i cannot test Sad

sr. member
Activity: 434
Merit: 250
December 07, 2013, 07:56:06 PM
#57
Also I have been trying to figure out a way to post the current number of dispenses with a sql query for total rows. Any thoughts on this?

The SQL would be:
Code:
SELECT COUNT(id) AS `total` FROM `dispenses`
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 06, 2013, 08:19:06 PM
#56
Also I have been trying to figure out a way to post the current number of dispenses with a sql query for total rows. Any thoughts on this?

If you have phpmyadmin then it should be very easy (assuming each dispense has an id). Just use the UI to go to the last page. If not then your sql query should be something like this:

Code:
SELECT *
FROM table
ORDER BY `ID` DESC
LIMIT 1;

This is how it goes on my custom made faucet but it should be similar to this.
hero member
Activity: 806
Merit: 1000
COINMIXER.NET
December 06, 2013, 06:29:53 PM
#55
Also I have been trying to figure out a way to post the current number of dispenses with a sql query for total rows. Any thoughts on this?
sr. member
Activity: 434
Merit: 250
December 06, 2013, 12:40:23 PM
#54
A note on this that took me ages to figure out: script requires PHP 5.3 or newer.
Tried running it on 5.2 and could figure out why it wasnt working, upgraded PHP and it's working Smiley
legendary
Activity: 1092
Merit: 1000
nahtnam.com
December 05, 2013, 09:32:57 PM
#53
I have updated the code on my site, it now accepts emails and btc however when sending from one coinbase to another coinbase I still receive the fee required error. I thought coinbase to coinbase was supposed to be free? Any thoughts?



This is what I was talking about in an early post. I also get the same error! Any ideas why?
legendary
Activity: 1036
Merit: 1000
December 05, 2013, 04:05:58 PM
#52
Maybe u can help with installation of this? I can't get it to work

I can help you its easy for me. Cheesy
full member
Activity: 179
Merit: 100
December 05, 2013, 02:43:10 PM
#51
Maybe u can help with installation of this? I can't get it to work
Pages:
Jump to: