Bitcoin Forum
May 20, 2024, 02:12:07 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 [115] 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 »
  Print  
Author Topic: FaucetBOX.com Discussion  (Read 236938 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic.
grosminer
Hero Member
*****
Offline Offline

Activity: 718
Merit: 500



View Profile
May 05, 2016, 02:06:28 PM
 #2281

It is notice, not really an error.

Replace:
Code:
  public function is_valid() {
    return $_SESSION['antibotlinks']['valid'];
  }

With:
Code:
  public function is_valid() {
    if (empty($_SESSION['antibotlinks']['valid'])) {
      $_SESSION['antibotlinks']['valid']=false;
    }
    return $_SESSION['antibotlinks']['valid'];
  }

I plan in doing completely new version but waiting to see if FB will publish the script with more open license Smiley

It works!
Thank you very much.
n3rvi0zz0
Sr. Member
****
Offline Offline

Activity: 289
Merit: 250


View Profile
May 05, 2016, 06:54:05 PM
 #2282

I really like the concept of Faucetbox but here is the problem i can not modify the template as much as i want, the site still looking a to another shitty faucet.

what is the easy way to implement a template from a normal website in faucetbox??


thanks a lot guys


have a look to https://darkhash.co.uk

https://bizzilion.com/?ref=n3rvi0zz0

Earn up to 1.5% daily investing in the best platform of internet
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
May 05, 2016, 07:04:10 PM
 #2283

I really like the concept of Faucetbox but here is the problem i can not modify the template as much as i want, the site still looking a to another shitty faucet.
what is the easy way to implement a template from a normal website in faucetbox??

thanks a lot guys
have a look to https://darkhash.co.uk
Learn a decent amount of HTML and CSS. You can completely change the way your faucet looks if you know your way around both of those well.

If you want to implement a faucet into a normal website however, one way I used on an older site of mine was to make a separate page with a bare-bones faucet (E.G Just the address input, captcha and submit button. Any anti-bot features should probably go there too) then to use an <iframe> tag to put that page into your already existing webpage design.
AK81
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
May 06, 2016, 04:04:31 AM
 #2284

I really like the concept of Faucetbox but here is the problem i can not modify the template as much as i want, the site still looking a to another shitty faucet.
what is the easy way to implement a template from a normal website in faucetbox??

thanks a lot guys
have a look to https://darkhash.co.uk
Learn a decent amount of HTML and CSS. You can completely change the way your faucet looks if you know your way around both of those well.

If you want to implement a faucet into a normal website however, one way I used on an older site of mine was to make a separate page with a bare-bones faucet (E.G Just the address input, captcha and submit button. Any anti-bot features should probably go there too) then to use an <iframe> tag to put that page into your already existing webpage design.

Indeed, working on a little side project right now, this is what I have so far;

http://92.222.76.28/

What do you think?
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
May 06, 2016, 06:31:37 AM
 #2285

Indeed, working on a little side project right now, this is what I have so far;

http://92.222.76.28/

What do you think?
You don't seem to have a PHP parser installed on your server, as it is just showing the FaucetainABox Source code for me.
If you're trying to host your own server and having trouble, there are packages such as Wamp and XAMPP that come with PHP/MySQL installed. The only problem may be that you might have to install additional PHP libraries to have the script work fully.
AK81
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
May 06, 2016, 03:03:12 PM
 #2286

Indeed, working on a little side project right now, this is what I have so far;

http://92.222.76.28/

What do you think?
You don't seem to have a PHP parser installed on your server, as it is just showing the FaucetainABox Source code for me.
If you're trying to host your own server and having trouble, there are packages such as Wamp and XAMPP that come with PHP/MySQL installed. The only problem may be that you might have to install additional PHP libraries to have the script work fully.

My bad, I was taking care of some server maintenance. I will be installing the SSL cert later and fixing the issues with the website loading time.

http://www.bitcoinfaucet.pw/ is the new domain.

Hi, I see this faucet http://ninjafaucet.org/ have a login system verify with e-mail. I think it very nice.

How can I do it? We can allow gmail, yahoo,... to prevent bots use free email system?

There is an exploit with your anti-bot script mate, you see when you check the selection box the 'Claim Reward' blue button flash's active for half a second when it should be grey due to me having ad-block enabled. This means, users can technically claim even with adblock on.
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
May 06, 2016, 07:18:06 PM
 #2287

I plan in doing completely new version but waiting to see if FB will publish the script with more open license Smiley

I expect we'll release r63 with GPLv3 license before Monday.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
AK81
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
May 07, 2016, 07:31:20 AM
 #2288

I plan in doing completely new version but waiting to see if FB will publish the script with more open license Smiley

I expect we'll release r63 with GPLv3 license before Monday.

Brilliant, I will delay my launch until r63 is out then. Thanks for the update.
n3rvi0zz0
Sr. Member
****
Offline Offline

Activity: 289
Merit: 250


View Profile
May 07, 2016, 07:38:14 AM
 #2289

what minds and update install antibots ink again?

also i have a doubt, after install the antibots link and delete the button claim your reward. the delay i have of 40 seconds before show the button dissapear, how i can link the new button with the delay was in the system already?? must be one or two lines of code right?



https://bizzilion.com/?ref=n3rvi0zz0

Earn up to 1.5% daily investing in the best platform of internet
LTU_btc
Legendary
*
Offline Offline

Activity: 3066
Merit: 1336


Slava Ukraini!


View Profile WWW
May 07, 2016, 09:59:14 PM
 #2290

Kazuldur, I have suggestion for you. Now in adress check page we can see Total paid, Total accumulated, Average income, Estimated time to reach threshol and earnings stats in past 16 days. But we can't know how much we earned from referrals total, only we can check referral earnings in past 2 weeks. Is it would possible in future to add stats how much we earnded from referrals total?

misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
May 07, 2016, 11:35:20 PM
 #2291

Thank you very much for the update  Smiley, a question.
How can I send blocked visits a URL?
For example
Code:
yourdomain.com/blockeds.php
Gifted
Hero Member
*****
Offline Offline

Activity: 504
Merit: 501



View Profile
May 07, 2016, 11:39:23 PM
 #2292

Is there a Faucetbox faucet script that holds a balance threshold before it goes to faucetbox??

I built a script that holds the balance before it goes to faucetbox.
Github link: https://github.com/Salmen2/Faucetbox-Faucet

Cheers
Salmen
Thankyou
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
May 08, 2016, 01:18:39 AM
 #2293

How can I send blocked visits a URL?
For example
Code:
yourdomain.com/blockeds.php
You can edit the banned() function to redirect your users. At line 1467, you can replace:
Code:
http_response_code(500);
With:
Code:
header('Location: PAGE.PHP');
misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
May 08, 2016, 08:19:22 AM
 #2294

How can I send blocked visits a URL?
For example
Code:
yourdomain.com/blockeds.php
You can edit the banned() function to redirect your users. At line 1467, you can replace:
Code:
http_response_code(500);
With:
Code:
header('Location: PAGE.PHP');
Thank you  Smiley
mbuk81
Sr. Member
****
Offline Offline

Activity: 700
Merit: 250


View Profile
May 17, 2016, 02:14:10 PM
 #2295

is there anything wrong with faucet box deposit as my deposit to my faucet are not getting confirmed any help would be helpful thank you

HIGH PAYING BITCOIN FAUCET ONLY AT SWITCH-BUX PTC BITCOIN FAUCET CLAIM EVERY 30 MINS AND GET 50 SATOSHI EVERYTIME
BitcoinFuture99
Member
**
Offline Offline

Activity: 120
Merit: 10


View Profile
May 17, 2016, 05:06:39 PM
 #2296

is there anything wrong with faucet box deposit as my deposit to my faucet are not getting confirmed any help would be helpful thank you
If not confirmed u will receive it back.what is TX of transaction
gydropool
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
May 18, 2016, 09:47:48 AM
 #2297

How do the limits on winnings for countries?
Bytecoiner419
Hero Member
*****
Offline Offline

Activity: 637
Merit: 511


I ❤ the bitcoin community


View Profile WWW
May 19, 2016, 02:48:17 PM
 #2298


Kazuldur I just want to say thank you for the hard work you do for the crypto community. It really means allot to me and I only use your script for my faucets and my free faucet hosting service.

Keep up the great work!  Wink

▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
🏆BitcoinsBest.Com🏆 👉 Buy Ad Space, LIVE BTC Casino & Crypto Articles 🌟
BitcoinFuture99
Member
**
Offline Offline

Activity: 120
Merit: 10


View Profile
May 19, 2016, 04:12:17 PM
 #2299

Faucetbox faucet list is worst. It should not be on basis of votes. It should be categorised on basis of time between claims and the amount of satoshi it gives per claim. It is too hard to know about high paying faucets. The top most faucet in list only gives 100 satoshi and still they are on top. Filter should be applied to catogries so that any one can get basic info about faucet. Also voting looks much suspesious.
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
May 19, 2016, 04:27:24 PM
 #2300

Faucetbox faucet list is worst. It should not be on basis of votes. It should be categorised on basis of time between claims and the amount of satoshi it gives per claim. It is too hard to know about high paying faucets. The top most faucet in list only gives 100 satoshi and still they are on top. Filter should be applied to catogries so that any one can get basic info about faucet. Also voting looks much suspesious.

That's how it worked before and it was even worse. However FaucetBOX.com isn't a faucet list, we're a payment cache. I really recommend using other lists.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
Pages: « 1 ... 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 [115] 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 »
  Print  
 
Jump to:  

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