Solve Media Captcha For Laravel.
Package integration of SolveMedia captcha for Laravel, (*1)
composer require rubensrocha/solvemedia-captcha
NOTE This package supports the auto-discovery feature of Laravel 5.5, So skip these Setup
instructions if you're using Laravel 5.5 and above., (*2)
In app/config/app.php
add the following :, (*3)
1- The ServiceProvider to the providers array :, (*4)
Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider::class,
2- The class alias to the aliases array :, (*5)
'SolveMediaCaptcha' => Rubensrocha\SolveMediaCaptcha\Facades\SolveMediaCaptcha::class,
3- Publish the config file, (*6)
php artisan vendor:publish --provider="Rubensrocha\SolveMediaCaptcha\SolveMediaCaptchaServiceProvider"
Add these fields in .env file :, (*7)
SOLVEMEDIA_CKEY="your_public_key" SOLVEMEDIA_VKEY="your_verification_key" SOLVEMEDIA_HKEY="your_authentication_key" SOLVEMEDIA_SSL=TRUE
You can obtain them from here, (*8)
{!! SolveMediaCaptcha::display() !!}
Add 'adcopy_response' => 'required|solvemediacaptcha'
to rules array :, (*9)
$validate = Validator::make(Input::all(), [ 'adcopy_response' => 'required|solvemediacaptcha' ]);
Add the following values to the custom
array in the validation
language file :, (*10)
'custom' => [ 'adcopy_response' => [ 'required' => 'Please verify that you are not a robot.', 'solvemediacaptcha' => 'Captcha error! try again later or contact site admin.', ], ],
Then check for captcha errors in the Form
:, (*11)
@if ($errors->has('adcopy_response')) <span class="help-block"> <strong>{{ $errors->first('adcopy_response') }}</strong> </span> @endif
anhskohbo/no-captcha => https://github.com/anhskohbo/no-captcha, (*12)
traderinteractive/solvemedia-client-php => https://github.com/traderinteractive/solvemedia-client-php, (*13)
https://github.com/rubensrocha/solvemedia-captcha/pulls, (*14)