You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'd like to report an issue I encountered during development. When I set CACHE_STORE to an 'array' in .env, the validation process always failed due to an error in the cache check within the check function. However, the issue was resolved when I changed CACHE_STORE to 'apc' or another suitable option.
.env
CACHE_STORE=array
Mews\Captcha\Captcha::check
if (!Cache::pull($this->get_cache_key($key))) {
$this->session->remove('captcha');
return false;
}
The text was updated successfully, but these errors were encountered:
I'd like to report an issue I encountered during development. When I set CACHE_STORE to an 'array' in
.env
, the validation process always failed due to an error in the cache check within the check function. However, the issue was resolved when I changed CACHE_STORE to 'apc' or another suitable option..env
Mews\Captcha\Captcha::check
The text was updated successfully, but these errors were encountered: