Author

Topic: Faucet Owner-Do you want to put shortlink on claim button ? (Read 2309 times)

hero member
Activity: 1540
Merit: 508
i want to put it on my faucet, how can i put it ?
I don't have time to write a toturial for this now, but you can check my script http://coinbox.club/threads/free-coinbox-faucet-script.5/
member
Activity: 103
Merit: 10
i want to put it on my faucet, how can i put it ?
full member
Activity: 252
Merit: 100
Kiixer
Thanks for the information, very good friend.  Grin Grin
newbie
Activity: 1
Merit: 0
where can I fix the code and instructions for the shorlink
is for plugin wordress
https://wordpress.org/plugins/bitcoin-faucet/
newbie
Activity: 23
Merit: 0
need help how to add this in wordpress bitcoin faucet by 99bitcoin.
just a newbie here so a step by step process would be greatly appreciated.
thanks in advance.
newbie
Activity: 4
Merit: 0
hi everyone

you can put ANY url shortener srevice to your claim button.
i will explain you how.. (avoid adyou.me service - it's scam!)
the best option is to put url shortener, that pays multiple times / show / day  , because it pays for every claim

but there is a workaround to use more url shortener services to one single claim button - but you need some DB skills

ok let's show how to do it with single url shortener..

put a button tag inside
 
tags where form action address will contain url shortener generated link...
this shortener link will point to (for example) claimcheck.php on your faucet.

your claimcheck.php can look like this:

Code:
$rlink =$_SERVER['HTTP_REFERER'];  //you will assign to $rlink variable the page fro where you are redirected to claimcheck.php
if (($rlink=='http://yourutlshortener/blah'//note that some url shorteners have a little different return address - test it first, before running for public
{
//put here your payout code to microwallet or add credits to your balance

header('Location: ./index.php?msg=you claimed xy satoshis'); //?msg = optional - you can parse on main page how much satoshis claimed (if you are giving random amount of satoshis)
//put to index.php $msg = $_GET['msg]   then echo $msg as php code somewhere to your index.php
}
//if the claimcheck.php was NOT redirected from your URL shortener service, simply go back to index.php, maybe with some error code
header('Location: ./index.php?msg=your claim was not successful')
?>


great idea...
but it doesn't work for me:
- i put my shortlink in an action tag, that was actually missing at all in the form;
- the final link was messed up, basically added to host url;
- i don't have enough skill to fix it... ;-)
member
Activity: 64
Merit: 10
It doesnt work for adf.ly, because they dont send HTTP_REFERER header.
sr. member
Activity: 660
Merit: 350
NOBT - WNOBT your saving bank◕◡◕
Seems it is interesting method but the problem is redirect the user to other site,so how can users get rewards? 
hero member
Activity: 1540
Merit: 508
hi everyone

you can put ANY url shortener srevice to your claim button.
i will explain you how.. (avoid adyou.me service - it's scam!)
the best option is to put url shortener, that pays multiple times / show / day  , because it pays for every claim

but there is a workaround to use more url shortener services to one single claim button - but you need some DB skills

ok let's show how to do it with single url shortener..

put a button tag inside
 
tags where form action address will contain url shortener generated link...
this shortener link will point to (for example) claimcheck.php on your faucet.

your claimcheck.php can look like this:

Code:
$rlink =$_SERVER['HTTP_REFERER'];  //you will assign to $rlink variable the page fro where you are redirected to claimcheck.php
if (($rlink=='http://yourutlshortener/blah'//note that some url shorteners have a little different return address - test it first, before running for public
{
//put here your payout code to microwallet or add credits to your balance

header('Location: ./index.php?msg=you claimed xy satoshis'); //?msg = optional - you can parse on main page how much satoshis claimed (if you are giving random amount of satoshis)
//put to index.php $msg = $_GET['msg]   then echo $msg as php code somewhere to your index.php
}
//if the claimcheck.php was NOT redirected from your URL shortener service, simply go back to index.php, maybe with some error code
header('Location: ./index.php?msg=your claim was not successful')
?>

i did try it on my faucet ( +cookie to cotrol) and some people start to use boot traffic tool with http referer fake and rape my site

of course you can add more if conditions (for example timer etc)
btw you dont need to put captcha this way to your faucet, if the shortener has its own captcha = easier for you
i think my service is good for guys who don't know coding lol hehe  Grin
hero member
Activity: 980
Merit: 504
PredX - AI-Powered Prediction Market
hi everyone

you can put ANY url shortener srevice to your claim button.
i will explain you how.. (avoid adyou.me service - it's scam!)
the best option is to put url shortener, that pays multiple times / show / day  , because it pays for every claim

but there is a workaround to use more url shortener services to one single claim button - but you need some DB skills

ok let's show how to do it with single url shortener..

put a button tag inside
 
tags where form action address will contain url shortener generated link...
this shortener link will point to (for example) claimcheck.php on your faucet.

your claimcheck.php can look like this:

Code:
$rlink =$_SERVER['HTTP_REFERER'];  //you will assign to $rlink variable the page fro where you are redirected to claimcheck.php
if (($rlink=='http://yourutlshortener/blah'//note that some url shorteners have a little different return address - test it first, before running for public
{
//put here your payout code to microwallet or add credits to your balance

header('Location: ./index.php?msg=you claimed xy satoshis'); //?msg = optional - you can parse on main page how much satoshis claimed (if you are giving random amount of satoshis)
//put to index.php $msg = $_GET['msg]   then echo $msg as php code somewhere to your index.php
}
//if the claimcheck.php was NOT redirected from your URL shortener service, simply go back to index.php, maybe with some error code
header('Location: ./index.php?msg=your claim was not successful')
?>

i did try it on my faucet ( +cookie to cotrol) and some people start to use boot traffic tool with http referer fake and rape my site

of course you can add more if conditions (for example timer etc)
btw you dont need to put captcha this way to your faucet, if the shortener has its own captcha = easier for you
hero member
Activity: 1540
Merit: 508
hi everyone

you can put ANY url shortener srevice to your claim button.
i will explain you how.. (avoid adyou.me service - it's scam!)
the best option is to put url shortener, that pays multiple times / show / day  , because it pays for every claim

but there is a workaround to use more url shortener services to one single claim button - but you need some DB skills

ok let's show how to do it with single url shortener..

put a button tag inside
 
tags where form action address will contain url shortener generated link...
this shortener link will point to (for example) claimcheck.php on your faucet.

your claimcheck.php can look like this:

Code:
$rlink =$_SERVER['HTTP_REFERER'];  //you will assign to $rlink variable the page fro where you are redirected to claimcheck.php
if (($rlink=='http://yourutlshortener/blah'//note that some url shorteners have a little different return address - test it first, before running for public
{
//put here your payout code to microwallet or add credits to your balance

header('Location: ./index.php?msg=you claimed xy satoshis'); //?msg = optional - you can parse on main page how much satoshis claimed (if you are giving random amount of satoshis)
//put to index.php $msg = $_GET['msg]   then echo $msg as php code somewhere to your index.php
}
//if the claimcheck.php was NOT redirected from your URL shortener service, simply go back to index.php, maybe with some error code
header('Location: ./index.php?msg=your claim was not successful')
?>

i did try it on my faucet ( +cookie to cotrol) and some people start to use boot traffic tool with http referer fake and rape my site
hero member
Activity: 980
Merit: 504
PredX - AI-Powered Prediction Market
hi everyone

you can put ANY url shortener srevice to your claim button.
i will explain you how.. (avoid adyou.me service - it's scam!)
the best option is to put url shortener, that pays multiple times / show / day  , because it pays for every claim

but there is a workaround to use more url shortener services to one single claim button - but you need some DB skills

ok let's show how to do it with single url shortener..

put a button tag inside
 
tags where form action address will contain url shortener generated link...
this shortener link will point to (for example) claimcheck.php on your faucet.

your claimcheck.php can look like this:

Code:
$rlink =$_SERVER['HTTP_REFERER'];  //you will assign to $rlink variable the page fro where you are redirected to claimcheck.php
if (($rlink=='http://yourutlshortener/blah'//note that some url shorteners have a little different return address - test it first, before running for public
{
//put here your payout code to microwallet or add credits to your balance

header('Location: ./index.php?msg=you claimed xy satoshis'); //?msg = optional - you can parse on main page how much satoshis claimed (if you are giving random amount of satoshis)
//put to index.php $msg = $_GET['msg]   then echo $msg as php code somewhere to your index.php
}
//if the claimcheck.php was NOT redirected from your URL shortener service, simply go back to index.php, maybe with some error code
header('Location: ./index.php?msg=your claim was not successful')
?>

member
Activity: 110
Merit: 10
There's always an alternative. Rektcoins is back!
Will it work for my wordpress faucet?
i have done and want to test it here bitsclick.xyz , signup and test it Tongue
if you have form
Code:
then your long link is http://yoursite.com/index.php , short it and replace

This works with the Faucetinabox ultimate (from makejar) ?
it should work with all form, however in faucetbox script, i can't send data from bitsclick to your faucet correctly because that script has a strong anti cheat/bot with post address variable alway change lol

I tried with the
Code:
                     
                     if(!$data["captcha_valid"]): ?>
                   
                    endif; ?>

But when i tested it, the claim didn't succeed :/
hero member
Activity: 1540
Merit: 508
Hello, i am making a url shortener like adf.ly but you can put short link in your button of your faucet :
    When user click on claim button, they will be redirect to short link, and they only receive reward if they complete short link.
I am completing 80%, and i just want to know if anyone will use it ? Com will be around 0.7$ in first month

This seems like a good idea...

However why dont the faucet owners just use adf.ly in the first place instead of using your service?

Does your service really pay a lot more than the usual?
Thank you, adf.ly, shorte.st,... only support shorten link, not button in form. if you use adf.ly and your faucet wont work
About rate, my service is new and i am trying to increase rate, i know cpm 0.4 is low but it take time to make rate higher  Grin
hero member
Activity: 1666
Merit: 753
Hello, i am making a url shortener like adf.ly but you can put short link in your button of your faucet :
    When user click on claim button, they will be redirect to short link, and they only receive reward if they complete short link.
I am completing 80%, and i just want to know if anyone will use it ? Com will be around 0.7$ in first month

This seems like a good idea...

However why dont the faucet owners just use adf.ly in the first place instead of using your service?

Does your service really pay a lot more than the usual?
hero member
Activity: 1540
Merit: 508
Will it work for my wordpress faucet?
i have done and want to test it here bitsclick.xyz , signup and test it Tongue
if you have form
Code:
then your long link is http://yoursite.com/index.php , short it and replace

This works with the Faucetinabox ultimate (from makejar) ?
it should work with all form, however in faucetbox script, i can't send data from bitsclick to your faucet correctly because that script has a strong anti cheat/bot with post address variable alway change lol
member
Activity: 110
Merit: 10
There's always an alternative. Rektcoins is back!
Will it work for my wordpress faucet?
i have done and want to test it here bitsclick.xyz , signup and test it Tongue
if you have form
Code:
then your long link is http://yoursite.com/index.php , short it and replace

This works with the Faucetinabox ultimate (from makejar) ?
hero member
Activity: 1540
Merit: 508
Will it work for my wordpress faucet?
i have done and want to test it here bitsclick.xyz , signup and test it Tongue
if you have form
Code:
then your long link is http://yoursite.com/index.php , short it and replace
hero member
Activity: 1204
Merit: 502
Will it work for my wordpress faucet?
hero member
Activity: 1540
Merit: 508
Hi tungaqhd,

What is the latest status of your project?
hi, i am adding bitpay for advertiser. i bought a shortener script but it is not compatible with my code and i found a new script compatible. i have tested with most faucet script and the result is faucetsystem script isn't compatible , and a small problem with faucetbox script (because this script has some different is receiving data from my site )
my shortener will work well for login button such as in Salman's script,mini faucet and some customized script
hero member
Activity: 1204
Merit: 502
Hi tungaqhd,

What is the latest status of your project?
hero member
Activity: 1540
Merit: 508
Hi,

I want to do this with Prolink. what is the proper code to do this?

Code:

                        

                            

                                echo( __'Get reward!''wpbftd' )); ?> ">
                            

                        


Code:

         
                        

                            

                                echo( __'Get reward!''wpbftd' )); ?> ">
                            

                        



Best regards,
Land of Trusted Faucets
 

@landoffaucets, try tungaqhd's code. If it doesn't work, tell here.

I tried the code. Unfortunately, so far not succeeded yet.

Update:

Error message
The request has been black-holed
Error: The requested address '/4jGa' was not found on this server.

hi, i mean that code is only possible with my url shortener , but i am having a problem with faucetbox script
hero member
Activity: 1204
Merit: 502
Hi,

I want to do this with Prolink. what is the proper code to do this?

Code:

                        

                            

                                echo( __'Get reward!''wpbftd' )); ?> ">
                            

                        


Code:

         
                        

                            

                                echo( __'Get reward!''wpbftd' )); ?> ">
                            

                        



Best regards,
Land of Trusted Faucets
 

@landoffaucets, try tungaqhd's code. If it doesn't work, tell here.

I tried the code. Unfortunately, so far not succeeded yet.

Update:

Error message
The request has been black-holed
Error: The requested address '/4jGa' was not found on this server.
hero member
Activity: 1092
Merit: 500
@landoffaucets, try tungaqhd's code. If it doesn't work, tell here.
hero member
Activity: 1540
Merit: 508
Good luck for your project. Many faucet owners want to add short links on claim button. I hope that faucet owners will get some extra profits for using short links.
Thank you so much  Cheesy
Hi,

I want to do this with Prolink. what is the proper code to do this?

Code:
                       

                           

                                echo( __'Get reward!''wpbftd' )); ?> ">
                           

                       

Code:
                        

                           

                                echo( __'Get reward!''wpbftd' )); ?> ">
                           

                       

Best regards,
Land of Trusted Faucets
 

Hi, sorry it's only possible with my url shortener server because i can't find any url shortener script that support it so i have to code my self. With my server it would look like this

I'm not faucet owner, but I'm faucet user. And I can say from user perspective that faucets with url shorteners are annoying. I understand that's good way to monetize faucet but it's not user-friendly thing. But if your service will not have multiple popups and additional captcha in shorten link, then it's ok. Anyway, good luck with your service.
Thank you, there is no recaptcha on link( or a simple captcha or antibot link if nedded) and there will be 1 popup
is good advantage and incraese earning if use shortlink
but after one visit youre site visitor faucet can't back again, you can try visitor can down until reach over 90%
thanks, i planning to count one visitor 3 times perday
hero member
Activity: 602
Merit: 501
Undeads.com - P2E Runner Game
is good advantage and incraese earning if use shortlink
but after one visit youre site visitor faucet can't back again, you can try visitor can down until reach over 90%
legendary
Activity: 3262
Merit: 1376
Slava Ukraini!
I'm not faucet owner, but I'm faucet user. And I can say from user perspective that faucets with url shorteners are annoying. I understand that's good way to monetize faucet but it's not user-friendly thing. But if your service will not have multiple popups and additional captcha in shorten link, then it's ok. Anyway, good luck with your service.
member
Activity: 110
Merit: 10
There's always an alternative. Rektcoins is back!
Sent you a PM

Regards.  Grin
hero member
Activity: 1204
Merit: 502
Hi,

I want to do this with Prolink. what is the proper code to do this?

Code:
                       

                           

                                echo( __'Get reward!''wpbftd' )); ?> ">
                           

                       


Best regards,
Land of Trusted Faucets
hero member
Activity: 1092
Merit: 500
Good luck for your project. Many faucet owners want to add short links on claim button. I hope that faucet owners will get some extra profits for using short links.
hero member
Activity: 1540
Merit: 508
Hello, i am making a url shortener like adf.ly but you can put short link in your button of your faucet :
    When user click on claim button, they will be redirect to short link, and they only receive reward if they complete short link.
I am completing 80%, and i just want to know if anyone will use it ? Com will be around 0.7$ in first month
Jump to: