Bitcoin Forum

Bitcoin => Project Development => Topic started by: elbandi on November 14, 2013, 02:09:33 PM



Title: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 14, 2013, 02:09:33 PM
hi,

I rewrote the myfaucet script from scratch‎. It's using Slim Framework (http://www.slimframework.com/) and official sdk libraries for wallet providers.

Here is the source: https://gitlab.com/minifaucet/public

DB is backward compatible, so only need to replace the files (except config.php*). If you found a bug, report to this thread.

* config.php is such as myfaucet, but better if you migrate the config, because new feautres need configs too.

Multiple wallet provider

  • coinbase.com (https://www.coinbase.com)
  • Blockchain.info (https://blockchain.info)
  • FaucetBOX.com (https://faucetbox.com)
  • Xapo (https://xapo.com/) (balance display not working)
  • own bitcoin daemon somewhere (https://bitcoin.org/en/choose-your-wallet)

Demo site

Here is a demo site: http://minifaucet.tk/

Upgrade

Just upload the files from downloaded zip.
Note: if you have own modifications, you have to port your changes to the new code.

Upgrade warning from 0.2: allowBTC config parameter is renamed, you have to edit your config!
Upgrade warning from 0.5: import upgrade_0.6.sql file to database (or run the three ALTER TABLE commands in mysql database client)

License

MIT license (http://opensource.org/licenses/MIT)

Donations

They are welcome: 1NaYg9L5KxL3hSAB9qeWaBHrSunkY3eNBo :D

elbandi


Title: Re: Coinbase MyFaucet Script
Post by: lucaspm98 on November 14, 2013, 02:10:37 PM
Is the demo functional/paying or just an example?


Title: Re: Coinbase MyFaucet Script
Post by: Maidak on November 14, 2013, 02:30:16 PM
Have you ever had any issues with coinbase api just stop working? I had it setup where it would work then just stop after 4-6 hours.


Title: Re: Coinbase MyFaucet Script
Post by: Martijnvdc on November 14, 2013, 02:39:27 PM
Bam! you beat me to it! I hadn't had the time yet.
I'll check it out tonight!


Title: Re: Coinbase MyFaucet Script
Post by: Boelens on November 14, 2013, 04:25:01 PM
Interesting, this could be of use for the DP faucet. How does this work? Do people need a Coinbase account?


Title: Re: Coinbase MyFaucet Script
Post by: Martijnvdc on November 14, 2013, 06:28:09 PM
Hello.

You guys can test my faucet here:
http://freebtcfaucet.x10.mx (http://freebtcfaucet.x10.mx)

EDIT: it now works with both coinbase email addresses and coinbase btc addresses.

ALSO:
if you get a 503 error, this is MY SERVER's fault and not this script...
Just press F5 and resend the information. :)

If you want to test the cashout, reply in this thread and i'll give your adress a 20k satoshi balance. (please send it back afterwards though, send to: 1AX5pcN5GsvPcsrDisj8GSX1B5VecDoKBb)



Title: Re: Coinbase MyFaucet Script
Post by: JollemFt on November 14, 2013, 11:05:39 PM
nice one it works great, just checked it thanks a lot.


Title: Re: Coinbase MyFaucet Script
Post by: JollemFt on November 14, 2013, 11:13:55 PM
why it shows that error http://gyazo.com/f828f4739d064e624c86869914f312ed (http://gyazo.com/f828f4739d064e624c86869914f312ed)


Title: Re: Coinbase MyFaucet Script
Post by: elbandi on November 14, 2013, 11:36:54 PM
Is the demo functional/paying or just an example?
It's example yet, but later will be normal faucet.

Have you ever had any issues with coinbase api just stop working? I had it setup where it would work then just stop after 4-6 hours.
It's using the official (https://coinbase.com/docs/api/libraries) php library, so if the library is working good, this also works too.

why it shows that error http://gyazo.com/f828f4739d064e624c86869914f312ed (http://gyazo.com/f828f4739d064e624c86869914f312ed)
You have to set the file permission on that file to 777. (some ftp client can do that, or if you have shell use chmod 777 balance.txt)


Title: Re: Coinbase MyFaucet Script
Post by: HotSwap on November 15, 2013, 09:44:30 AM
Ha wish I would have saw this earlier, I just finally got a blockchain one running... But I like the coinbase no transaction fees! I might have to switch back.


Title: Re: Coinbase MyFaucet Script
Post by: Martijnvdc on November 15, 2013, 09:51:52 AM
See this thread:
https://bitcointalk.org/index.php?topic=334391.0 (https://bitcointalk.org/index.php?topic=334391.0)
TradeFortress contacted me about the license of MyFaucet.


Title: Re: Coinbase MyFaucet Script
Post by: bitcoinwheel on November 15, 2013, 10:22:13 AM
See this thread:
https://bitcointalk.org/index.php?topic=334391.0 (https://bitcointalk.org/index.php?topic=334391.0)
TradeFortress contacted me about the license of MyFaucet.

fuck him! use that script all you want please do not let him scare you like that, he will not take any legal action and cannot because he stole a million dollars so we can fuck him up too.. can you send me the working script because I will make 10 more sites with his script so he can cry all he wants


Title: Re: Coinbase MyFaucet Script
Post by: meta on November 15, 2013, 06:49:24 PM
Hey elbandi,

can you please patch your fork?

faucet.php line 49 should be
Code:
$getAmount = $rewards[rand(0, count($rewards)-1)]

More information can be found in this thread (https://bitcointalk.org/index.php?topic=252135.msg3594085#msg3594085)

http://picload.org/thumbnail/oilroll/bad.png (http://picload.org/image/oilroll/bad.png)


Title: Re: Coinbase MyFaucet Script
Post by: Martijnvdc on November 15, 2013, 07:03:46 PM
Hey elbandi,

can you please patch your code?

faucet.php line 49 should be
Code:
$getAmount = $rewards[rand(0, count($rewards)-1)]

More information can be found in this thread (https://bitcointalk.org/index.php?topic=252135.msg3594085#msg3594085)

http://picload.org/thumbnail/oilroll/bad.png (http://picload.org/image/oilroll/bad.png)

See https://bitcointalk.org/index.php?topic=334391.0 (https://bitcointalk.org/index.php?topic=334391.0)


Title: Re: Coinbase MyFaucet Script
Post by: elbandi on November 15, 2013, 07:25:56 PM
TradeFortress (https://inputs.io/) send me a pm:

Quote
Hi,

As the copyright holder of MyFaucet, I'm requesting taking down your modification of MyFaucet for coinbase. MyFaucet is not open source software, and you do not have the right to modify it, nor distribute modified versions. I would recommend taking it down before exhausting both of our time, gitorious.org's time, and any host of MyFaucet software's time with legal boilerplate forms.

So i remove the code. But stay turned, this will be rewritten soon.

Elbandi


Title: Re: Coinbase MyFaucet Script
Post by: Martijnvdc on November 15, 2013, 07:30:16 PM
TradeFortress (https://inputs.io/) send me a pm:

Quote
Hi,

As the copyright holder of MyFaucet, I'm requesting taking down your modification of MyFaucet for coinbase. MyFaucet is not open source software, and you do not have the right to modify it, nor distribute modified versions. I would recommend taking it down before exhausting both of our time, gitorious.org's time, and any host of MyFaucet software's time with legal boilerplate forms.

So i remove the code. But stay turned, this will be rewritten soon.

Elbandi

Great! :)
I can help you, if you like. Are you planning on making it GPL?


Title: Re: Coinbase MyFaucet Script
Post by: nahtnam on November 15, 2013, 11:39:40 PM
Have you ever had any issues with coinbase api just stop working? I had it setup where it would work then just stop after 4-6 hours.

Thats coinbases API! :P


Title: Re: Coinbase MyFaucet Script
Post by: Maidak on November 16, 2013, 07:21:21 AM
Have you ever had any issues with coinbase api just stop working? I had it setup where it would work then just stop after 4-6 hours.

Thats coinbases API! :P

Really? I haven't heard a response yet from them by email, but thats pretty pathetic in itself, for a company that is suppose to have 0 tx fees sending satoshis at a time... Well thanks for the info nahtnam hopefully they fix this up.


Title: Re: Coinbase MyFaucet Script
Post by: nahtnam on November 16, 2013, 08:07:40 AM
TF doesn't have any copyright to that software. He didn't say a license agreement with that software so technically he has no case. He can try to prove that he created before you, but that would be next to impossible. He really needs to learn the law especially after taking $1 million.

Otherwise send me the code I be more than happy to host it on my github and I would love to get a letter from him, which my lawyer would be more than happy to explain to him, how he has no copyright to that software and that he can sue me.

Just want to put it out there that you will loose. By the international copyright act thing states that you can copyright any original work which he had done. Also I'm sure he had some nice lawyers.


Title: Re: Coinbase MyFaucet Script
Post by: nahtnam on November 16, 2013, 08:08:45 AM
Have you ever had any issues with coinbase api just stop working? I had it setup where it would work then just stop after 4-6 hours.

Thats coinbases API! :P

Really? I haven't heard a response yet from them by email, but thats pretty pathetic in itself, for a company that is suppose to have 0 tx fees sending satoshis at a time... Well thanks for the info nahtnam hopefully they fix this up.

Well what exactly are you having any issues with?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 18, 2013, 03:37:13 PM
Rewrote is complete. See the first comment.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on November 18, 2013, 04:59:49 PM
Rewrote is complete. See the first comment.

Did you update the demo site as well?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on November 18, 2013, 09:31:31 PM
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


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 19, 2013, 02:08:00 AM
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!


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on November 19, 2013, 02:11:10 AM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 22, 2013, 12:09:58 PM
I added support to blockchain online wallet.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on November 22, 2013, 02:28:32 PM
I added support to blockchain online wallet.

That's awesome! I'll test it tonight!
Are payouts grouped to lower the transactions fees?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on November 23, 2013, 01:52:08 AM
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!


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on November 23, 2013, 10:09:36 AM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: irequirefilth on November 23, 2013, 03:33:05 PM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on November 23, 2013, 07:05:08 PM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 24, 2013, 11:24:46 PM
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? :D

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 (http://www.slimframework.com/). 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]


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: f87654321 on November 25, 2013, 09:33:47 AM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: f87654321 on November 26, 2013, 08:45:32 AM
Interesting. Today it works again with coinbase addresses.
Maybe this error was related to web hosting.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: BitcoinFr34k on November 26, 2013, 08:52:34 AM
I might use this. Good job guys!


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 27, 2013, 04:19:29 PM
If someone need: from now, bitcoind can be used as wallet manager too.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on November 27, 2013, 04:25:32 PM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 03, 2013, 08:46:24 PM
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!


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 03, 2013, 10:43:42 PM
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...


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on December 04, 2013, 08:15:05 AM
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


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 04, 2013, 09:47:09 AM
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.)"
coinbase doc say:
Code:
Coinbase pays transaction fees on payments greater than or equal to 0.01 BTC. But for smaller amounts you may want to add your own amount. Fees can be added as a string, such as ‘0.0005’.
so you can raise the cashout limit to 0.01btc, but users will be angry...
I will add a code, if coinbase return this error, faucet try to send the money with the fee.

(grouping the cashout need lots of work, I do not know when can i do it.)

Then I switched to Blockchain and get this weird error:

"An error has occured - com.google.bitcoin.core.AddressFormatException: Checksum does not validate"
I think this address is invalid. It's misspelled.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 04, 2013, 09:55:01 AM
I was able to fix the blockchain, looks like you accidentally dropped an extra "a" in the payout script.

And yea I dont want to have to payout all those fees! Ha I guess for now I will offer to manually transfer addresses.


Thanks again for your work!


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 04, 2013, 12:11:04 PM
Could anyone tell me how to add the option to use coinbase email address instead of BTC?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on December 04, 2013, 12:17:11 PM
Could anyone tell me how to add the option to use coinbase email address instead of BTC?
yes, you can simply remove the code that checks if the address is a valid bitcoin address. Just make it always return true. I'll give you example code when i get home tonight.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 04, 2013, 04:43:13 PM
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.)"
coinbase doc say:
Code:
Coinbase pays transaction fees on payments greater than or equal to 0.01 BTC. But for smaller amounts you may want to add your own amount. Fees can be added as a string, such as ‘0.0005’.
so you can raise the cashout limit to 0.01btc, but users will be angry...
I will add a code, if coinbase return this error, faucet try to send the money with the fee.

(grouping the cashout need lots of work, I do not know when can i do it.)

Then I switched to Blockchain and get this weird error:

"An error has occured - com.google.bitcoin.core.AddressFormatException: Checksum does not validate"
I think this address is invalid. It's misspelled.

So this is an exact replica of my faucet where you have to reach x amount of btc before cashing out?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: Martijnvdc on December 04, 2013, 04:58:39 PM
So this is an exact replica of my faucet where you have to reach x amount of btc before cashing out?
Exact replica? What the f*ck are you talking about?
It's a faucet... With delayed payouts... Like all of the others.
This faucet is FREE unlike yours.
Also, you're 14 years old, so your paypal account is illegal. And you're gambling on primedice and just-dice, which is also illegal at your age...


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 04, 2013, 11:10:25 PM
Could anyone tell me how to add the option to use coinbase email address instead of BTC?
yes, you can simply remove the code that checks if the address is a valid bitcoin address. Just make it always return true. I'll give you example code when i get home tonight.
That would be great, I have tried to find the right piece but everything I change just breaks the site.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 05, 2013, 12:23:09 AM
So this is an exact replica of my faucet where you have to reach x amount of btc before cashing out?
Exact replica? What the f*ck are you talking about?
It's a faucet... With delayed payouts... Like all of the others.
This faucet is FREE unlike yours.
Also, you're 14 years old, so your paypal account is illegal. And you're gambling on primedice and just-dice, which is also illegal at your age...

Im talking about myfaucet as in what tradefortress gave out... Also I thought that it was instant payout and just realized that it was not.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 05, 2013, 12:52:13 AM
I was able to fix the blockchain, looks like you accidentally dropped an extra "a" in the payout script.
Uh, thats a typo in the code... fixed.

Could anyone tell me how to add the option to use coinbase email address instead of BTC?
upgrade the source and the config: from now, you can configure, what are you accept as address: email or btc


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 05, 2013, 08:11:38 AM
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?



Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: tautvilis on December 05, 2013, 06:43:10 PM
Maybe u can help with installation of this? I can't get it to work


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: niktitan132 on December 05, 2013, 08:05:58 PM
Maybe u can help with installation of this? I can't get it to work

I can help you its easy for me. :D


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 06, 2013, 01:32:57 AM
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?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on December 06, 2013, 04:40:23 PM
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 :)


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on December 06, 2013, 10:29:53 PM
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?


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 07, 2013, 12:19:06 AM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on December 07, 2013, 11:56:06 PM
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`


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 09, 2013, 07:15:40 PM
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 :)
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 :(



Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on December 09, 2013, 08:29:40 PM
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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 09, 2013, 10:25:33 PM
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 :)
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 :(



Coinbase to coinbase used to work fine for me but recently stopped.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on December 10, 2013, 12:58:45 AM
I'll let you know how I get on, once someone reaches my 70,000 satoshi threshold  8)


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: joeroxor on December 12, 2013, 08:11:36 PM
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca (http://www.bitorca.com) We also have a competition going for best bitcoin tool :)


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 13, 2013, 12:02:14 AM
I'll let you know how I get on, once someone reaches my 70,000 satoshi threshold  8)

Thats quite high. Many people probably wont favor yours over others.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 13, 2013, 12:02:41 AM
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca (http://www.bitorca.com) We also have a competition going for best bitcoin tool :)

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


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on December 13, 2013, 12:17:05 PM
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca (http://www.bitorca.com) We also have a competition going for best bitcoin tool :)

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.


Title: Re: Coinbase MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 14, 2013, 01:16:13 AM
Nice faucet! If you have any other projects you would like to sell for Bitcoin, check out BitOrca (http://www.bitorca.com) We also have a competition going for best bitcoin tool :)

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... ;D Then I realize that it doesnt look how I want it to and remake it my self.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 27, 2013, 08:06:11 PM
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  :D)

if you upgrade, you sould migrate the config!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: niktitan132 on December 27, 2013, 08:14:20 PM
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  :D)

if you upgrade, you sould migrate the config!

Great upgrade ;D
Will test,soon :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 27, 2013, 09:05:16 PM
New version is public!
the main new features is altcoin support (btc, ltc, nmc, nvc, ppc, wdc, doge  :D)

if you upgrade, you sould migrate the config!

Great upgrade ;D
Will test,soon :)

You have to setup a daemon for this?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on December 27, 2013, 09:30:08 PM
Will try the new version tonight on one of my faucets. By the way, your demo site is down.



Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 27, 2013, 09:37:30 PM
Yep.

Code:
SQL error: Access denied for user 'your_user'@'localhost' (using password: YES)

Could you also put it on github because a lot of people have the github app installed and its much easier to pull or clone.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 28, 2013, 01:43:39 AM
There was a bug (https://gitorious.org/elbandi/minifaucet/commit/4c2e695f4385263229dc1460e41a2fd089ae0b61) in 0.3, so i have to release a new 0.4. In exchange for, admin page gets a statistics table.

By the way, your demo site is down.
i missed the demo config.

You have to setup a daemon for this?
Coinbase/Blockchain.info dont support altcoin, so you have to run a daemon.
I dont know good altcoin online wallet.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 28, 2013, 02:50:06 AM
There was a bug (https://gitorious.org/elbandi/minifaucet/commit/4c2e695f4385263229dc1460e41a2fd089ae0b61) in 0.3, so i have to release a new 0.4. In exchange for, admin page gets a statistics table.

By the way, your demo site is down.
i missed the demo config.

You have to setup a daemon for this?
Coinbase/Blockchain.info dont support altcoin, so you have to run a daemon.
I dont know good altcoin online wallet.


There is this: https://mywl.lt/ (https://mywl.lt/) but there is no api. There would be a way you can do alt coin faucets without a daemon but its pretty stupid. You generate a lot of addresses and send some coin to it. Then giveaway the private keys. <- Its stupid but it works :D


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: juliank32g on December 28, 2013, 09:02:48 AM
noob alert

can anyone explain me how to change this for dogecoin  ??? ??? ???

thanks in advance


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on December 28, 2013, 12:51:33 PM
Great script, been using this one for a while now using Coinbase and it's still fully working.

Also how do you guys add extra pages, i can make extra pages but the Page Title wont show in the browser.
(the explanation given somewhere on the first pages doesnt work for it)

Other than that , keep up the great work its a good script.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on December 28, 2013, 07:08:56 PM
noob alert

can anyone explain me how to change this for dogecoin  ??? ??? ???

thanks in advance

You have to download and setup the daemon. Its not as easy/cheap as you think.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on December 28, 2013, 08:46:44 PM
There's going to be another alternative soon ;)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on December 31, 2013, 05:22:36 PM
Anyone else having problems with Coinbase API not working anymore?
I tried refreshing the API Key too no avail


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 02, 2014, 04:43:35 PM
Hi,

New version:
  • admin page summary
  • manual upgrade server balance at admin page
  • mooncoin support :P


Anyone else having problems with Coinbase API not working anymore?
I tried refreshing the API Key too no avail
Is print some errors or anything?

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 02, 2014, 05:12:08 PM
My users are mailing me (even though it's a coinbase addresss) :

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.)

I tried a new API key but it's not working, but im still trying some things out to get it working again.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 02, 2014, 05:33:16 PM
Hi,

Code:
// transaction fee in satoshis
$fee = 20000;

Did you setup it?

you need that, because:

Quote
Optional transaction fee if you would like to pay it. Coinbase pays transaction fees on payments greater than or equal to 0.01 BTC. But for smaller amounts you may want to add your own amount. Fees can be added as a string, such as ‘0.0005’.

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 02, 2014, 06:16:42 PM
Wasnt Coinbase supposed to be offchain and so no fee's were needed? [only coinbase > coinbase]

If i have to send 20k fee's for every 20k payout it's not really worth it  :P


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 02, 2014, 06:57:12 PM
Anyone else having problems with Coinbase API not working anymore?
I tried refreshing the API Key too no avail

Its nothing to do with the code. Its just that coinbase api sucks. I have my own custom coded faucet and it stops working every now and then.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 02, 2014, 06:58:16 PM
Wasnt Coinbase supposed to be offchain and so no fee's were needed? [only coinbase > coinbase]

If i have to send 20k fee's for every 20k payout it's not really worth it  :P

Coinbase started glitching out. Contact support and see what they can do. Theoretically you shouldnt be paying anything but I think that some security system is firing off because you are sending a lot more transactions than more people.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 02, 2014, 06:59:51 PM
Hi,

Code:
// transaction fee in satoshis
$fee = 20000;

Did you setup it?

you need that, because:

Quote
Optional transaction fee if you would like to pay it. Coinbase pays transaction fees on payments greater than or equal to 0.01 BTC. But for smaller amounts you may want to add your own amount. Fees can be added as a string, such as ‘0.0005’.

Elbandi

No need. Its nothing to do with your code. Its all to do with the coinbase api being really buggy.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 02, 2014, 07:35:57 PM
Wasnt Coinbase supposed to be offchain and so no fee's were needed? [only coinbase > coinbase]

If i have to send 20k fee's for every 20k payout it's not really worth it  :P

Coinbase started glitching out. Contact support and see what they can do. Theoretically you shouldnt be paying anything but I think that some security system is firing off because you are sending a lot more transactions than more people.

Thanks, they're support desk is buggy as hell too but i send em an email too support@coinbase.com just to be sure too.
Hope they can fix it


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 02, 2014, 07:39:17 PM
Wasnt Coinbase supposed to be offchain and so no fee's were needed? [only coinbase > coinbase]

If i have to send 20k fee's for every 20k payout it's not really worth it  :P

Coinbase started glitching out. Contact support and see what they can do. Theoretically you shouldnt be paying anything but I think that some security system is firing off because you are sending a lot more transactions than more people.

Thanks, they're support desk is buggy as hell too but i send em an email too support@coinbase.com just to be sure too.
Hope they can fix it

Their support desk isnt that buggy. Its just that the support team is VERYYYYY slow.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 02, 2014, 09:20:30 PM
No need. Its nothing to do with your code. Its all to do with the coinbase api being really buggy.
Ah, thx.

then if coinbase is still wrong, time to switch somewhere else... :)

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 02, 2014, 09:27:37 PM
No need. Its nothing to do with your code. Its all to do with the coinbase api being really buggy.
Ah, thx.

then if coinbase is still wrong, time to switch somewhere else... :)

Elbandi

Yeah. Try to implement this: https://www.microwallet.org/ (https://www.microwallet.org/)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 04, 2014, 05:45:50 PM
Guys how do we install this? I've made a new database and set up config.php (chosen coinbase) but when I navigate to it on chrome nothing is shown.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 04, 2014, 09:33:37 PM
Guys how do we install this? I've made a new database and set up config.php (chosen coinbase) but when I navigate to it on chrome nothing is shown.
if you can, check the webserver log. if you see something: .htaccess: RewriteEngine not allowed here, you have to setup allowoverride (http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache).

Or, set this:
Code:
error_reporting(0);
to:
Code:
error_reporting(E_ALL);

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 04, 2014, 10:07:40 PM
Guys how do we install this? I've made a new database and set up config.php (chosen coinbase) but when I navigate to it on chrome nothing is shown.
if you can, check the webserver log. if you see something: .htaccess: RewriteEngine not allowed here, you have to setup allowoverride (http://askubuntu.com/questions/48362/how-to-enable-mod-rewrite-in-apache).

Or, set this:
Code:
error_reporting(0);
to:
Code:
error_reporting(E_ALL);

Elbandi

Make sure you put

Code:
error_reporting(E_ALL);

on the top of the page. (not the bottom :D)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 05, 2014, 12:38:16 AM
You guys are amazing, thank you it's working fine now!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on January 05, 2014, 02:24:06 AM
No need. Its nothing to do with your code. Its all to do with the coinbase api being really buggy.
Ah, thx.

then if coinbase is still wrong, time to switch somewhere else... :)

Elbandi

Yeah. Try to implement this: https://www.microwallet.org/ (https://www.microwallet.org/)

Yeah I've had to port all of my faucets over to microwallet. Too many problems with this script.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 05, 2014, 02:28:29 AM
No need. Its nothing to do with your code. Its all to do with the coinbase api being really buggy.
Ah, thx.

then if coinbase is still wrong, time to switch somewhere else... :)

Elbandi

Yeah. Try to implement this: https://www.microwallet.org/ (https://www.microwallet.org/)

Yeah I've had to port all of my faucets over to microwallet. Too many problems with this script.

There are issue with everything. Life is not perfect. Sooner or later youll find a problem with that. Coinbase API sucks blockchain doesnt allow anything under the limit. Bla bla bla, you get the point. Microwallet is php only, there are only 3 basic things you can do...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 05, 2014, 12:23:49 PM
Eeeum how do you import structure.sql on ssh (ubuntu) I've uploaded everything in a map (faucet) in home directory (/var/www).

Thanks in advance!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 05, 2014, 12:35:08 PM
Eeeum how do you import structure.sql on ssh (ubuntu) I've uploaded everything in a map (faucet) in home directory (/var/www).

Thanks in advance!

You use phpmyadmin for that


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 05, 2014, 02:30:22 PM
I don't use that as it can become a security weakness, anyone knows how to do this in ssh on ubuntu?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 05, 2014, 02:36:59 PM
I don't use that as it can become a security weakness, anyone knows how to do this in ssh on ubuntu?
Googling : how to add mysql from ssh gave me this
http://vps2.me/create-mysql-database-with-ssh-command/


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 05, 2014, 03:21:45 PM
I don't use that as it can become a security weakness, anyone knows how to do this in ssh on ubuntu?
Googling : how to add mysql from ssh gave me this
http://vps2.me/create-mysql-database-with-ssh-command/


Thank you, I've created a mysql database already with that same post. xD

I only have to import structure.sql now, I've used this command mysql -u <user> -p <dbmame> < structure.sql but it didn't work.

Btw, I've seen an usefull link on your profile, I would like to mine an alt coin with a vps, I've followed this guide: http://blog.kvvs.nl/?p=13.

But i'm not quite sure how to do this for an alt coin based on litecoin, could you help me with this? :3

my email is: hakan.wnme@gmail.com and my skype is: hakan.wnme@live.com


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 05, 2014, 07:25:46 PM
Eeeum how do you import structure.sql on ssh (ubuntu) I've uploaded everything in a map (faucet) in home directory (/var/www).

Thanks in advance!

You use phpmyadmin for that

Those who want to use it can use the tutorial I wrote up. https://gist.github.com/nahtnam/8092251 (https://gist.github.com/nahtnam/8092251)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 05, 2014, 07:28:34 PM
I don't use that as it can become a security weakness, anyone knows how to do this in ssh on ubuntu?
Googling : how to add mysql from ssh gave me this
http://vps2.me/create-mysql-database-with-ssh-command/


Thank you, I've created a mysql database already with that same post. xD

I only have to import structure.sql now, I've used this command mysql -u <user> -p <dbmame> < structure.sql but it didn't work.

Btw, I've seen an usefull link on your profile, I would like to mine an alt coin with a vps, I've followed this guide: http://blog.kvvs.nl/?p=13.

But i'm not quite sure how to do this for an alt coin based on litecoin, could you help me with this? :3

my email is: hakan.wnme@gmail.com and my skype is: hakan.wnme@live.com

Are you sure you uploaded the structure.sql? Make sure you link it properly in the command.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Mike_cs on January 10, 2014, 12:51:16 AM
Hi,
First of all, thank you for publishing your faucet script.

Second, I notice two things that I modified in my faucet and I think that you should too.

The first is hidding the Admin security code:
templates/admin.php @ line 9:
Code:
<input type='password' name='seccode'>

Second one is a spelling error:
index.php @ line 94:
Code:
$app->view()->setData('wallet', "<a href='https://blockchain.info'>Powered by Blockchain.info</a>");

EDIT

You could add a variable to Google Analytics so anyone could use it on the faucet:
templates/footer.php @ line 15
Code:
<?php echo $googleAnalytics?>

config.php @ End of File or whatever you want
Code:
// Google Analytics
// Place your Google Analytics code between the "  ".

$googleAnalytics = "  ";



Kind regards


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 10, 2014, 01:46:09 PM
Second, I notice two things that I modified in my faucet and I think that you should too.

The first is hidding the Admin security code:
Code:
<input type='password' name='seccode'>

Second one is a spelling error:
Code:
$app->view()->setData('wallet', "<a href='https://blockchain.info'>Powered by Blockchain.info</a>");
Thx, i commited the fixes.

You could add a variable to Google Analytics so anyone could use it on the faucet
Good idea. I added the official ga code (https://developers.google.com/analytics/devguides/collection/analyticsjs/) to the template, so you can just setup your UA code in the config file.

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 11, 2014, 01:09:08 AM
Second, I notice two things that I modified in my faucet and I think that you should too.

The first is hidding the Admin security code:
Code:
<input type='password' name='seccode'>

Second one is a spelling error:
Code:
$app->view()->setData('wallet', "<a href='https://blockchain.info'>Powered by Blockchain.info</a>");
Thx, i commited the fixes.

You could add a variable to Google Analytics so anyone could use it on the faucet
Good idea. I added the official ga code (https://developers.google.com/analytics/devguides/collection/analyticsjs/) to the template, so you can just setup your UA code in the config file.

Elbandi

Just a little tip for users. Cloudflare is free and has more accurate analytics.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 12, 2014, 09:13:34 PM
hi am trying build this script but i have a little problem...

i want to use blockchain wallet for deposit.
i set up my wallet to faucet desposit but it's not seen my balance.

and when i try to get satoshi site getting blank page...


http://www.btcking.tk

what can i do for that?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 12, 2014, 09:34:29 PM
hi am trying build this script but i have a little problem...

i want to use blockchain wallet for deposit.
i set up my wallet to faucet desposit but it's not seen my balance.

and when i try to get satoshi site getting blank page...


http://www.btcking.tk

what can i do for that?

Put:

Code:
error_reporting(E_ALL);

At the top of the page above EVERYTHING else. Then reply with the error displayed.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 12, 2014, 09:53:12 PM
hi am trying build this script but i have a little problem...

i want to use blockchain wallet for deposit.
i set up my wallet to faucet desposit but it's not seen my balance.

and when i try to get satoshi site getting blank page...


http://www.btcking.tk

what can i do for that?

Put:

Code:
error_reporting(E_ALL);

At the top of the page above EVERYTHING else. Then reply with the error displayed.

no error :S can it be something about my hosting?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 12, 2014, 09:59:03 PM
no error :S can it be something about my hosting?
I think you have a syntax error somewhere. maybe in template, beacuse / works.

if you have access for logs, you can look into them.

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ADcoin.me on January 12, 2014, 10:01:01 PM
I don't use that as it can become a security weakness, anyone knows how to do this in ssh on ubuntu?
Googling : how to add mysql from ssh gave me this
http://vps2.me/create-mysql-database-with-ssh-command/


Thank you, I've created a mysql database already with that same post. xD

I only have to import structure.sql now, I've used this command mysql -u <user> -p <dbmame> < structure.sql but it didn't work.

Btw, I've seen an usefull link on your profile, I would like to mine an alt coin with a vps, I've followed this guide: http://blog.kvvs.nl/?p=13.

But i'm not quite sure how to do this for an alt coin based on litecoin, could you help me with this? :3

my email is: hakan.wnme@gmail.com and my skype is: hakan.wnme@live.com

Are you sure you uploaded the structure.sql? Make sure you link it properly in the command.

How do I do this in ssh (ubuntu)? :3 That's the issue for sure, btw. =P

I'm a rookie at this, using ssh on ubuntu. xD I've made a new mysql database in ssh, but I have no clue how to link or upload structure.sql?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on January 12, 2014, 10:35:10 PM
Use this software, http://winscp.net/eng/index.php

All you do is enter your server IP, username & password and you'll be looking at your file structure.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 12, 2014, 10:47:34 PM
i re upload all file to my server but it still same :S


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 12, 2014, 10:56:07 PM
Use this software, http://winscp.net/eng/index.php

All you do is enter your server IP, username & password and you'll be looking at your file structure.

EWWW use filezilla :D


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 12, 2014, 10:56:58 PM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on January 12, 2014, 10:59:18 PM
you'll probably want to put display_errors("on");
or ini_set("display_errors","on");


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 12, 2014, 11:36:25 PM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 12, 2014, 11:43:52 PM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P

This is the best by far.

http://www.000webhost.com/ (http://www.000webhost.com/660477.html)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on January 12, 2014, 11:46:00 PM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P

You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 12, 2014, 11:49:09 PM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P

You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

$5 isnt that free...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on January 13, 2014, 12:02:13 AM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P

You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

$5 isnt that free...

You can create-your-own hosting account for as little as 0.000459 BTC. Perhaps you missed that....


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 12:25:18 AM
i re upload all file to my server but it still same :S

Unless you show us some errors, we cant really tell you whats wrong. What hosting provider do you guys use?

hostinghood.com

http://prntscr.com/2iuuas
this is my error log page :D nothing.. :D i am looking new host :D free :P

You can buy hosting with bitcoin at http://www.cleverpuffin.com - we're so cheap that we're virtually free.

$5 isnt that free...

You can create-your-own hosting account for as little as 0.000459 BTC. Perhaps you missed that....


I get 2k views per week (my faucet is broken). I use: 206.4 MB total bandwidth

Before I was getting around 10k views per week

Plus I have a lot of subdomains. Dont want to hate, just your claim is inaccurate.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 13, 2014, 02:36:55 AM
000webhost not support php 5.3 :( my site down :(


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 03:29:24 AM
000webhost not support php 5.3 :( my site down :(

Thats too bad! :( Here is a REALLY good one that you can use. http://2freehosting.com/ (http://api.2freehosting.com/redir/4263756)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 13, 2014, 12:17:48 PM
http://www.btcking.tk/

now it's working thanks all :)
but i have only 85,232 satoshis for faucet. :D
looking some sponsors :)

I can give direct link in my site...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 03:00:35 PM
http://www.btcking.tk/

now it's working thanks all :)
but i have only 85,232 satoshis for faucet. :D
looking some sponsors :)

I can give direct link in my site...

If you offer only 20-30 satoshis then you should be fine for a while.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on January 13, 2014, 03:02:29 PM
000webhost not support php 5.3 :( my site down :(

You could buy a Raspberry pi for $25 and host your faucet on it.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 13, 2014, 03:05:46 PM
000webhost not support php 5.3 :( my site down :(

You could buy a Raspberry pi for $25 and host your faucet on it.

Faucet's have a tendency of being added too lists and rotators, after which u will usually get around 10k/20k pageviews a day, i dont think my Pi will handle that..
Altho i might try it cus it's an cool idea  ;D

http://www.btcking.tk/

now it's working thanks all :)
but i have only 85,232 satoshis for faucet. :D
looking some sponsors :)

I can give direct link in my site...

30 satoshi , 2 times a day thats 60 satoshi a day and a 20k payout, people are not gonna be bothered doing that..

If u want to use lower payout i suggest using Microwallet.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Mike_cs on January 13, 2014, 03:42:42 PM
EDITED

Show Users Info and Pending Payments (balance >= $cashout) on Admin Panel (Primitive Way)

templates/admin.php @ line 28
Code:
        <li><a data-target="#users" data-toggle="tab">Users</a></li>
        <li><a data-target="#payments" data-toggle="tab">Payments</a></li>

templates/admin.php @ line 65
Code:
        <div class="tab-pane" id="users">
            <h4>Users</h4>
            <div class="span6">
                <table class="well table table-striped">
                    <caption>Users</caption>
                    <thead>
                    <tr>
                        <th>ID</th>
                        <th>Address</th>
                        <th>Balance</th>
                        <th>Referrals</th>
                        <th>Referred by</th>
                        </tr>
                    </thead>
                    <tbody>
                        <?php
                        
while ($users fetch_assoc($getUsersData_query)): 
                            
$userReferrals_query sql_query("SELECT COUNT(*) AS referrals FROM balances WHERE referredby = '".$users['id']."'");
                            
$referrals fetch_assoc($userReferrals_query); ?>

                            <tr>
                                <td><span id="summary-user-id"><?php echo $users["id"]; ?></span></td>
                                <td><span id="summary-user-address"><?php echo $users["email"]; ?></span></td>
                                <td><span id="summary-user-balance"><?php echo $users["balance"]; ?></span></td>
                                <td><span id="summary-user-referrals"><?php echo $referrals["referrals"]; ?></span></td>
                                <td><span id="summary-user-referred"><?php echo $users["referredby"]; ?></span></td>
                            </tr>
                        <?php endwhile; ?>
                </tbody>
                </table>
            </div>
        </div>
        
        <div class="tab-pane" id="payments">
            <h4>Payments</h4>
            <div class="span6">
                <table class="well table table-striped">
                    <caption>Payments Pending</caption>
                    <tbody>
                        <tr>
                            <td>Number of addresses</td>
                            <td><span id="summary-addresses"><?php echo $paymentAddresses["num_addresses"]; ?></span></td>
                        </tr>
                        <?php while ($usersPayment fetch_assoc($usersPaymentData_query)): ?>
                            <tr>
                                <td>ID </td>
                                <td><span id="summary-user-id"><?php echo $usersPayment["id"]; ?></span></td>
                                <td>Address </td>
                                <td><span id="summary-user-address"><?php echo $usersPayment["email"]; ?></span></td>
                                <td>Balance </td>
                                <td><span id="summary-user-balance"><?php echo $usersPayment["balance"]; ?></span></td>
                            </tr>
                        <?php endwhile; ?>
                 </tbody>
                </table>
            </div>
        </div>
    </div>

index.php @ line 147
Code:
			$sql = "SELECT * FROM balances WHERE email <> 'SERVERBALANCE' ORDER BY balance DESC";
$getUsersData_query = sql_query($sql);

$app->view()->setData('getUsersData_query', $getUsersData_query);

$sql = "SELECT COUNT(*) AS num_addresses FROM balances WHERE email <> 'SERVERBALANCE' AND balance >= '10000'";
$paymentAddresses_query = sql_query($sql);
$paymentAddresses = fetch_assoc($paymentAddresses_query);

$app->view()->setData('paymentAddresses', $paymentAddresses);

$sql = "SELECT * FROM balances WHERE email <> 'SERVERBALANCE' AND balance >= '10000'";
$usersPaymentData_query = sql_query($sql);

$app->view()->setData('usersPaymentData_query', $usersPaymentData_query);

Still somethings to do... In index.php the $cashout isn't accepted, meanwhile I changed to the actual value.

EDIT

templates/faucet @line 35 (?)

Code:
        <script>
            var secsLeft = <?php echo $forcewait?>;
            setInterval(function(){
                secsLeft--;
                if(secsLeft > 0){
                    $("#claimbtn").attr("disabled", true);
                    $('#claimbtn').val('Wait ' + secsLeft + 's');
                } else if(secsLeft == 0){
                    $("#claimbtn").attr("disabled", false);
                    $('#claimbtn').removeClass('disabled');
                    $('#claimbtn').val('Claim');
                }
            }, 1000);
        </script>

When timer was set, the button was clickable even with the time counting. $("#claimbtn").attr("disabled", true); will manage disable attribute for the input button.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on January 13, 2014, 04:42:50 PM
000webhost not support php 5.3 :( my site down :(

You could buy a Raspberry pi for $25 and host your faucet on it.

Faucet's have a tendency of being added too lists and rotators, after which u will usually get around 10k/20k pageviews a day, i dont think my Pi will handle that..
Altho i might try it cus it's an cool idea  ;D

http://www.btcking.tk/

now it's working thanks all :)
but i have only 85,232 satoshis for faucet. :D
looking some sponsors :)

I can give direct link in my site...

30 satoshi , 2 times a day thats 60 satoshi a day and a 20k payout, people are not gonna be bothered doing that..

If u want to use lower payout i suggest using Microwallet.

I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 13, 2014, 04:43:31 PM
this script need adblock detecter and logo system :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: KoningKaas on January 13, 2014, 05:22:58 PM
I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.

wow, and did it handle it nicely without any lag etc?
If i remember correct DevFaucet was a inputs.io faucet, it should handle this pretty easily too then  ;D

Gonna grab my dusty Pi and put it too use


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 05:52:28 PM
I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.

wow, and did it handle it nicely without any lag etc?
If i remember correct DevFaucet was a inputs.io faucet, it should handle this pretty easily too then  ;D

Gonna grab my dusty Pi and put it too use

Just use DO


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on January 13, 2014, 08:49:05 PM
I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.

wow, and did it handle it nicely without any lag etc?
If i remember correct DevFaucet was a inputs.io faucet, it should handle this pretty easily too then  ;D

Gonna grab my dusty Pi and put it too use

Just use DO

DO, is $5/month. He could just use his RPi with cloudflare.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: niktitan132 on January 13, 2014, 09:01:15 PM
How to configure this faucet for other altcoins?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 10:03:12 PM
I hosted DevFaucet at one time on a Pi. Had about 20k dispenses/day.

wow, and did it handle it nicely without any lag etc?
If i remember correct DevFaucet was a inputs.io faucet, it should handle this pretty easily too then  ;D

Gonna grab my dusty Pi and put it too use

Just use DO

DO, is $5/month. He could just use his RPi with cloudflare.

But you have to pay for Internet and it might go down, and will be slower than a do server... Just saying.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: devthedev on January 13, 2014, 11:01:04 PM
True, I guess it also depends on your location. (Network Speeds and such)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 13, 2014, 11:17:46 PM
True, I guess it also depends on your location. (Network Speeds and such)

Ya its pretty fun to mess around with.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 14, 2014, 03:20:03 AM
this script need adblock detecter and logo system :)

How can i add adblock detector. and how i set logo here http://prntscr.com/2j6d0s not only letters...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 14, 2014, 03:31:28 AM
Just my 2 cents here. Maybe update the design, instead of copying myfaucet from TF? The design is plain and old.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 14, 2014, 03:35:12 AM
this script need adblock detecter and logo system :)

How can i add adblock detector. and how i set logo here http://prntscr.com/2j6d0s not only letters...

Take out the text. Then upload your image onto the server. Then put

Code:
<img src="path_to_your_image" width="100px" height="100px" alt="btc king" />


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 21, 2014, 11:29:45 PM
i bought new hosting.

in my errorlog

Code:
20140121T182611: www.[Suspicious link removed]/index.php
PHP Warning:  session_start(): open(/var/php_sessions/sess_jajvtio1tca7j5t9890or456a2, O_RDWR) failed: No such file or directory (2) in /hermes/bosnaweb01a/b2301/ipg.btckingtk/index.php on line 5
PHP Warning:  Unknown: open(/var/php_sessions/sess_jajvtio1tca7j5t9890or456a2, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
PHP Warning:  Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/php_sessions) in Unknown on line

its giving error like that
what can i do?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 21, 2014, 11:45:48 PM
i bought new hosting.

in my errorlog

Code:
20140121T182611: www.[Suspicious link removed]/index.php
PHP Warning:  session_start(): open(/var/php_sessions/sess_jajvtio1tca7j5t9890or456a2, O_RDWR) failed: No such file or directory (2) in /hermes/bosnaweb01a/b2301/ipg.btckingtk/index.php on line 5
PHP Warning:  Unknown: open(/var/php_sessions/sess_jajvtio1tca7j5t9890or456a2, O_RDWR) failed: No such file or directory (2) in Unknown on line 0
PHP Warning:  Unknown: Failed to write session data (files). Please verify that the current setting of session.save_path is correct (/var/php_sessions) in Unknown on line

its giving error like that
what can i do?

i solved my problem with my hosting provider thanks :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: HotSwap on January 23, 2014, 02:29:05 AM
Looks like there is a issue now with recaptcha. Seems that all the sites using this script aren't loading the recaptcha to get a dispense. Would it be possible to add a option in the config to choose recaptcha or solve media or another to ensure we have a backup.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 25, 2014, 09:09:25 AM
and now i have some problem my script didn't refresh my balance :( it seeing alltime 0

when re enter http://prntscr.com/2md8ye

total balance in database with new time its working but after a few hour later it's same

when i try update balance from adminpage "Balance is not updated or balance is empty" i am getting this error message


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 25, 2014, 07:18:09 PM
and now i have some problem my script didn't refresh my balance :( it seeing alltime 0

when re enter http://prntscr.com/2md8ye

total balance in database with new time its working but after a few hour later it's same

when i try update balance from adminpage "Balance is not updated or balance is empty" i am getting this error message
which api backend?

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kacak41 on January 25, 2014, 08:35:56 PM
blockchain i checked api i am getting right balance very well but it not update on database

Code:
20140124T120005: [Suspicious link removed]/index.php 
exception 'ErrorException' with message 'Undefined index: HTTP_USER_AGENT' in /hermes/bosnaweb01a/b2301/ipg.btckingtk/index.php:248
Stack trace:
#0 /hermes/bosnaweb01a/b2301/ipg.btckingtk/index.php(248): Slim\Slim::handleErrors(8, 'Undefined index...', '/hermes/bosnawe...', 248, Array)
#1 [internal function]: {closure}()
#2 /hermes/bosnaweb01a/b2301/ipg.btckingtk/Slim/Route.php(436): call_user_func_array(Object(Closure), Array)
#3 /hermes/bosnaweb01a/b2301/ipg.btckingtk/Slim/Slim.php(1307): Slim\Route->disp

i found this error message in my logs


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 26, 2014, 05:58:44 AM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 26, 2014, 06:07:55 AM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?

Probably not. With my faucet that has no withdraw limits, I made no money. Well I didnt intend to in the first place. I expected the advertising to pay for the faucet but I ended up putting money out of my own pocket.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: RGBKey on January 26, 2014, 06:21:03 AM
I find it funny how everyone is modifying code made by a terrible scammer. Not that that makes you terrible, I commend you for your work.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 26, 2014, 06:38:59 AM
I find it funny how everyone is modifying code made by a terrible scammer. Not that that makes you terrible, I commend you for your work.

I dont understand what you mean. We all have read the code. Even if the original was from a scammer, it works...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 26, 2014, 01:40:42 PM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?

Probably not. With my faucet that has no withdraw limits, I made no money. Well I didnt intend to in the first place. I expected the advertising to pay for the faucet but I ended up putting money out of my own pocket.
I wish to know how much satoshi(xxx-xxx) you were offering every hour that you end up losing and which ad-networks you were using.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 26, 2014, 06:48:38 PM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?

Probably not. With my faucet that has no withdraw limits, I made no money. Well I didnt intend to in the first place. I expected the advertising to pay for the faucet but I ended up putting money out of my own pocket.
I wish to know how much satoshi(xxx-xxx) you were offering every hour that you end up losing and which ad-networks you were using.

I offered 0.00001 every 30 minutes without a limit. Basically the money gets instantly sent to your coinbase account. There is no need to accumulate a certain balance before withdrawing. It was custom made. It was paid by donations and advertising and I got 0.06 in total but gave away around 0.15...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: RGBKey on January 26, 2014, 07:49:14 PM
I find it funny how everyone is modifying code made by a terrible scammer. Not that that makes you terrible, I commend you for your work.

I dont understand what you mean. We all have read the code. Even if the original was from a scammer, it works...
I'm not saying it doesn't work and it's a bad idea to use it, I just think it's funny most of us hate him yet we still use his code


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 26, 2014, 10:13:49 PM
I'm not saying it doesn't work and it's a bad idea to use it, I just think it's funny most of us hate him yet we still use his code
nobody use his code. i wrote this code from scratch, only the design is the same with that.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 03:51:26 AM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?

Probably not. With my faucet that has no withdraw limits, I made no money. Well I didnt intend to in the first place. I expected the advertising to pay for the faucet but I ended up putting money out of my own pocket.
I wish to know how much satoshi(xxx-xxx) you were offering every hour that you end up losing and which ad-networks you were using.

I offered 0.00001 every 30 minutes without a limit. Basically the money gets instantly sent to your coinbase account. There is no need to accumulate a certain balance before withdrawing. It was custom made. It was paid by donations and advertising and I got 0.06 in total but gave away around 0.15...
That means you paid 1000 satoshi every 30 min?That was quite a lot.I am thinking to offer 50-500 satoshi every 60 mins like freebitco.in does. What ad networks you used?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 03:56:17 AM
How to change this background color from yellow to something else?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 27, 2014, 04:20:40 AM
Is it profitable to start BTC faucet when monetized with a-ads/Coinurl and properly advertised?

Probably not. With my faucet that has no withdraw limits, I made no money. Well I didnt intend to in the first place. I expected the advertising to pay for the faucet but I ended up putting money out of my own pocket.
I wish to know how much satoshi(xxx-xxx) you were offering every hour that you end up losing and which ad-networks you were using.

I offered 0.00001 every 30 minutes without a limit. Basically the money gets instantly sent to your coinbase account. There is no need to accumulate a certain balance before withdrawing. It was custom made. It was paid by donations and advertising and I got 0.06 in total but gave away around 0.15...
That means you paid 1000 satoshi every 30 min?That was quite a lot.I am thinking to offer 50-500 satoshi every 60 mins like freebitco.in does. What ad networks you used?

I used bitads, and this was when bitcoin was worth 100... In my new faucet which I am making, I plan on giving 0.000001 with the option of a multiplier. Also I will probably make the first faucet request 0.000005...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 04:40:01 AM
I am going to get this script redesigned for me.Looking to hire someone at SEOClerks.What customizations you suggest to this basic design and how much should developer charge?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on January 27, 2014, 06:18:31 AM
I am going to get this script redesigned for me.Looking to hire someone at SEOClerks.What customizations you suggest to this basic design and how much should developer charge?


Mainly update the gui. I think a reasonable price for just UI would be around 0.05BTC


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 07:23:34 AM
What is GUI?
Also I wish to enable instant, no minimum payment.I think Microwallet is needed for it.How to enable Microwallet on this script?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 07:33:36 AM
Looks like there is a issue now with recaptcha. Seems that all the sites using this script aren't loading the recaptcha to get a dispense. Would it be possible to add a option in the config to choose recaptcha or solve media or another to ensure we have a backup.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 07:40:06 AM
How to change this background color from yellow to something else?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 08:09:15 AM
Where to add banner ad codes/text ads. Please specify. ???


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 08:12:56 AM
0.001 BTC for someone who answers my queries in above 3 posts and helps also tell me in which file in the script I need to place code which nahtnam posted ealier(for image logo).


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on January 27, 2014, 09:40:38 AM
Where to add banner ad codes/text ads. Please specify. ???
Read the config.php comments, it helps a lot.

You can make a new design, just edit the files in template directory.

And pls stop msg spam  >:(


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 27, 2014, 10:17:21 AM
Where to add banner ad codes/text ads. Please specify. ???
Read the config.php comments, it helps a lot.

You can make a new design, just edit the files in template directory.

And pls stop msg spam  >:(
Thanks for response.Also is it possible to add no minimum/instant payout via microwallet?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on January 31, 2014, 02:38:23 PM
Hi! I just installed the script and database on fatcow hosting but when I tested it by entering BTC addressing and pressing Go for a win I get error Page Not found on freebitcoinfaucet.net/faucet page!Please suggest 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: leckey on February 06, 2014, 02:32:51 PM
Hi! I just installed the script and database on fatcow hosting but when I tested it by entering BTC addressing and pressing Go for a win I get error Page Not found on freebitcoinfaucet.net/faucet page!Please suggest 

Did you upload the .htaccess file?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: nahtnam on February 06, 2014, 03:04:56 PM
Hi! I just installed the script and database on fatcow hosting but when I tested it by entering BTC addressing and pressing Go for a win I get error Page Not found on freebitcoinfaucet.net/faucet page!Please suggest 

Did you upload the .htaccess file?

I think he got it working.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: viamoz on May 02, 2014, 10:52:23 PM
hi,

I rewrote the myfaucet script from scratch‎. It's using Slim Framework (http://www.slimframework.com/) and official Coinbase API wrapper (https://github.com/coinbase/coinbase-php).

Here is the source: https://gitorious.org/elbandi/minifaucet/

DB is backward compatible, so only need to replace the files (except config.php*). If you found a bug, report to this thread.

* config.php is such as myfaucet, but better if you migrate the config, because new feautres need configs too.

You can use coinbase.org or blockchain.info wallet. But you can run your bitcoind somewhere, and use that for faucet site.

Here is a demo site: http://faucet.elbandi.net/

Upgrade warning from 0.2: allowBTC config parameter is renamed, you have to edit your config!

Donations are welcome: 1NaYg9L5KxL3hSAB9qeWaBHrSunkY3eNBo :D

elbandi

Good day guys!
I have a problem with this script, maybe somebody resolved this problem.
When i input bitcoin adress im getting blank page.
How i installing script:
1.copiing all files to server
2.restoring database structure.sql
3.configuring config.php
thats all

maybe something i making wrong ?
Sorry for my english and thx in advance!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on January 23, 2015, 12:44:13 PM
Is there update for this script


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Aura on January 28, 2015, 05:18:30 PM
Is there update for this script
I'm also looking for this.
I installed the script but the Admin page doesn't work


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 03, 2015, 07:08:52 AM
Is there update for this script
I'm also looking for this.
I installed the script but the Admin page doesn't work
you must add pages like post guide :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ikiscream on March 06, 2015, 09:02:32 AM
i have error 500 internal server , please help me fix it  :'(


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on March 06, 2015, 09:06:27 PM
i have error 500 internal server , please help me fix it  :'(
Look into the web/php server log. we cannot help without any error message.

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: yvesp110 on March 12, 2015, 04:23:25 AM
I have 500 internal server error

here is what i get in log
[test.btccanabank.com] [Wed Mar 11 08:36:05 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/
[test.btccanabank.com] [Wed Mar 11 08:37:47 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/
[test.btccanabank.com] [Wed Mar 11 08:42:24 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/
[test.btccanabank.com] [Wed Mar 11 09:08:30 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/
[test.btccanabank.com] [Wed Mar 11 09:15:08 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/
[test.btccanabank.com] [Wed Mar 11 09:18:20 2015] [error] [client 47.54.11.129] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace., referer: http://cp1.freehostingeu.com/beta/domain-manager/


how do i fixe that

weird i setup few faucet on faucetbox using there script and all works well and on paytoshi nothing i get the same error has this one I wanrt to do an altcoin faucet grrr


Has for my problem hosting support fixed it here is what needed

In order to use mod_rewrite in our hosting environment you should add the following line inside your .htaccess file:
RewriteBase /

This directive needs to be added on a new line right after the RewriteEngine is enabled, so your .htaccess should contain this:
RewriteEngine On
RewriteBase /


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Josef27 on April 05, 2015, 01:49:41 AM
Any chance for updating the script to use the newer bootstrap version?
Or, are you really done with it? :(


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on April 05, 2015, 02:46:57 PM
Hi

Someone can tell me if we can set a percent of the rewards ?
(I mean  to offer  1000 satoshi = 50% , 2000 satoshi = 30%, 3000 satoshi= 10%, 4000 satoshi= 9%, 5000 satoshi = 1%) it is just a example.


Now I have :

Quote
// Array of 8 rewards in satoshis. 100,000,000 satoshis = 1 BTC

// 1 mBTC = 100,000 Satoshis

// 1 ?BTC (microbitcoin) = 100 Satoshis

$rewards = array(1000, 2000, 3000, 4000, 5000);

$minReward = min($rewards);

$maxReward = max($rewards);


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on April 05, 2015, 08:45:34 PM
Quote

templates/faucet @line 35 (?)

Code:
        <script>
            var secsLeft = <?php echo $forcewait?>;
            setInterval(function(){
                secsLeft--;
                if(secsLeft > 0){
                    $("#claimbtn").attr("disabled", true);
                    $('#claimbtn').val('Wait ' + secsLeft + 's');
                } else if(secsLeft == 0){
                    $("#claimbtn").attr("disabled", false);
                    $('#claimbtn').removeClass('disabled');
                    $('#claimbtn').val('Claim');
                }
            }, 1000);
        </script>

When timer was set, the button was clickable even with the time counting. $("#claimbtn").attr("disabled", true); will manage disable attribute for the input button.

If I use this code the CLAIM button dont show untill the time is gone.
Ideal is to show with the countdown and become active once the time is ended.
Any ideea about how this can be made ?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on April 06, 2015, 09:30:33 AM
doge site pages working fine ,only one page not work faucet page show  blank page or 500 internet error.
No prove for php problem into the web/php server log


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on April 24, 2015, 02:01:26 PM
Upcoming change to 0.6 version:

More wallet provider (FaucetBOX and Xapo)
Recaptcha V2 (https://support.google.com/recaptcha/#6081880) support
Upgrade api libraries (coinbase and Blockchain.info)

Source is moved to GitLab (https://gitlab.com/)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on May 05, 2015, 09:26:10 AM
Upcoming change to 0.6 version:

More wallet provider (FaucetBOX and Xapo)
Recaptcha V2 (https://support.google.com/recaptcha/#6081880) support
Upgrade api libraries (coinbase and Blockchain.info)

Source is moved to GitLab (https://gitlab.com/)
please,can you add block.io to wallet provider :)
new download link at GitLab


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: fueres on May 15, 2015, 03:41:47 PM
Just downloaded the latest version.

Is is working (shows MiniFaucet v0.5)

I just read everything I found here and on the project page on GitLab, but still could not find where is the admin page.
Can anybody help me?

Thanks in advance.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on May 15, 2015, 07:54:09 PM
Just downloaded the latest version.

Is is working (shows MiniFaucet v0.5)

I just read everything I found here and on the project page on GitLab, but still could not find where is the admin page.
Can anybody help me?

Thanks in advance.

It is simple :  just type  :  www.your-own-url.xxx/admin
And you will see the admin page.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jdebunt on May 15, 2015, 07:56:30 PM
It is simple :  just type  :  www.your-own-url.xxx/admin
And you will see the admin page.

Sometimes the answer is right in front of people.. :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: fueres on May 15, 2015, 10:51:20 PM
 ;D

Thank you so much!

I had already tryed that, but the index.php/admin fooled me.


By the way, I can not log in. It complains 'Invalid security code.'
I can get no image - it says 'Input error: k: Format of site key was invalid' (I thought I would configure that in the admin page)


Am I missing something?
Was there a manual in the old repo?
Oh, and what is the default password? (if not admin )


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on May 15, 2015, 11:35:34 PM
;D

Thank you so much!

I had already tryed that, but the index.php/admin fooled me.


By the way, I can not log in. It complains 'Invalid security code.'
I can get no image - it says 'Input error: k: Format of site key was invalid' (I thought I would configure that in the admin page)


Am I missing something?
Was there a manual in the old repo?
Oh, and what is the default password? (if not admin )
did you edit the config.php ?

And read the comment in that file. It's helps a lot. :)

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: fueres on May 16, 2015, 12:08:19 AM
;D

Thank you so much!

I had already tryed that, but the index.php/admin fooled me.


By the way, I can not log in. It complains 'Invalid security code.'
I can get no image - it says 'Input error: k: Format of site key was invalid' (I thought I would configure that in the admin page)


Am I missing something?
Was there a manual in the old repo?
Oh, and what is the default password? (if not admin )
did you edit the config.php ?

And read the comment in that file. It's helps a lot. :)

Elbandi


Ouch!!
So sorry elbandi

As I read over and over the structure.sql, I thought I had already seen the config.php.
Just found everything I needed there.

Thanks so much for the scritpt.
Will get back to you soon.

=)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jbsk8ter on June 30, 2015, 12:46:55 PM
Hi to all, i have got a problem.

I have changed the prices to this:
$rewards = array('500'=> 80, '1000' => 13, '1500' => 5, '2000' => 1.5, '2500' => 0.4, '20000' => 0.099, '50000' => 0.001);
$minReward = min(isAssoc($rewards) ? array_keys($rewards) : $rewards);
$maxReward = max(isAssoc($rewards) ? array_keys($rewards) : $rewards);

But when i try myself the faucet it always give 0 satoshis.

Thanks for your help.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on June 30, 2015, 02:30:12 PM
$rewards = array('500'=> 80, '1000' => 13, '1500' => 5, '2000' => 1.5, '2500' => 0.4, '20000' => 0.099, '50000' => 0.001);
Do not use float numbers for odds!

You sould multiply the odds:
$rewards = array('500'=> 80000, '1000' => 13000, '1500' => 5000, '2000' => 1500, '2500' => 400, '20000' => 99, '50000' => 1);

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: examplens on August 14, 2015, 11:49:17 AM
There is no integration of the solvemedia captcha?
is only Recaptcha?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 14, 2015, 11:52:49 AM
There is no integration of the solvemedia captcha?
is only Recaptcha?
Solvemedia is broken ...
reCAPTCHA is the best atm.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on August 19, 2015, 06:42:25 PM
For me, the payouts do not work, how you guys made them work? If i pay claim, nothing happens and the page refreshes.. Help?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ONLYfree on August 19, 2015, 07:30:20 PM
If anyone wanna work and can create a xapo faucet powered this script please PM.

admin panel is needed.

Please no more fancier.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 19, 2015, 10:09:26 PM
If anyone wanna work and can create a xapo faucet powered this script please PM.

admin panel is needed.

Please no more fancier.

From what I know Xapo is already intergrated.

For me, the payouts do not work, how you guys made them work? If i pay claim, nothing happens and the page refreshes.. Help?

Did you imported the sql file in your DB?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on August 20, 2015, 07:28:49 AM
If anyone wanna work and can create a xapo faucet powered this script please PM.

admin panel is needed.

Please no more fancier.

From what I know Xapo is already intergrated.

For me, the payouts do not work, how you guys made them work? If i pay claim, nothing happens and the page refreshes.. Help?

Did you imported the sql file in your DB?

Finally it worked!:) Thanks. I have another question now, how can i make it instant for FaucetBox, so user doesn't have to click cashout button?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 20, 2015, 07:34:07 AM
Quote
Finally it worked!:) Thanks. I have another question now, how can i make it instant for FaucetBox, so user doesn't have to click cashout button?

For an asnwer to this question you must ask @elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on August 20, 2015, 03:13:17 PM
Quote
Finally it worked!:) Thanks. I have another question now, how can i make it instant for FaucetBox, so user doesn't have to click cashout button?

For an asnwer to this question you must ask @elbandi

I found a way so i don't have to include the instant payout. One more question, do you know how can i allow another page instead of admin and faucet? Thanks so much!

The site is qoinmicro.com if any of you wonder.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 20, 2015, 04:07:18 PM
Quote
Finally it worked!:) Thanks. I have another question now, how can i make it instant for FaucetBox, so user doesn't have to click cashout button?

For an asnwer to this question you must ask @elbandi

I found a way so i don't have to include the instant payout. One more question, do you know how can i allow another page instead of admin and faucet? Thanks so much!

The site is qoinmicro.com if any of you wonder.

You mean something like this : http://www.freebtc.click/ (http://www.freebtc.click/)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on August 20, 2015, 04:12:28 PM
Quote
Finally it worked!:) Thanks. I have another question now, how can i make it instant for FaucetBox, so user doesn't have to click cashout button?

For an asnwer to this question you must ask @elbandi

I found a way so i don't have to include the instant payout. One more question, do you know how can i allow another page instead of admin and faucet? Thanks so much!

The site is qoinmicro.com if any of you wonder.

You mean something like this : http://www.freebtc.click/ (http://www.freebtc.click/)

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 20, 2015, 04:18:33 PM
Quote

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet

I know it has 2 pages :)

Did you saw how many pages has my website (http://www.freebtc.click) ?

It is the same script :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on August 20, 2015, 04:33:03 PM
Yea, how can i do that?

Give me a PM and I tell you :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: bterproblems on August 20, 2015, 06:46:52 PM
Does this script allow to log in with your xapo email instead using your bitcoin wallet?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: examplens on August 24, 2015, 03:30:44 PM
whether a somebody this script working with DOGE coin?
On faucetbox i have ltc, btc and doge faucet.. and minifaucet script set to doge faucet always  get btc balance
where did I go wrong?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on August 24, 2015, 07:08:29 PM
whether a somebody this script working with DOGE coin?
On faucetbox i have ltc, btc and doge faucet.. and minifaucet script set to doge faucet always  get btc balance
where did I go wrong?
Open this file: FaucetBOXWalletProvider.php

search this:
Code:
        global $faucetBoxKey;
        $this->faucetbox = new FaucetBOX($faucetBoxKey);
Change to
Code:
        global $faucetBoxKey, $coinType;
        $this->faucetbox = new FaucetBOX($faucetBoxKey, $coinType);

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on August 24, 2015, 08:39:30 PM
Is there any "logout" button/page?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on August 26, 2015, 06:24:52 AM
Is there any "logout" button/page?
Just in admin page ;)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Mrboot on September 01, 2015, 10:46:57 AM
Hey Everyone,

I Have some problems , getting the faucet to work isnt really hard.

Just i tryed to change te layout to be implemented into my website and it mess up my website css,
Anyone changed this already ?

What i tred to do is remove all banner spots and Text like website and welcome and that was no problem,
but when i try to implement it in my website my website layout change cause of the css of the faucet.

I Found some css in the header.php tred to delete it and see if i can add it then to my website but still mess up my
website anyone might have a idea were to look in the faucet script ?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on September 04, 2015, 06:17:57 PM
Hey Everyone,

I Have some problems , getting the faucet to work isnt really hard.

Just i tryed to change te layout to be implemented into my website and it mess up my website css,
Anyone changed this already ?

What i tred to do is remove all banner spots and Text like website and welcome and that was no problem,
but when i try to implement it in my website my website layout change cause of the css of the faucet.

I Found some css in the header.php tred to delete it and see if i can add it then to my website but still mess up my
website anyone might have a idea were to look in the faucet script ?

You can remove all banner spots and Text from config.php file, and you can edit,add or replace css in the header.php

also you can create css file and link it for every page in your web site.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: mari88 on September 05, 2015, 12:25:13 AM
is this script paying to faucetbox and xapo-mail both ?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on September 05, 2015, 12:05:48 PM
is this script paying to faucetbox and xapo-mail both ?

It pays currently only to faucetbox.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on September 11, 2015, 05:51:57 PM
is this script paying to faucetbox and xapo-mail both ?
This script paying to Faucetbox ,xapo-mail ,Coinbase ,Blockchain and Bitcoind :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: mari88 on September 15, 2015, 01:29:29 PM
can anyone give me a php code to add an logout button ?
i am not very skilled in webprogramming

kind regrads


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on September 25, 2015, 08:23:06 AM
Can you add funcaptcha as a captcha provider? It is for bot usage issue. Or at leas, a tutorial how to add it manually. Thanks!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on September 29, 2015, 11:42:16 PM
Can you add funcaptcha as a captcha provider? It is for bot usage issue. Or at leas, a tutorial how to add it manually. Thanks!
FunCaptcha support added by latest commit.

Configure at config.php:
  • set $recaptchaVersion to "funcaptcha"
  • set the site keys to $recaptchaPub and $recaptchaPrv

Elbandi


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on October 06, 2015, 01:19:42 PM
Can you add funcaptcha as a captcha provider? It is for bot usage issue. Or at leas, a tutorial how to add it manually. Thanks!
FunCaptcha support added by latest commit.

Configure at config.php:
  • set $recaptchaVersion to "funcaptcha"
  • set the site keys to $recaptchaPub and $recaptchaPrv

Elbandi

Thank you so much, i can finally have no fear against the bots, keep updating it :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on October 27, 2015, 12:09:26 PM
OP
Thank you , for add block.io as WalletProviders

please, how I can change rewards,cashout and fee in satoshis to in whole coins DOGE?

Can you add email verification when users request cashout. please read this post https://bitcointalk.org/index.php?topic=1200700


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on October 28, 2015, 09:45:07 AM


Can you add email verification when users request cashout.

This is useless ...

They can enter any (temporary) email and withdraw the funds..


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitMaxz on October 28, 2015, 04:50:59 PM
Hello sir can you give me a sample site or demo site. i just want to see if what is the form of the script. i was try the script but error..


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on October 29, 2015, 12:14:41 AM
Same here!

I get a blank screen, have tried to display all kinds of error reportings in php.ini still no luck.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: kevinex on October 29, 2015, 04:11:07 PM
i try instal this scrypt always blank.
and upgrade sql double ref balance table. ???
whats wrong??


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitMaxz on October 29, 2015, 08:50:04 PM
i try instal this scrypt always blank.
and upgrade sql double ref balance table. ???
whats wrong??

I think the server of the script deleted from the op. I got this same issue as you even ay uploaded it in to a hosting site nothings happen then error code....


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on October 29, 2015, 10:04:46 PM
Please Elbandi is there something wrong with the script?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: lol3c on October 30, 2015, 11:46:06 AM
Maybe he has some problems right now, hope he will get back soon


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on November 01, 2015, 12:14:25 PM
Maybe he has some problems right now, hope he will get back soon
Yeah, i was offline IRL.  :(

Hello sir can you give me a sample site or demo site. i just want to see if what is the form of the script. i was try the script but error..
My demo site is offline currently :(
But here are some, how are using this script:
http://datafaucet.info/
http://www.robotco.in/minifaucet/
http://www.bitfaucet.me/

Same here!

I get a blank screen, have tried to display all kinds of error reportings in php.ini still no luck.
Comment out this line from config.php:
Code:
error_reporting(0);
And turn on error_reporting and display_errors and display_startup_errors too. Usually, you edited a file, and break the php syntax.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on November 02, 2015, 04:22:46 PM
Hello elbandi I still get blank screen after doing what you told me to, but this time I get this error:
Code:
Fatal error: Uncaught exception 'Exception' with message 'GMP extension seems not to be installed' in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php:10 Stack trace: #0 C:\xampp\htdocs\mini\core.php(23): require_once() #1 C:\xampp\htdocs\mini\index.php(3): require('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php on line 10


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on November 02, 2015, 04:34:27 PM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on November 02, 2015, 04:48:16 PM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
Do you test it after this modify on live server?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on November 02, 2015, 04:55:38 PM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
You could probably just comment out that line. If it doesn't have the require_once request then it won't use the folder anyway.

Do you test it after this modify on live server?
I don't see why it wouldn't work as long as you aren't using the block.io API to send payments.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on November 02, 2015, 05:00:22 PM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
Do you test it after this modify on live server?

Not really, haven't tried it on a live server, I use Xampp for now.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on November 02, 2015, 05:07:19 PM
Hello elbandi I still get blank screen after doing what you told me to, but this time I get this error:
Code:
Fatal error: Uncaught exception 'Exception' with message 'GMP extension seems not to be installed' in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php:10 Stack trace: #0 C:\xampp\htdocs\mini\core.php(23): require_once() #1 C:\xampp\htdocs\mini\index.php(3): require('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php on line 10
From this, it seems that your hosting doesn't have the GMP extension installed for the block.io wallet API, as is listed as one of the requirements on their documentation (https://block.io/api/simple/php). Try installing this or using a hosting with it pre-installed and see what happens. If not, just comment it out like previously if you're not using it.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitMaxz on November 02, 2015, 05:22:31 PM
Hello elbandi I still get blank screen after doing what you told me to, but this time I get this error:
Code:
Fatal error: Uncaught exception 'Exception' with message 'GMP extension seems not to be installed' in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php:10 Stack trace: #0 C:\xampp\htdocs\mini\core.php(23): require_once() #1 C:\xampp\htdocs\mini\index.php(3): require('C:\\xampp\\htdocs...') #2 {main} thrown in C:\xampp\htdocs\mini\BlockIo\lib\block_io.php on line 10
From this, it seems that your hosting doesn't have the GMP extension installed for the block.io wallet API, as is listed as one of the requirements on their documentation (https://block.io/api/simple/php). Try installing this or using a hosting with it pre-installed and see what happens. If not, just comment it out like previously if you're not using it.
Ow i see thats why i having a trouble because i dont have GMP extension installed i will try it to host and domain if its working or not then i just wanna know if where can get the GMPe extension?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on November 02, 2015, 05:37:15 PM
Ow i see thats why i having a trouble because i dont have GMP extension installed i will try it to host and domain if its working or not then i just wanna know if where can get the GMPe extension?
Any large hosting provider will have GMP installed on their system I expect, since I imagine it is a fairly common extension. If your hosting provider doesn't have it, try contacting them about it and see what they say.

If you are hosting locally on a Windows machine, I am unsure how you would go about installing as all of the instructions seem to require a Unix OS and a Terminal to install (An example which has both of these is Linux) and knowledge of the PHP installation. If you have both of those, there are instructions on how to compile it from source here (https://gmplib.org/manual/Installing-GMP.html), though you will also need to compile PHP with GMP, as said here (http://www.php.net/manual/en/gmp.installation.php).


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on November 03, 2015, 10:32:46 AM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
Do you test it after this modify on live server?

Not really, haven't tried it on a live server, I use Xampp for now.
I tried it on live server and Blocklo not the issue it's funcaptcha issue


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: cmdrAdam on November 04, 2015, 01:56:46 PM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
Do you test it after this modify on live server?

Not really, haven't tried it on a live server, I use Xampp for now.
I tried it on live server and Blocklo not the issue it's funcaptcha issue

hmm that's wierd because I haven't seen funCaptcha in this script, only reCaptcha. Are you sure aren't using keys from funcaptcha in reCaptcha service?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: mari88 on November 04, 2015, 10:03:11 PM
what made i wrong when i only see a blank page after uploadeing your script and edited config file.

http://yannik.biz/mi/   ???


kind regrads


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: investspot on November 07, 2015, 06:44:50 AM
what made i wrong when i only see a blank page after uploadeing your script and edited config file.

http://yannik.biz/mi/   ???


kind regrads

I guess this may have something to do with the php version. The script cannot work on php 5.2


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on November 07, 2015, 01:39:37 PM
what made i wrong when i only see a blank page after uploadeing your script and edited config file.

http://yannik.biz/mi/   ???


kind regrads
Have you tried removing the line error_reporting(0); from your config.php? That may tell you what is wrong.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: momore on November 09, 2015, 06:19:27 PM
Quote

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet

I know it has 2 pages :)

Did you saw how many pages has my website (http://www.freebtc.click) ?

It is the same script :)

Hey bro, I need your help.

I saw that your faucet is using Coinbase as processor.

I tried to use Coinbase too, I've trying for two whole days already, but always failed. 

I downloaded the "Master" version/branch of the script, but I always got a blank page, and I found it is caused from the "CoinbaseWalletProvider.php" file, once I removed the code "require_once 'WalletProviders/CoinbaseWalletProvider.php';" from "core.php", the site running good, but I could not use Coinbase though I set everything correct in the "config.php". 

I tried with "Blockchain" version/branch of the script as well, everything is running well, but I could not use Coinbase as well though I set everything correct in the "config.php".

PS: I tested with Blockchain, everything is running well.  But I want to use Coinbase.  Any idea how to fix it?  Thanks in advance.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on November 09, 2015, 06:26:29 PM
Quote

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet

I know it has 2 pages :)

Did you saw how many pages has my website (http://www.freebtc.click) ?

It is the same script :)

Hey bro, I need your help.

I saw that your faucet is using Coinbase as processor.

I tried to use Coinbase too, I've trying for two whole days already, but always failed.  

I downloaded the "Master" version/branch of the script, but I always got a blank page, and I found it is caused from the "CoinbaseWalletProvider.php" file, once I removed the code "require_once 'WalletProviders/CoinbaseWalletProvider.php';" from "core.php", the site running good, but I could not use Coinbase though I set everything correct in the "config.php".  


I tried with "Blockchain" version/branch of the script as well, everything is running well, but I could not use Coinbase as well though I set everything correct in the "config.php".

PS: I tested with Blockchain, everything is running well.  But I want to use Coinbase.  Any idea how to fix it?  Thanks in advance.

Hi

I dont know..
For me is working fine ..
I think is better to contact @Elbandi
I don't know too much about coding, php and these.




Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: momore on November 09, 2015, 06:46:00 PM
Quote

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet

I know it has 2 pages :)

Did you saw how many pages has my website (http://www.freebtc.click) ?

It is the same script :)

Hey bro, I need your help.

I saw that your faucet is using Coinbase as processor.

I tried to use Coinbase too, I've trying for two whole days already, but always failed.  

I downloaded the "Master" version/branch of the script, but I always got a blank page, and I found it is caused from the "CoinbaseWalletProvider.php" file, once I removed the code "require_once 'WalletProviders/CoinbaseWalletProvider.php';" from "core.php", the site running good, but I could not use Coinbase though I set everything correct in the "config.php".  


I tried with "Blockchain" version/branch of the script as well, everything is running well, but I could not use Coinbase as well though I set everything correct in the "config.php".

PS: I tested with Blockchain, everything is running well.  But I want to use Coinbase.  Any idea how to fix it?  Thanks in advance.

Hi

I dont know..
For me is working fine ..
I think is better to contact @Elbandi
I don't know too much about coding, php and these.


Hm, btw, which branch you use, blockchain or master?   It seemed Elbandi hadn't been here online for long time.

Thanks anyway for your fast reply.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: momore on November 09, 2015, 07:10:45 PM
Quote

The main script has only 2 pages, /faucet and /admin and i want to make another one, for example /privacypolicy, how can i do that. If i try to access example.org/privacypolicy it brings me to /faucet

I know it has 2 pages :)

Did you saw how many pages has my website (http://www.freebtc.click) ?

It is the same script :)

Hey bro, I need your help.

I saw that your faucet is using Coinbase as processor.

I tried to use Coinbase too, I've trying for two whole days already, but always failed.  

I downloaded the "Master" version/branch of the script, but I always got a blank page, and I found it is caused from the "CoinbaseWalletProvider.php" file, once I removed the code "require_once 'WalletProviders/CoinbaseWalletProvider.php';" from "core.php", the site running good, but I could not use Coinbase though I set everything correct in the "config.php".  


I tried with "Blockchain" version/branch of the script as well, everything is running well, but I could not use Coinbase as well though I set everything correct in the "config.php".

PS: I tested with Blockchain, everything is running well.  But I want to use Coinbase.  Any idea how to fix it?  Thanks in advance.

Hi

I dont know..
For me is working fine ..
I think is better to contact @Elbandi
I don't know too much about coding, php and these.


Hm, btw, which branch you use, blockchain or master?   It seemed Elbandi hadn't been here online for long time.

Thanks anyway for your fast reply.

I just checked his profile, it seems he's been online today.  ;D Just sent him a pm.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: maloibtc on November 09, 2015, 09:16:43 PM
Please, help !! How to make a button out of your account (not from the admin panel ) , and how to do that in 10 minutes the user returns to the page main? Please, help


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on November 10, 2015, 09:04:05 AM
Never mind I got it working, by deleting Blocklo folder (I won't be using it) and then commented out:
Code:
require_once 'BlockIo/lib/block_io.php';
in core.php (line 23)
Do you test it after this modify on live server?

Not really, haven't tried it on a live server, I use Xampp for now.
I tried it on live server and Blocklo not the issue it's funcaptcha issue

hmm that's wierd because I haven't seen funCaptcha in this script, only reCaptcha. Are you sure aren't using keys from funcaptcha in reCaptcha service?
Recheck the script files,you will find funCaptcha in templates/recaptcha.php


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: notaek on November 13, 2015, 07:42:00 AM
Can I integrate the script with WordPress database? I have a WordPress site and I want to use it as a micro-faucet.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: krishnapramod on November 26, 2015, 11:13:21 AM
Hi, whether the Xapo payout option in this script pays to Xapo users only (Xapo email or wallet) or to any bitcoin address?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on November 27, 2015, 08:23:08 PM
Hi, whether the Xapo payout option in this script pays to Xapo users only (Xapo email or wallet) or to any bitcoin address?
Change your config.php file // Allowed address types

Code:
allowEmail = false; 
to
allowEmail = true;

this will set the Xapo payout option to users Xapo email


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: -Lukas on January 22, 2016, 11:52:34 PM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on January 25, 2016, 05:43:25 PM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: senyorito123 on January 27, 2016, 06:38:19 AM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

ok do i need to put all the payment processor to the config.php file ??


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on January 27, 2016, 09:37:43 AM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

ok do i need to put all the payment processor to the config.php file ??

Hi

You just need to choose one payment processor (Blockchain, Coinbase, etc) and paste the infos in your config.php


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: senyorito123 on January 27, 2016, 09:51:22 AM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

ok do i need to put all the payment processor to the config.php file ??

Hi

You just need to choose one payment processor (Blockchain, Coinbase, etc) and paste the infos in your config.php

if you were me, what payment processor would you choose?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on January 27, 2016, 09:58:43 AM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

ok do i need to put all the payment processor to the config.php file ??

Hi

You just need to choose one payment processor (Blockchain, Coinbase, etc) and paste the infos in your config.php

if you were me, what payment processor would you choose?

I use Coinbase
Check your PM.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: -Lukas on January 29, 2016, 10:05:14 PM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

Hello, I already read everything but still do not get that part.

// Transaction fee in satoshis
Fee = 10,000;

The fee is for every cashout, or several withdrawals? I just do not understand the API blockchain.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 03, 2016, 10:37:57 AM
Hello, can someone explain to me how the payment system works this script (fees, time, outputs)? Sorry my Inglκs.
all you need to know in config.php file

Hello, I already read everything but still do not get that part.

// Transaction fee in satoshis
Fee = 10,000;

The fee is for every cashout, or several withdrawals? I just do not understand the API blockchain.
It's for Coinbase only


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: -Lukas on February 14, 2016, 04:54:42 PM
I created a new page called "refer" to show the link ref and banners, but the values that pull the server does not appear, are as follows: Refer and get (was supposed to have the value of <? Php echo $ referPercent;? > here)% of every dispense! This is your referral link: (here supposed to be the link that comes from <? Php echo $ reflink;>) but the values are blank. Does anyone know what can it be? or how to fix?

The values appear only on the page / faucet in any other page / faq / stats / refer, even if you are logged in with the address, the values are blank.

Thanks to anyone who can help.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on February 14, 2016, 05:11:44 PM
I created a new page called "refer" to show the link ref and banners, but the values that pull the server does not appear, are as follows: Refer and get (was supposed to have the value of <? Php echo $ referPercent;? > here)% of every dispense! This is your referral link: (here supposed to be the link that comes from <? Php echo $ reflink;>) but the values are blank. Does anyone know what can it be? or how to fix?

The values appear only on the page / faucet in any other page / faq / stats / refer, even if you are logged in with the address, the values are blank.

Thanks to anyone who can help.

What's your url? 
So we can take a look.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 14, 2016, 06:10:36 PM
I created a new page called "refer" to show the link ref and banners, but the values that pull the server does not appear, are as follows: Refer and get (was supposed to have the value of <? Php echo $ referPercent;? > here)% of every dispense! This is your referral link: (here supposed to be the link that comes from <? Php echo $ reflink;>) but the values are blank. Does anyone know what can it be? or how to fix?

The values appear only on the page / faucet in any other page / faq / stats / refer, even if you are logged in with the address, the values are blank.

Thanks to anyone who can help.
Are these other page / faq / stats / refer loaded can you see these pages?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: -Lukas on February 14, 2016, 10:50:07 PM
What's your url? 
So we can take a look.

Are these other page / faq / stats / refer loaded can you see these pages?

This is only a test site. http://coinbux.esy.es

When you enter, you need to make a claim to be able to show your id reference.
See the news or faq page and try clicking on your stats modal, having made a claim, you will realize that the values do not appear out of the page / faucet.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 15, 2016, 03:12:01 PM
What's your url? 
So we can take a look.

Are these other page / faq / stats / refer loaded can you see these pages?

This is only a test site. http://coinbux.esy.es

When you enter, you need to make a claim to be able to show your id reference.
See the news or faq page and try clicking on your stats modal, having made a claim, you will realize that the values do not appear out of the page / faucet.
Try to modify index.php file with your change.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: -Lukas on February 15, 2016, 07:05:32 PM
What's your url? 
So we can take a look.

Are these other page / faq / stats / refer loaded can you see these pages?

This is only a test site. http://coinbux.esy.es

When you enter, you need to make a claim to be able to show your id reference.
See the news or faq page and try clicking on your stats modal, having made a claim, you will realize that the values do not appear out of the page / faucet.
Try to modify index.php file with your change.

I was looking, and after awhile I found the problem, anyway thanks.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: creepland on February 17, 2016, 12:01:09 PM
Nice I need that script! Thanks for bump old topic. Used before faucetbox but there is a lot of bots for these faucets.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 17, 2016, 01:11:05 PM
What's your url? 
So we can take a look.

Are these other page / faq / stats / refer loaded can you see these pages?

This is only a test site. http://coinbux.esy.es

When you enter, you need to make a claim to be able to show your id reference.
See the news or faq page and try clicking on your stats modal, having made a claim, you will realize that the values do not appear out of the page / faucet.
Try to modify index.php file with your change.

I was looking, and after awhile I found the problem, anyway thanks.
Good that you find the problem. do you fix this problem if so share it with community.
 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: bramantip on February 22, 2016, 04:21:47 PM
Can anyone help me? Itried this but im getting server error 500. This is what I did
-I extracted the file
-Renamed config.sample.php to config.php
-changed values of db,username,pass
-imported structure.sql, then upgrade.0.6.sql

Is there anything else that I need to do?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on February 24, 2016, 09:49:42 PM
Can anyone help me? Itried this but im getting server error 500. This is what I did
-I extracted the file
-Renamed config.sample.php to config.php
-changed values of db,username,pass
-imported structure.sql, then upgrade.0.6.sql

Is there anything else that I need to do?
its server error , contact with your hosting proved  


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: bramantip on February 25, 2016, 10:20:39 AM
that's what i thought at first but all my other sites are fine.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: examplens on February 25, 2016, 10:18:51 PM
does somebody know whether http://welovebtc.com/ faucet use this Minifaucet script?
thanks


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on February 26, 2016, 01:50:48 PM
does somebody know whether http://welovebtc.com/ faucet use this Minifaucet script?
thanks

No, this is another script


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Superhitech on March 26, 2016, 05:13:36 AM
Not sure if this question has been asked before, (I don't want to read through 14 pages) but what is the advantage of using this script over a faucetbox script? Also, is it possible to change a faucet that is running on the faucetbox API to this script?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on March 26, 2016, 02:54:24 PM
Not sure if this question has been asked before, (I don't want to read through 14 pages) but what is the advantage of using this script over a faucetbox script?
It mainly depends on how you would like your faucet to work. The MiniFaucet script supports users having a balance and direct withdrawals to a Bitcoin address, while scripts from other microtransaction websites only support the API of the website. I don't think that MicroFaucet has as much in terms of security as the FaucetBox script however, though it can be added in.

Also, is it possible to change a faucet that is running on the faucetbox API to this script?
You would really just have to delete the current script and add MiniFaucet to your server instead, though the MiniFaucet script does support FaucetBox payouts.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Superhitech on March 26, 2016, 03:48:48 PM
Not sure if this question has been asked before, (I don't want to read through 14 pages) but what is the advantage of using this script over a faucetbox script?
It mainly depends on how you would like your faucet to work. The MiniFaucet script supports users having a balance and direct withdrawals to a Bitcoin address, while scripts from other microtransaction websites only support the API of the website. I don't think that MicroFaucet has as much in terms of security as the FaucetBox script however, though it can be added in.

Also, is it possible to change a faucet that is running on the faucetbox API to this script?
You would really just have to delete the current script and add MiniFaucet to your server instead, though the MiniFaucet script does support FaucetBox payouts.

Thanks for your reply. Theoretically, would a cashout limit help stop bots? What kind of security features can be added into this script that can't be added into a faucetbox one?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on March 26, 2016, 05:34:28 PM
Not sure if this question has been asked before, (I don't want to read through 14 pages) but what is the advantage of using this script over a faucetbox script?
It mainly depends on how you would like your faucet to work. The MiniFaucet script supports users having a balance and direct withdrawals to a Bitcoin address, while scripts from other microtransaction websites only support the API of the website. I don't think that MicroFaucet has as much in terms of security as the FaucetBox script however, though it can be added in.

Also, is it possible to change a faucet that is running on the faucetbox API to this script?
You would really just have to delete the current script and add MiniFaucet to your server instead, though the MiniFaucet script does support FaucetBox payouts.

Thanks for your reply. Theoretically, would a cashout limit help stop bots? What kind of security features can be added into this script that can't be added into a faucetbox one?
This script paying to Faucetbox ,xapo-mail ,Coinbase ,Blockchain and Bitcoind.

 better to read all posts in this topic you will know this script advantage.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on March 26, 2016, 06:22:41 PM
Theoretically, would a cashout limit help stop bots?
I'm not really sure. All I expect it would do would make it take a longer time for bots to be able to cashout.

What kind of security features can be added into this script that can't be added into a faucetbox one?
I suppose perhaps the login feature may help, though I somewhat doubt it and wouldn't rely on it. I don't think there are any sorts of security measures that the FaucetBox script doesn't have.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Superhitech on March 27, 2016, 01:19:31 AM
Theoretically, would a cashout limit help stop bots?
I'm not really sure. All I expect it would do would make it take a longer time for bots to be able to cashout.

What kind of security features can be added into this script that can't be added into a faucetbox one?
I suppose perhaps the login feature may help, though I somewhat doubt it and wouldn't rely on it. I don't think there are any sorts of security measures that the FaucetBox script doesn't have.

Ah ok, thanks. I won't change my faucet to use this script then, at least not at the moment.

Not sure if this question has been asked before, (I don't want to read through 14 pages) but what is the advantage of using this script over a faucetbox script?
It mainly depends on how you would like your faucet to work. The MiniFaucet script supports users having a balance and direct withdrawals to a Bitcoin address, while scripts from other microtransaction websites only support the API of the website. I don't think that MicroFaucet has as much in terms of security as the FaucetBox script however, though it can be added in.

Also, is it possible to change a faucet that is running on the faucetbox API to this script?
You would really just have to delete the current script and add MiniFaucet to your server instead, though the MiniFaucet script does support FaucetBox payouts.

Thanks for your reply. Theoretically, would a cashout limit help stop bots? What kind of security features can be added into this script that can't be added into a faucetbox one?
This script paying to Faucetbox ,xapo-mail ,Coinbase ,Blockchain and Bitcoind.

 better to read all posts in this topic you will know this script advantage.


Yes, but I was asking about the security measures. I already know that it supports many payment processors.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: soloasi on April 23, 2016, 09:22:03 PM
hi, first of all thanks Hoop for your help, as i dont want to be annoying to him, i will place some of my questions here...

I could set all the server side thing and now i can see the home psge of my pre-faucet, modifing the config.php file with the instructions and all, but the problem is that i cant go farther, this is what is shown on the home page after placing the recaptcha keys:

[img=http://s31.postimg.org/gjnfu8r2v/minifaucet_home.jpg] (http://postimg.org/image/gjnfu8r2v/)

and this is what i did on the config.php file:

[img=http://s31.postimg.org/5vjoveh3r/minifaucet_script.jpg] (http://postimg.org/image/5vjoveh3r/)

i wonder where is the problem. The recapcha doesnt appear, im using a .x10host.com free domain. Is it the problem?

 ??? ???



Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on April 24, 2016, 01:03:47 PM
hi, first of all thanks Hoop for your help, as i dont want to be annoying to him, i will place some of my questions here...

I could set all the server side thing and now i can see the home psge of my pre-faucet, modifing the config.php file with the instructions and all, but the problem is that i cant go farther, this is what is shown on the home page after placing the recaptcha keys:

[img=http://s31.postimg.org/gjnfu8r2v/minifaucet_home.jpg] (http://postimg.org/image/gjnfu8r2v/)

and this is what i did on the config.php file:

[img=http://s31.postimg.org/5vjoveh3r/minifaucet_script.jpg] (http://postimg.org/image/5vjoveh3r/)

i wonder where is the problem. The recapcha doesnt appear, im using a .x10host.com free domain. Is it the problem?

 ??? ???


First you are always welcome :)

  - Free webhosting and subdomain not good Chico. 

  - The recapcha don't appear on Home page but on faucet page.

  did recapcha appear  on faucet page?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: soloasi on April 24, 2016, 03:46:20 PM
hi, first of all thanks Hoop for your help, as i dont want to be annoying to him, i will place some of my questions here...

I could set all the server side thing and now i can see the home psge of my pre-faucet, modifing the config.php file with the instructions and all, but the problem is that i cant go farther, this is what is shown on the home page after placing the recaptcha keys:

[img=http://s31.postimg.org/gjnfu8r2v/minifaucet_home.jpg] (http://postimg.org/image/gjnfu8r2v/)

and this is what i did on the config.php file:

[img=http://s31.postimg.org/5vjoveh3r/minifaucet_script.jpg] (http://postimg.org/image/5vjoveh3r/)

i wonder where is the problem. The recapcha doesnt appear, im using a .x10host.com free domain. Is it the problem?

 ??? ???


First you are always welcome :)

  - Free webhosting and subdomain not good Chico. 

  - The recapcha don't appear on Home page but on faucet page.

  did recapcha appear  on faucet page?


 ;D hi hoop!, well.. im tryining free hosting first to see how it goes when all is set, because if it doesnt work i would pay a hosting service for nothing  :-\

in the other hand about the faucet page .. do you mean that the recapcha appears when i put my wallet and click on the green 'Go' button?, when i do that it shows me another page that says:

Code:
Not Found

The requested URL /faucet was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

maybe something wrong with the server config?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on April 25, 2016, 09:37:13 AM
hi, first of all thanks Hoop for your help, as i dont want to be annoying to him, i will place some of my questions here...

I could set all the server side thing and now i can see the home psge of my pre-faucet, modifing the config.php file with the instructions and all, but the problem is that i cant go farther, this is what is shown on the home page after placing the recaptcha keys:

[img=http://s31.postimg.org/gjnfu8r2v/minifaucet_home.jpg] (http://postimg.org/image/gjnfu8r2v/)

and this is what i did on the config.php file:

[img=http://s31.postimg.org/5vjoveh3r/minifaucet_script.jpg] (http://postimg.org/image/5vjoveh3r/)

i wonder where is the problem. The recapcha doesnt appear, im using a .x10host.com free domain. Is it the problem?

 ??? ???


First you are always welcome :)

  - Free webhosting and subdomain not good Chico. 

  - The recapcha don't appear on Home page but on faucet page.

  did recapcha appear  on faucet page?


 ;D hi hoop!, well.. im tryining free hosting first to see how it goes when all is set, because if it doesnt work i would pay a hosting service for nothing  :-\

in the other hand about the faucet page .. do you mean that the recapcha appears when i put my wallet and click on the green 'Go' button?, when i do that it shows me another page that says:

Code:
Not Found

The requested URL /faucet was not found on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

maybe something wrong with the server config?
Try to re-upload faucet page file or use another freehost.  here is one of them xhost.pw (http://xhost.pw)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: tomaa on May 04, 2016, 12:04:01 AM
Thanks a lot for the script!

I really like it and it's superb easy to learn! I had big troubles with FIB script and understanding it, but this one is great.

Good work!

Up to work to customize it and keep those bots away!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Bloxy on May 04, 2016, 04:31:47 AM
The script is pretty well made with almost no security flaws whatsoever.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: alfaboy23 on May 06, 2016, 07:51:24 AM
Good day.

I think I need help on this.

I already extract files in to the folder in my site (sub-domain), rename the config.sample.php to config.php, already changed the values of database, username and password in config.php, then imported the structure.sql and afterwards the upgrade.0.6.sql.

At first I got server error 500 then after I re-imported the upgrade.0.6.sql and test the site, the page goes blank now, no errors whatsoever, just blank.

The Php version of my hosting is 5.6.17 and MySQL is 5.6.29

I also already changed the PHP version to lower which are 5.3, 5.4 and 5.5 bur still the same, blank page

Am I missing something?

Thanks in advance.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on May 06, 2016, 10:51:19 AM
Good day.

I think I need help on this.

I already extract files in to the folder in my site (sub-domain), rename the config.sample.php to config.php, already changed the values of database, username and password in config.php, then imported the structure.sql and afterwards the upgrade.0.6.sql.

At first I got server error 500 then after I re-imported the upgrade.0.6.sql and test the site, the page goes blank now, no errors whatsoever, just blank.

The Php version of my hosting is 5.6.17 and MySQL is 5.6.29

I also already changed the PHP version to lower which are 5.3, 5.4 and 5.5 bur still the same, blank page

Am I missing something?

Thanks in advance.

try search the error message in webserver logs (different for every hosting provider). Most times, 500 error is a syntax error. verify that config.php has good php syntax. (missing ; at line end, missing closed colon, etc), or unix style line ending (\n).


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on May 06, 2016, 11:45:52 AM
@Elbandi: any progress regarding ETH integration?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Zer0_Bits on June 03, 2016, 09:18:11 PM
I need help.  When I tried to import "upgrade_0.6.sql"  after "structure.sql" it says:

Error
SQL query:

ALTER TABLE  `balances` ADD COLUMN  `referralbalance` BIGINT( 11 ) UNSIGNED NOT NULL AFTER  `balance` ;


MySQL said: Documentation

#1060 - Duplicate column name 'referralbalance'

What do I do?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on June 04, 2016, 06:35:36 AM
I need help.  When I tried to import "upgrade_0.6.sql"  after "structure.sql" it says:

Error
SQL query:

ALTER TABLE  `balances` ADD COLUMN  `referralbalance` BIGINT( 11 ) UNSIGNED NOT NULL AFTER  `balance` ;


MySQL said: Documentation

#1060 - Duplicate column name 'referralbalance'

What do I do?
Do not import the upgrade_sql


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: neegeeboo on June 05, 2016, 10:45:24 PM
I'll be checking this out later tonight...


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on June 10, 2016, 12:13:26 PM
I need help.  When I tried to import "upgrade_0.6.sql"  after "structure.sql" it says:

Error
SQL query:

ALTER TABLE  `balances` ADD COLUMN  `referralbalance` BIGINT( 11 ) UNSIGNED NOT NULL AFTER  `balance` ;


MySQL said: Documentation

#1060 - Duplicate column name 'referralbalance'

What do I do?
upgrade_0.6.sql only for previous script V.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: datalore on June 12, 2016, 03:34:38 PM
How does it work?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on June 14, 2016, 01:19:48 PM
How does it work?
Whats you mean?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: datalore on June 14, 2016, 02:15:57 PM

This is a custom script?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on June 16, 2016, 03:27:39 PM
No, its free script.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: paja93 on June 17, 2016, 08:04:56 PM
Hey,can you help me with cashout fee?
Its dont work.  ;D


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on June 17, 2016, 08:20:20 PM
Hey,can you help me with cashout fee?
Its dont work.  ;D

Hi

Did you set the fee value in config.php?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: paja93 on June 17, 2016, 08:36:47 PM
Yes and i try payout but i get full ammount.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: paja93 on June 17, 2016, 11:22:14 PM
Is there any explanation?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on June 19, 2016, 09:04:41 PM
Yes and i try payout but i get full ammount.

Sure you get the full payout, because the fee is paid by the faucet owner.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: paja93 on June 19, 2016, 09:19:25 PM
I dont understand.
For example if the fee set up to 5000 satoshies.
And if my member withdraw 20000, script need to send 15000 to my member,not 20000,or i think wrong?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on June 20, 2016, 05:19:11 AM
I dont understand.
For example if the fee set up to 5000 satoshies.
And if my member withdraw 20000, script need to send 15000 to my member,not 20000,or i think wrong?

Yes you are wrong.
If a user of your faucet withdraws 20000 you (as faucet owner) pay 25000 and the user receive 20000.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: paja93 on June 20, 2016, 07:50:57 AM
Why that?That is very stuppid option  :o
Its no sense.
How to make that when user withdraw for example 20000 receive 15000 from me?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: viralalert on July 24, 2016, 09:58:10 AM
Can someone taught me how to use solvemedia in this faucet?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: fikihafana on July 25, 2016, 02:39:02 PM
Thank you very much for this!, i really need faucet script. I will try to install it in my own server


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: FaucetRank.com on September 05, 2016, 04:17:46 AM
I'm thinking to give option to payout through faucet box or xapo but I want to know is this option already exists in this script or I need to modify it?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Youresioure on September 05, 2016, 06:10:01 PM
Although making money with hosting faucets may seem easy, but I've never ever successfully made money with faucet hosting :-/
I truly am interested in some advice from someone who's experienced in making money with hosting faucets.

And I'm still thankful for OP because I'm interested in project development and find the code very educational ;D


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Perlesvaus on October 30, 2016, 05:25:25 AM
Thanks for this contribution!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on November 02, 2016, 01:10:43 AM
I'm thinking to give option to payout through faucet box or xapo but I want to know is this option already exists in this script or I need to modify it?

 Yes,this option already exists in this script.you will fond many payout option in this script
 
 faucetbox,Xapo,coinbase,blockchain and bitcoined daemon too.

 All you need that to read each line of config file and add your info on it sql,rewards,wallet API etc..


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: dibon on November 15, 2016, 09:36:41 AM
Now, when faucetbox is closing, an option of epay payment system would be great to see in that code.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: krishnapramod on November 29, 2016, 10:41:23 AM
Now, when faucetbox is closing, an option of epay payment system would be great to see in that code.

Yeah, I had posted regrading this on the ePay thread and the OP told me that he would get in contact with the developer. Hope to see ePay as micropayment option on mini faucet script soon.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: bitcoinistx on November 29, 2016, 10:49:43 AM
please add epay.info
its the most popular now


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: krishnapramod on December 05, 2016, 11:13:41 AM
Now, when faucetbox is closing, an option of epay payment system would be great to see in that code.

Yeah, I had posted regrading this on the ePay thread and the OP told me that he would get in contact with the developer. Hope to see ePay as micropayment option on mini faucet script soon.

Epay support is available, https://gitlab.com/minifaucet/public/commits/master

Thanks a lot elbandi.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on December 06, 2016, 12:49:50 PM
Quote
Epay support is available, https://gitlab.com/minifaucet/public/commits/master

Thanks a lot elbandi.

One of the best free faucet scripts available.
I started my first faucet with this and run it without problems for more than 1 year.
I recommend it!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on December 06, 2016, 05:47:11 PM
Quote
Epay support is available, https://gitlab.com/minifaucet/public/commits/master

Thanks a lot elbandi.

One of the best free faucet scripts available.
I started my first faucet with this and run it without problems for more than 1 year.
I recommend it!
Agreed with you,minifaucet script is best free faucet scripts available.

 but this script needs some security improves. 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: babo on December 06, 2016, 08:40:57 PM
why dont use github? github have many users and many ppl want to contribute
and now is active 24pullrequest for december!
if you move project on github i contribute fast.. else i need to register gitlab etc etc


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 07, 2016, 01:00:00 AM
Agreed with you,minifaucet script is best free faucet scripts available.

 but this script needs some security improves. 
What do you mean "some security improves"?


anyway, i started to work on v2.0, new framework, easiest install/configuration, and more features.... estimated public release at end of year.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on December 07, 2016, 04:17:11 PM
Agreed with you,minifaucet script is best free faucet scripts available.

 but this script needs some security improves. 
What do you mean "some security improves"?


anyway, i started to work on v2.0, new framework, easiest install/configuration, and more features.... estimated public release at end of year.

A login system (with email confirmation) detection for bots, multiple accounts, ban all these duplicated accounts will increase the security.
Also adding new features: jackpot, an admin panel with more options, etc.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on December 07, 2016, 07:39:33 PM
Agreed with you,minifaucet script is best free faucet scripts available.

 but this script needs some security improves.  
What do you mean "some security improves"?


anyway, i started to work on v2.0, new framework, easiest install/configuration, and more features.... estimated public release at end of year.

A login system (with email confirmation) detection for bots, multiple accounts, ban all these duplicated accounts will increase the security.
Also adding new features: jackpot, an admin panel with more options, etc.
Yeah, a login system with email confirmation with both signup and send payout.

 so,users have to register their coin address and email but they can login with email only.

 also, option withdrawal verification link. when user request withdrawal his balance.
 
 all above will be best way to increase the security in my opinion.
 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on December 07, 2016, 09:04:38 PM
 
 Withdrawal verification link in this format is good idea.
 
 
Code:
Dear, user

We've received a withdrawal request of 0.00154667 BTC. The ensure your safety,
we require you to confirm the request.
Please click on the link below or copy and paste it into your browser to confirm your withdrawal.

http://www.exampel.com/confirmwithdraw?key=A13B50AAC3CFD9450B073EBB3F606DC3

This link will expire and become unusable within 1 hour for security reasons!

 Option or code will disable faucet on rotators most of bots come from it.

 As well features like jackpot,lottery and offer-wall are need to attract users, an admin panel with more options.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitcoinBarrel on December 09, 2016, 07:46:39 PM
Anyone know which files to edit to install Anti-bot links 5.50? And where to place the code


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jooj on December 09, 2016, 11:03:32 PM
 In my opinion, days for classic faucet it's gone. we need fresh idea and new generation of faucet sites.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on December 10, 2016, 12:28:04 PM
In my opinion, days for classic faucet it's gone. we need fresh idea and new generation of faucet sites.

This is my opinion too.
We already have a new generation of websites (with faucets included) for those who want to earn a few Satoshis.
Here is one: https://CoinDrip.com


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: PremiumCodeX on December 10, 2016, 06:23:00 PM
Could you write a ReadMe for this project? I am aware of the count of people who knew and loved this project before, but I have difficulties understanding how this script is different than others that I have found so far. I am sure about that you did not write this script with no reason and people love it with good reason, I am just asking you to sum up the advantages of this script.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: SparkedDev on December 10, 2016, 09:34:24 PM
Oh cool ill check this out later on.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: ahmedjadoon on December 23, 2016, 03:13:29 AM
Please reupload the source. https://gitlab.com/minifaucet/public no longer working.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: elbandi on December 23, 2016, 09:27:42 PM
Please reupload the source. https://gitlab.com/minifaucet/public no longer working.
Project exists, just gitlab has a known issue (https://gitlab.com/gitlab-org/gitlab-ce/issues/25893), after they solve the issue, project will be available again.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jooj on December 24, 2016, 01:35:42 AM
Please reupload the source. https://gitlab.com/minifaucet/public no longer working.
Project exists, just gitlab has a known issue (https://gitlab.com/gitlab-org/gitlab-ce/issues/25893), after they solve the issue, project will be available again.


 Is there an update about new Minifaucet version, I hope this will very soon


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitcoinBarrel on December 28, 2016, 02:31:39 PM
Please reupload the source. https://gitlab.com/minifaucet/public no longer working.
Project exists, just gitlab has a known issue (https://gitlab.com/gitlab-org/gitlab-ce/issues/25893), after they solve the issue, project will be available again.


 Is there an update about new Minifaucet version, I hope this will very soon

Any progress on the GitLab issue?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitcoinBarrel on December 31, 2016, 05:52:29 PM
I'm willing to pay 0.01 BTC if anyone can send me the Epay support files.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on December 31, 2016, 08:39:08 PM
I'm willing to pay 0.01 BTC if anyone can send me the Epay support files.

 i will send you this, but where i can send it ( your PM or your email) waiting your reply.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on December 31, 2016, 09:46:37 PM
I'm willing to pay 0.01 BTC if anyone can send me the Epay support files.

 Hi,

 I've been sent you my site MiniFaucet folder with Epay support via the email info@bitcoinbarrel.com .

 
 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: krishnapramod on January 01, 2017, 02:07:13 PM
I'm willing to pay 0.01 BTC if anyone can send me the Epay support files.

Now, when faucetbox is closing, an option of epay payment system would be great to see in that code.

Yeah, I had posted regrading this on the ePay thread and the OP told me that he would get in contact with the developer. Hope to see ePay as micropayment option on mini faucet script soon.

Epay support is available, https://gitlab.com/minifaucet/public/commits/master

Thanks a lot elbandi.

Sometimes checking the previous posts not only saves time, but also money :P

It would be nice if Elbandi would also add solvemedia to this script, have been trying to integrate it to my faucet, but not working. FunCaptcha is not free anymore so instead of that solvemedia :)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: hoop on January 01, 2017, 06:05:13 PM
I'm willing to pay 0.01 BTC if anyone can send me the Epay support files.

Now, when faucetbox is closing, an option of epay payment system would be great to see in that code.

Yeah, I had posted regrading this on the ePay thread and the OP told me that he would get in contact with the developer. Hope to see ePay as micropayment option on mini faucet script soon.

Epay support is available, https://gitlab.com/minifaucet/public/commits/master

Thanks a lot elbandi.

Sometimes checking the previous posts not only saves time, but also money :P

It would be nice if Elbandi would also add solvemedia to this script, have been trying to integrate it to my faucet, but not working. FunCaptcha is not free anymore so instead of that solvemedia :)
Seems to me gitlab issue is up and https://gitlab.com/minifaucet/public/commits/master page load an error message 404 The page you're looking for could not be found.
 and I agree with you about integration solvemedia, funcaptcha is very expensive for faucet owners.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Leonidos640 on March 01, 2017, 02:28:35 PM
How to login to the admin panel? And it is possible to alter this script to fit faucethub for dogecoin?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on March 02, 2017, 07:52:32 AM
How to login to the admin panel? And it is possible to alter this script to fit faucethub for dogecoin?

 Go to yourfaucet.com/admin and fail the admin password, faucethub not support by Minifaucet script at this time but Doge is supported.

 If you need  faucethub check this thread https://bitcointalk.org/index.php?topic=1679020.0


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Leonidos640 on March 02, 2017, 05:30:24 PM
Nothing happens(( the admin panel there is a blank page((


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on March 03, 2017, 08:11:15 AM
Nothing happens(( the admin panel there is a blank page((
What do you mean by the admin panel there is a blank page?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Leonidos640 on March 03, 2017, 11:06:01 AM
Administrative panel where I can turn off faucet - insert the keys and everything! A blank page means -- myfaucet.com/admin---http://prntscr.com/efhant  ???


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: superiorus on March 03, 2017, 11:16:14 AM
Administrative panel where I can turn off faucet - insert the keys and everything! A blank page means -- myfaucet.com/admin---http://prntscr.com/efhant  ???

The admin panel is not very important since it offer just a few basic infos about faucet (jumber of addresses, number of coins, faucet balalnce, etc), there are no setttings there.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: Leonidos640 on March 03, 2017, 11:49:50 AM
Administrative panel where I can turn off faucet - insert the keys and everything! A blank page means -- myfaucet.com/admin---http://prntscr.com/efhant  ???

The admin panel is not very important since it offer just a few basic infos about faucet (jumber of addresses, number of coins, faucet balalnce, etc), there are no setttings there.

Just like happened under faucethub to do and change to dogs - via http-get added a key to the hub-the balance displayed and awards will not count in the Cabinet faucet


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on March 04, 2017, 07:57:10 AM
Administrative panel where I can turn off faucet - insert the keys and everything! A blank page means -- myfaucet.com/admin---http://prntscr.com/efhant  ???

The admin panel is not very important since it offer just a few basic infos about faucet (jumber of addresses, number of coins, faucet balalnce, etc), there are no setttings there.

Just like happened under faucethub to do and change to dogs - via http-get added a key to the hub-the balance displayed and awards will not count in the Cabinet faucet
We need further explanation, then we can help in the right way. what you set in config file exactly? and so on.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: coinsnonstop on March 10, 2017, 07:00:05 AM
how to implement captcha in the login panel,
like this site http://freebits.site/main (http://freebits.site/main)  :-\


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: wnj4 on March 10, 2017, 09:49:58 PM
how to implement captcha in the login panel,
like this site http://freebits.site/main (http://freebits.site/main)  :-\
Check this thread https://bitcointalk.org/index.php?topic=1679020.0 , you will know more implement of new future in this.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: BitcoinBarrel on June 15, 2017, 08:45:25 PM
Any update for FaucetHub payment support since Epay is not recommended anymore?

EDIT: It is very easy to add FaucetHub support. All you have to do is open faucetbox.php in the root directory, and replace everything with the code from faucethub.php which you can download here: https://faucethub.io/phplib

Then just add your FaucetHub API key in the config.php file for FaucetBox and presto. FaucetHub's script is plug in play compatible with FaucetBox luckily.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jeizforshort on November 29, 2017, 06:57:25 PM
Hello, I've seen this script from faucet script blog, I want to try this faucet but I've got an error (I don't why).
I didnt change anything except the database details.
But, when I check my domain it says
Quote
This page isn’t working

MYDOMAINNAME is currently unable to handle this request.
HTTP ERROR 500


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: minifrij on November 30, 2017, 06:48:06 AM
Hello, I've seen this script from faucet script blog, I want to try this faucet but I've got an error (I don't why).
I didnt change anything except the database details.
But, when I check my domain it says
That's just the generic page that the browser shows when there is a PHP error, which is what this likely is. However, without seeing the error message it'd be near impossible to fix.

Do you have an error_log file? If not, can you put the things  into your .htaccess file? (https://stackoverflow.com/questions/6127980/enabling-error-display-in-php-via-htaccess-only[/url)


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: jeizforshort on November 30, 2017, 11:22:47 AM
Hello, I've seen this script from faucet script blog, I want to try this faucet but I've got an error (I don't why).
I didnt change anything except the database details.
But, when I check my domain it says
That's just the generic page that the browser shows when there is a PHP error, which is what this likely is. However, without seeing the error message it'd be near impossible to fix.

Do you have an error_log file? If not, can you put the things  into your .htaccess file?
 (https://stackoverflow.com/questions/6127980/enabling-error-display-in-php-via-htaccess-only[/url)
I add .htaccess file and the codes but this appears when I reload the webpage

Quote
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator at webmaster@mydomain to inform them of the time this error occurred, and the actions you performed just before this error.

More information about this error may be available in the server error log.

Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: masterman on November 30, 2017, 12:51:09 PM
Looks really good! Thanks!


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: sumair7230 on December 14, 2017, 07:36:23 PM
can this script be used to make faucet for any currency like b3coin or any newly launched currencies??


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: sumair7230 on December 16, 2017, 08:24:42 PM
i want to pay people from my wallet how to do this ?


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: sumair7230 on December 16, 2017, 08:53:41 PM
Can some one help me please i have three question
1. i want to make a faucet for zcash / monero/ bitsend and i will send money through my wallet how to do this
2. how to use fhub as payment provider 
3. how to set my bitcoin wallet as a provider coz i want to make payments through my wallet

Please help me 


Title: Re: MiniFaucet Script (a MyFaucet replacement)
Post by: sumair7230 on December 17, 2017, 03:17:21 AM
one more question when i click on claim the page takes me to /faucet but there is no file like this thats why i get error