https://github.com/royalwholesalecandy/captcha
reCAPTCHA v3 implementation for royalwholesalecandy.com
https://github.com/royalwholesalecandy/captcha
google google-api mage2pro mage2pro-module mage2pro-module-bespoke mage2pro-module-ready magento magento2 magento2-extension magento2-module recaptcha recaptcha-v3
Last synced: 5 months ago
JSON representation
reCAPTCHA v3 implementation for royalwholesalecandy.com
- Host: GitHub
- URL: https://github.com/royalwholesalecandy/captcha
- Owner: royalwholesalecandy
- Created: 2019-11-20T21:34:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-15T10:32:47.000Z (almost 5 years ago)
- Last Synced: 2024-05-01T05:22:52.409Z (about 2 years ago)
- Topics: google, google-api, mage2pro, mage2pro-module, mage2pro-module-bespoke, mage2pro-module-ready, magento, magento2, magento2-extension, magento2-module, recaptcha, recaptcha-v3
- Language: PHP
- Homepage: https://upwork.com/fl/mage2pro
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[reCAPTCHA v3](https://www.google.com/recaptcha/intro/v3.html) for [royalwholesalecandy.com](https://royalwholesalecandy.com) (Magento 2).
## How to install
```
sudo service crond stop
bin/magento maintenance:enable
composer clear-cache
composer require royalwholesalecandy/captcha:*
rm -rf var/di var/generation generated/*
bin/magento setup:upgrade
bin/magento cache:enable
redis-cli FLUSHALL
bin/magento cache:clean
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US
bin/magento setup:static-content:deploy \
--area frontend \
--theme Megnor/mag-child \
--theme Mgs/organie en_US \
--theme bs_eren/bs_eren3 \
-f en_US
bin/magento cache:clean
redis-cli FLUSHALL
bin/magento maintenance:disable
sudo service crond start
rm -rf var/log/*
```
## How to upgrade
```
sudo service crond stop
bin/magento maintenance:enable
composer remove royalwholesalecandy/captcha
composer clear-cache
composer require royalwholesalecandy/captcha:*
rm -rf var/di var/generation generated/*
bin/magento setup:upgrade
bin/magento cache:enable
bin/magento setup:di:compile
bin/magento cache:clean
redis-cli FLUSHALL
rm -rf pub/static/*
bin/magento setup:static-content:deploy \
--area adminhtml \
--theme Magento/backend \
-f en_US
bin/magento setup:static-content:deploy \
--area frontend \
--theme Megnor/mag-child \
--theme Mgs/organie en_US \
--theme bs_eren/bs_eren3 \
-f en_US
bin/magento cache:clean
redis-cli FLUSHALL
bin/magento maintenance:disable
sudo service crond start
rm -rf var/log/*
```