Bitcoin Forum
June 24, 2024, 04:25:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 [62] 63 64 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 ... 156 »
  Print  
Author Topic: FaucetBOX.com Discussion  (Read 236942 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.
misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
November 20, 2015, 01:35:38 PM
 #1221

Do you know that Nastyhost blocks the Google bot?

Code:
http://v1.nastyhosts.com/66.249.90.77
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
November 20, 2015, 01:42:00 PM
 #1222

i know. but i cant update php files/libs folder.when i trying to upgrade to the new version my costum template not work as well.
Is it possible that you're using index.php file from r56, but libs/faucetbox.php file from version r60 or newer?
I don't believe it is the libs folder which is out of date, more your index.php file. There have been lots of upgrades to that as of late, and it should really be updated.
In addition, changing the libs folder shouldn't change your layout. AFAIK they have no direct interaction with each other.
thats correct.i changed libs file with newer. but nothing happened.so my template have a direct interaction with index.php changes!

New versions will check your templates for compatibility. If they see that there's something wrong, they'll tell you in the admin panel what you have to change to fix that. However it's probably not perfect...

Still having old index.php and new libs/ isn't supported. It may lead to all kinds of weird errors, like the one with 'Array to string conversion'.

Do you know that Nastyhost blocks the Google bot?

Code:
http://v1.nastyhosts.com/66.249.90.77

Yes. But I think that's correct. It would be a little weird if Google Bot came to your faucet, fill it's bitcoin address, solved the captcha and requested coins, don't you think Smiley?

It won't block Google Bot from accessing your faucet and crawling it, it will just block the bot from getting any coins.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
November 20, 2015, 01:43:00 PM
 #1223

i know. but i cant update php files/libs folder.when i trying to upgrade to the new version my costum template not work as well.
Is it possible that you're using index.php file from r56, but libs/faucetbox.php file from version r60 or newer?
I don't believe it is the libs folder which is out of date, more your index.php file. There have been lots of upgrades to that as of late, and it should really be updated.
In addition, changing the libs folder shouldn't change your layout. AFAIK they have no direct interaction with each other.
thats correct.i changed libs file with newer. but nothing happened.so my template have a direct interaction with index.php changes!

New versions will check your templates for compatibility. If they see that there's something wrong, they'll tell you in the admin panel what you have to change to fix that. However it's probably not perfect...

Still having old index.php and new libs/ isn't supported. It may lead to all kinds of weird errors, like the one with 'Array to string conversion'.

Do you know that Nastyhost blocks the Google bot?

Code:
http://v1.nastyhosts.com/66.249.90.77

Yes. But I think that's correct. It would be a little weird if Google Bot came to your faucet, fill it's bitcoin address, solved the captcha and requested coins, don't you think Smiley?

It won't block Google Bot from accessing your faucet and crawling it, it will just block the bot from getting any coins.
Hahaha if it is true
misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
November 22, 2015, 10:58:39 AM
 #1224

Friend Kazuldur, do you can block access to the /?p=admin?

For example in Wordpress can block access and only the IP address of the admin can be accessed there.

Code:
<Files ~ "^wp-login.php">
Order deny,allow
Deny from all
allow from IP 222.222.222.222
</Files>

Thank you
burner84
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile
November 22, 2015, 12:32:30 PM
Last edit: November 22, 2015, 12:45:50 PM by burner84
 #1225

Hello! I'm getting these errors on my site http://free-satoshis.com/errors.png .

What could be wrong?

My bad Smiley Curl was disabled in config.php
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
November 22, 2015, 01:48:26 PM
 #1226

Friend Kazuldur, do you can block access to the /?p=admin?

For example in Wordpress can block access and only the IP address of the admin can be accessed there.
snip

Thank you
I believe you can put something similar to this on the end of the ifs on line 1574 and 2024:
1574 - if(!$disable_admin_panel && array_key_exists('p', $_GET) && $_GET['p'] == 'admin' && $_SERVER['REMOTE_ADDR'] == 'IPHERE'){
2024 - } elseif(!$disable_admin_panel && array_key_exists('p', $_GET) && $_GET['p'] == 'password-reset' && $_SERVER['REMOTE_ADDR'] == 'IPHERE') {

Please correct me if wrong.
misterbit
Sr. Member
****
Offline Offline

Activity: 350
Merit: 250



View Profile
November 22, 2015, 02:49:08 PM
Last edit: November 22, 2015, 03:17:11 PM by misterbit
 #1227

Friend Kazuldur, do you can block access to the /?p=admin?

For example in Wordpress can block access and only the IP address of the admin can be accessed there.
snip

Thank you
I believe you can put something similar to this on the end of the ifs on line 1574 and 2024:
1574 - if(!$disable_admin_panel && array_key_exists('p', $_GET) && $_GET['p'] == 'admin' && $_SERVER['REMOTE_ADDR'] == 'IPHERE'){
2024 - } elseif(!$disable_admin_panel && array_key_exists('p', $_GET) && $_GET['p'] == 'password-reset' && $_SERVER['REMOTE_ADDR'] == 'IPHERE') {

Please correct me if wrong.
Thanks a lot

It works!  Wink
Dobrii
Sr. Member
****
Offline Offline

Activity: 864
Merit: 260


View Profile WWW
November 22, 2015, 04:24:22 PM
 #1228

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
lelouch90
Full Member
***
Offline Offline

Activity: 224
Merit: 100


★777Coin.com★ Fun BTC Casino!


View Profile
November 22, 2015, 04:27:47 PM
 #1229

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
Because it's a bit particular...even more than few days ago.
Anyway don't worry because with the current rewards it worked for a few hours and it's dry since yesterday Smiley

Dobrii
Sr. Member
****
Offline Offline

Activity: 864
Merit: 260


View Profile WWW
November 22, 2015, 04:38:36 PM
 #1230

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
Because it's a bit particular...even more than few days ago.
Anyway don't worry because with the current rewards it worked for a few hours and it's dry since yesterday Smiley

He forces the user to click on advertising from Google, by substitution of a button. Ban him for that!
lelouch90
Full Member
***
Offline Offline

Activity: 224
Merit: 100


★777Coin.com★ Fun BTC Casino!


View Profile
November 22, 2015, 05:04:30 PM
 #1231

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
Because it's a bit particular...even more than few days ago.
Anyway don't worry because with the current rewards it worked for a few hours and it's dry since yesterday Smiley

He forces the user to click on advertising from Google, by substitution of a button. Ban him for that!
Welcome to the faucet world(the dark side).

newcoins1978
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile
November 22, 2015, 05:04:42 PM
 #1232

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
Because it's a bit particular...even more than few days ago.
Anyway don't worry because with the current rewards it worked for a few hours and it's dry since yesterday Smiley

He forces the user to click on advertising from Google, by substitution of a button. Ban him for that!

This is against Google's TOS. Reporting him (make sure to make a printscreen) will disable his account.

Since google works with IBAN he will probaly never be able to make an account with them and thus scam people.
lelouch90
Full Member
***
Offline Offline

Activity: 224
Merit: 100


★777Coin.com★ Fun BTC Casino!


View Profile
November 22, 2015, 05:32:21 PM
 #1233

Kazuldur , you must start ban domains permanently from the list and using API key , the cheating is too much  Angry Angry Angry
If you find a cheating faucet just ignore it, report it if you want....it's simple Smiley

Also faucetbox doesn't care if you're trying to get fraudolent click on ads or if you're scaming people...they are just offering an api and you can do whatever you want with it.

bittamak
Sr. Member
****
Offline Offline

Activity: 444
Merit: 250


View Profile
November 24, 2015, 07:20:11 AM
 #1234

Kazuldur, Any new coins are in consideration for faucetbox addition?
Kazuldur (OP)
Legendary
*
Offline Offline

Activity: 971
Merit: 1000


View Profile
November 24, 2015, 11:44:41 AM
 #1235

Kazuldur, Any new coins are in consideration for faucetbox addition?

Currently no.

Unless stated otherwise, all opinions are of my own, not FaucetBOX.com's.
newcoins1978
Sr. Member
****
Offline Offline

Activity: 406
Merit: 250


View Profile
November 24, 2015, 03:14:19 PM
 #1236

Am I the only one that has something positive to say about faucetbox?

I can see most of you walking into trouble but I've never had a problem with faucetbox so far.
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
November 24, 2015, 05:29:55 PM
 #1237

Am I the only one that has something positive to say about faucetbox?

I can see most of you walking into trouble but I've never had a problem with faucetbox so far.
A lot of the people here post for support on the problems they are having, that doesn't make a service or script bad. A great deal of these posts are about add-ons to the script.
I expect that a lot of the faucet owners here would agree that FaucetBox is a great service.
defaultking
Full Member
***
Offline Offline

Activity: 140
Merit: 100


View Profile WWW
November 24, 2015, 05:51:31 PM
 #1238

Why on the website http://greensatoshi.com/ no button "Get reward"? Constantly pops up advertising, I can not get the reward.
Because it's a bit particular...even more than few days ago.
Anyway don't worry because with the current rewards it worked for a few hours and it's dry since yesterday Smiley

He forces the user to click on advertising from Google, by substitution of a button. Ban him for that!

He must have received the feedback because the button to make the claim has magically reappeared on his faucet.
hawkfx
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
November 25, 2015, 01:06:51 PM
 #1239

hey site is down, can you check it please...
minifrij
Legendary
*
Offline Offline

Activity: 2324
Merit: 1267


In Memory of Zepher


View Profile WWW
November 25, 2015, 01:30:46 PM
 #1240

hey site is down, can you check it please...
Works fine for me, might be a problem on your end.
Pages: « 1 ... 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 [62] 63 64 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 ... 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!