Post
Topic
Board Micro Earnings
Re: [Question] Alpha Faucet Script | Integrated with Short links
by
cr3at1v3
on 30/07/2017, 04:04:53 UTC
hello guys.

i am gonna tut on how to replace google captcha with captchme. note: backup everything first. something might go wrong during the process.

Step 1: Create an account with Captchme if you still don't have one. REGISTER HERE

Step 2: Once you are registered, an email will be sent to your inbox containing various information most especially the following:
  • Url
  • Login
  • Password
Step 3: Download their plugin, the link is also included in your email.

Step 4: Integration to your Alpha Faucet Site
  • Upload captchme-lib.php file to your libs folder.
  • In your index.php look for the code:
Code:
echo $site_key?>" data-theme="dark">
  • Replace with:
Code:
 

require_once("libs/captchme-lib.php");
$publicKey "YOUR PUBLICKEY";
echo 
captchme_generate_html($publicKey);
?>

    
  • Input: YOUR PUBLICKEY.
  • Save.

continued in next post . . .