Pages:
Author

Topic: [FREE] Simple Faucet Script - Open your own faucet - page 13. (Read 34257 times)

legendary
Activity: 2492
Merit: 2150
Crypto Swap Exchange
i try use this faucet on freebtc.xaa.pl but when i solve captcha: "Abusing the system is not allowed. Try again"
Sad

I can't access your page to test and give another point of view..

are you trying to claim 2x? without wait the timer or something like that?
full member
Activity: 680
Merit: 103
i try use this faucet on freebtc.xaa.pl but when i solve captcha: "Abusing the system is not allowed. Try again"
Sad
legendary
Activity: 2492
Merit: 2150
Crypto Swap Exchange
The script works on 5.6 too

Is there not anything else than PHP 7.0 like 5.4, 5.5 or 5.6? The template system of the script is deprecated in the version PHP 7.0.

Cheers
Salmen

Thanks! The host have 5.6 and the script is working, however this changed my charset but it's fixed now..
Thank you willy_00/Salmen!
legendary
Activity: 1059
Merit: 1020
I am new to being able to use script when you are designing a website.  How easy can this be installed and what program can I use to edit the site and layout?  If it helps at all, I am used to useing Frontpage!!!  I know years old and not in use any more.  Let me know.

Use another template, and paste this line {$content} on the body. I used the wordpad lol Grin


Hey Salmen, I have a problem with PHP version, in 5.5 runs OK but the host will put this version off.. and on PHP 7.0 only shows a blank page. What can I do?  Cry
Is there not anything else than PHP 7.0 like 5.4, 5.5 or 5.6? The template system of the script is deprecated in the version PHP 7.0.

Cheers
Salmen

I am new to being able to use script when you are designing a website.  How easy can this be installed and what program can I use to edit the site and layout?  If it helps at all, I am used to useing Frontpage!!!  I know years old and not in use any more.  Let me know.
Editing template is easy. Replace the template with the default template in the directory /templates and add from the default template the spaceholder such as {$content}.

Cheers
Salmen
member
Activity: 70
Merit: 10
Age does not limit my ability
I am new to being able to use script when you are designing a website.  How easy can this be installed and what program can I use to edit the site and layout?  If it helps at all, I am used to useing Frontpage!!!  I know years old and not in use any more.  Let me know.

Use another template, and paste this line {$content} on the body. I used the wordpad lol Grin


Hey Salmen, I have a problem with PHP version, in 5.5 runs OK but the host will put this version off.. and on PHP 7.0 only shows a blank page. What can I do?  Cry
The script works on 5.6 too
legendary
Activity: 2492
Merit: 2150
Crypto Swap Exchange
I am new to being able to use script when you are designing a website.  How easy can this be installed and what program can I use to edit the site and layout?  If it helps at all, I am used to useing Frontpage!!!  I know years old and not in use any more.  Let me know.

Use another template, and paste this line {$content} on the body. I used the wordpad lol Grin


Hey Salmen, I have a problem with PHP version, in 5.5 runs OK but the host will put this version off.. and on PHP 7.0 only shows a blank page. What can I do?  Cry
full member
Activity: 236
Merit: 250
I am new to being able to use script when you are designing a website.  How easy can this be installed and what program can I use to edit the site and layout?  If it helps at all, I am used to useing Frontpage!!!  I know years old and not in use any more.  Let me know.
legendary
Activity: 1059
Merit: 1020
Can I use this script for dogecoin?
Sure. Only change the keywords BTC to DOGE especially on account.php. For the payouts: 1 Satoshi is 0.00000001 DOGE. Likely, you need to adjust the mysql configuration for the column 'balance':
Code:
  `balance` decimal(18,8) NOT NULL,

Have a nice day!

Cheers
Salmen
hero member
Activity: 762
Merit: 500
 Can I use this script for dogecoin?
legendary
Activity: 2492
Merit: 2150
Crypto Swap Exchange
Amazing job!
Weeks ago I found this script on Github and modified a little to make my own faucet, this week I found this topic and the Salmen helped me with the bugs I found.
You can check my faucet here to view a example from this script: http://www.bitcoinamerica.com.br/games/

A nice guy doing a good job for the community! Thanks for share your job with us!
legendary
Activity: 1059
Merit: 1020
Thank you very much

I think I'd better again up files. I will download the version of your website
I just updated the download file on my website. Please download it now.
newbie
Activity: 42
Merit: 0
Thank you very much

I think I'd better again up files. I will download the version of your website
legendary
Activity: 1059
Merit: 1020
from github

I figured out.

