Bitcoin Forum
May 25, 2024, 10:09:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »  All
  Print  
Author Topic: MiniFaucet Script (a MyFaucet replacement)  (Read 51971 times)
elbandi (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 529


View Profile
November 18, 2013, 03:37:13 PM
 #21

Rewrote is complete. See the first comment.
nahtnam
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


nahtnam.com


View Profile WWW
November 18, 2013, 04:59:49 PM
 #22

Rewrote is complete. See the first comment.

Did you update the demo site as well?

Martijnvdc
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
November 18, 2013, 09:31:31 PM
 #23

Hello,

Thank you very much for this!
I've installed your script on a server of mine.
I found two problems:
- There's no referral system.
- There's no structure.sql file on your gitorious
elbandi (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 529


View Profile
November 19, 2013, 02:08:00 AM
 #24

Rewrote is complete. See the first comment.

Did you update the demo site as well?
yes, because demo site is the test-before-commit site.

Hello,

Thank you very much for this!
I've installed your script on a server of mine.
I found two problems:
- There's no referral system.
- There's no structure.sql file on your gitorious
I forgot to commit the cashout code, and i fixed the referrals stuff too. upgrade your site!
nahtnam
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


nahtnam.com


View Profile WWW
November 19, 2013, 02:11:10 AM
 #25

Rewrote is complete. See the first comment.

Did you update the demo site as well?
yes, because demo site is the test-before-commit site.

Hello,

Thank you very much for this!
I've installed your script on a server of mine.
I found two problems:
- There's no referral system.
- There's no structure.sql file on your gitorious
I forgot to commit the cashout code, and i fixed the referrals stuff too. upgrade your site!

Congrats. I had thought of making my code public but decided against it. I am the creator of the first (original) coinbase faucet.

elbandi (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 529


View Profile
November 22, 2013, 12:09:58 PM
 #26

I added support to blockchain online wallet.
Martijnvdc
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
November 22, 2013, 02:28:32 PM
 #27

I added support to blockchain online wallet.

That's awesome! I'll test it tonight!
Are payouts grouped to lower the transactions fees?
KoningKaas
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
November 23, 2013, 01:52:08 AM
 #28

I dont think it's got grouped payments atm, this will mean a lot of transaction fee's.

Currently using Coinbase with it and it works fine, but it doesnt accept coinbase emails which would make it a bit more user friendly.

Thanks elbandi, keep up the good work!
Martijnvdc
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
November 23, 2013, 10:09:36 AM
 #29

I dont think it's got grouped payments atm, this will mean a lot of transaction fee's.

Currently using Coinbase with it and it works fine, but it doesnt accept coinbase emails which would make it a bit more user friendly.

Thanks elbandi, keep up the good work!
You can make it work with coinbase emails by simply removing the address-checking code. It checks if the address is valid, so you can't enter an email address.
irequirefilth
Newbie
*
Offline Offline

Activity: 15
Merit: 0


View Profile
November 23, 2013, 03:33:05 PM
 #30

Yo just wanna ask, how can i add a custom page? I tried adding one, used the about.php template but it's not working. BTW your script is awesome.
KoningKaas
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
November 23, 2013, 07:05:08 PM
 #31

I dont think it's got grouped payments atm, this will mean a lot of transaction fee's.

Currently using Coinbase with it and it works fine, but it doesnt accept coinbase emails which would make it a bit more user friendly.

Thanks elbandi, keep up the good work!
You can make it work with coinbase emails by simply removing the address-checking code. It checks if the address is valid, so you can't enter an email address.

Hmm i might try that out ill hack&slash the code and see if it works, thanks for the idea.
elbandi (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 529


View Profile
November 24, 2013, 11:24:46 PM
 #32

Currently using Coinbase with it and it works fine, but it doesnt accept coinbase emails which would make it a bit more user friendly.
You can remove the address check if (!checkAddress($address)), then it accepts anything including email as address. But i don't see, what advantage is over the btc address. Rather cons: what if you email doesn't exists? Your money remains, but the users are unhappy. You can use only with coinbase addresses. etc.


Are payouts grouped to lower the transactions fees?
No payout are paid by user request. so if the user's claim is reached the min level, he can request the paid. but he can wait to claim any BTC, and then request the payout.

Grouping the payouts is a complex. in cb/bc transaction more than 0.01BTC are 0 fee. so need to collect payouts to higher than 0.01BTC. Do you want to make a bounty? Cheesy

Yo just wanna ask, how can i add a custom page? I tried adding one, used the about.php template but it's not working. BTW your script is awesome.
The code is using Slim Framework. So new page is easy:

  • add the new url "controller" to index.php
Code:
$app->get("/url", function () use ($app) {
    $app->render('templatefile.php', array('title' => 'Page title'));
})->name('own_internal_name');
  • make a file templatefile.php to template dir (eg. copy the about.php content)
  • add the link somewhere in other template
Code:
<a href="<?php echo urlFor("own_internal_name"); ?>">click here</a>
    [/li]
f87654321
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 25, 2013, 09:33:47 AM
 #33

when you try get paid to coinbase address then it works.
but when you use other aadress this happens: http://gyazo.com/bb84f4a30f8c5054fe9e645e75736cda

also, yesterday when I installed this script it worked (with coinbase aadress), but today it shows server balance 0 satoshis, although the actual balance is is 130k satoshis and can`t cashout with coinbase aadress (An error has occured - Status code 403).

so right now it is not useful.
f87654321
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
November 26, 2013, 08:45:32 AM
 #34

Interesting. Today it works again with coinbase addresses.
Maybe this error was related to web hosting.
BitcoinFr34k
Hero Member
*****
Offline Offline

Activity: 504
Merit: 500




View Profile
November 26, 2013, 08:52:34 AM
 #35

I might use this. Good job guys!
elbandi (OP)
Hero Member
*****
Offline Offline

Activity: 525
Merit: 529


View Profile
November 27, 2013, 04:19:29 PM
 #36

If someone need: from now, bitcoind can be used as wallet manager too.
KoningKaas
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
November 27, 2013, 04:25:32 PM
 #37

Nice , well if we can make a bounty with everybody so this gets blockchain grouped payments support, im in!
I just have mostly altcoins, not really much BTC/LTC.
HotSwap
Hero Member
*****
Offline Offline

Activity: 806
Merit: 1000


COINMIXER.NET


View Profile
December 03, 2013, 08:46:24 PM
 #38

Hey Elbandi I have been using this since you released it and have just started to have some issues with both coinbase and blockchain.

currenty i get this error with coinbase enabled:

"An error has occured - This transaction requires a 0.0002 fee to be accepted by the bitcoin network. Do you want to add it? (This fee does not go to Coinbase.)"

Then I switched to Blockchain and get this weird error:

"An error has occured - com.google.bitcoin.core.AddressFormatException: Checksum does not validate"

any thoughts?

Thanks!

High Volume, Secure Bitcoin Mixer: https://CoinMixer.net
nahtnam
Legendary
*
Offline Offline

Activity: 1092
Merit: 1000


nahtnam.com


View Profile WWW
December 03, 2013, 10:43:42 PM
 #39

Hey Elbandi I have been using this since you released it and have just started to have some issues with both coinbase and blockchain.

currenty i get this error with coinbase enabled:

"An error has occured - This transaction requires a 0.0002 fee to be accepted by the bitcoin network. Do you want to add it? (This fee does not go to Coinbase.)"

Then I switched to Blockchain and get this weird error:

"An error has occured - com.google.bitcoin.core.AddressFormatException: Checksum does not validate"

any thoughts?

Thanks!

Although I don't use your script, I get the same error... What are your thoughts? BTW I'm talking about the coinbase error...

Martijnvdc
Sr. Member
****
Offline Offline

Activity: 322
Merit: 250


View Profile
December 04, 2013, 08:15:05 AM
 #40

Hey Elbandi I have been using this since you released it and have just started to have some issues with both coinbase and blockchain.

currenty i get this error with coinbase enabled:

"An error has occured - This transaction requires a 0.0002 fee to be accepted by the bitcoin network. Do you want to add it? (This fee does not go to Coinbase.)"

Then I switched to Blockchain and get this weird error:

"An error has occured - com.google.bitcoin.core.AddressFormatException: Checksum does not validate"

any thoughts?

Thanks!

Although I don't use your script, I get the same error... What are your thoughts? BTW I'm talking about the coinbase error...

This is a known issue. You can't send to non-coinbase unless a transaction fee is added.
Also, it wouldn't be economically feasable to send to just one address, because the fees would be bigger than the payout. Microtransactions need to be grouped
Pages: « 1 [2] 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!