In index.php, the login part, change the following code:

Code:
$AddressCheck = $mysqli->query("SELECT * FROM faucet_user_list WHERE address = '$Address' LIMIT 1")->fetch_row()[0];

to

Code:
$AddressCheck = $mysqli->query("SELECT COUNT(id) FROM faucet_user_list WHERE address = '$Address' LIMIT 1")->fetch_row()[0];

This error caused duplicate entries, remove in the table 'user_list' the entries with the same bitcoin address.

In includes/session.php change the code with the new code from github: https://github.com/Salmen2/Faucetbox-Faucet/blob/master/includes/session.php

Cheers
Salmen
newbie
Activity: 42
Merit: 0
from github
legendary
Activity: 1059
Merit: 1020
hello, I have upgraded my faucet, in my pc and with firefox adn chrome navigator works perfectly, but some users have problems:

http://bits4all.one/faucet1

- You have entered the correct URL.
- You are connected to the Internet.
- Your firewall is properly configured.


Error code 310 (net::ERR_TOO_MANY_REDIRECTS)

yes site not loaded mate bad request )


Hello,
Did you download the script from Github or from my site?

Cheers
Salmen
newbie
Activity: 42
Merit: 0
hello, I have upgraded my faucet, in my pc and with firefox adn chrome navigator works perfectly, but some users have problems:

http://bits4all.one/faucet1

- You have entered the correct URL.
- You are connected to the Internet.
- Your firewall is properly configured.


Error code 310 (net::ERR_TOO_MANY_REDIRECTS)

yes site not loaded mate bad request )

legendary
Activity: 1059
Merit: 1020
There is an issue with the referral system.

Please change in index.php the code line

Code:
$mysqli->query("UPDATE faucet_user_list Set balance = balance + $referralCommissionBTC, last_claim = '$timestamp' WHERE id = '{$user['referred_by']}'")

to

Code:
$mysqli->query("UPDATE faucet_user_list Set balance = balance + $referralCommissionBTC WHERE id = '{$user['referred_by']}'");

Cheers
Salmen
sr. member
Activity: 339
Merit: 250
hi salmen, can i set minimum withdraw ?

note: already know how to set minimum Cheesy
legendary
Activity: 1059
Merit: 1020
Very good work  Smiley is this script prevent bots?

You can block TOR, Proxy and VPN users.


1. Replace in 'includes/templates.settings'  the code $navLinks = [["Faucet", "index.php"]]; to $navLinks = [];

2. You can change the Name in the admin.php or in the database in the table 'faucet_settings'.

3. Fill your Faucetbox.com Balance. Go to Faucetbox.com and deposit some Satoshis.

4. Is your adsense account approved? If not, it will show a white screen.

Cheers
Salmen

hello salmen. it is a good script Smiley thanks for this script.

but i got some error if i input bitcoin address, logout and the input another bitcoin address at same IP. then my website cant open at my ip. i must clear history and cookies, and if i input again my bitcoin address, i got error again.

it saying
" The page isn't redirecting properly

Firefox has detected that the server is redirecting the request for this address in a way that will never complete.

This problem can sometimes be caused by disabling or refusing to accept cookies. "
 
what should i do ? please help. my website is : http://xyzbitrade.xyz

because, i try at your site http://salmen.website/Faucet/ . its not error, but back at first page. please help. thank you.

because many people use IP dynamic, like me.
if i reset modem, i get new IP.


Hello,
I tried it and I got the same error. Did you made any changes?

Cheers
Salmen

My though is rondm pin code for each  withdrawal is better.

Wtf? Think about if you phone would have random pin every time you use it, how could you use it at all?
Or have you misunderstood the difference between captcha and pin code? Pin code is 4-12 digit password.
No,you misunderstood my point.

we will make the script generator a random pin code for each  withdrawal as Withdrawal Verification.   

But how can real people know the pin if it changes every time?
And if it is shown to you when you try to make withdraw, then it is just a captcha.
A pin code for each withdrawal? How should it works? They generate a code and need to enter it?
legendary
Activity: 1274
Merit: 1000
My though is rondm pin code for each  withdrawal is better.

Wtf? Think about if you phone would have random pin every time you use it, how could you use it at all?
Or have you misunderstood the difference between captcha and pin code? Pin code is 4-12 digit password.
No,you misunderstood my point.

we will make the script generator a random pin code for each  withdrawal as Withdrawal Verification.   

But how can real people know the pin if it changes every time?
And if it is shown to you when you try to make withdraw, then it is just a captcha.
Pages:
Jump to: