To disable Google reCAPTCHA on your WHMCS installation from cPanel, you must use the phpMyAdmin database tool in cPanel to execute a SQL command:
UPDATE tblconfiguration SET value = '' WHERE setting = 'CaptchaSetting';. This directly modifies the database, allowing you to log in to your WHMCS Admin Area and reconfigure the security settings, then change the captcha type to "Disabled".
Step-by-step instructions:
-
Access cPanel:Log in to your cPanel account for your WHMCS installation.
-
Open phpMyAdmin:Find and click on the phpMyAdmin icon in the "Databases" section of cPanel.
-
Select your WHMCS database:In phpMyAdmin, select your WHMCS database from the list on the left-hand side.
-
Run the SQL command:
- Click on the SQL tab at the top of the screen.
- Enter the following command into the provided text box:
- Click on the SQL tab at the top of the screen.
Code: UPDATE tblconfiguration SET value = '' WHERE setting = 'CaptchaSetting';
Click Go to execute the command.
- Log in to WHMCS: You should now be able to log in to your WHMCS Admin Area.
- Reconfigure Captcha:
- Go to Setup > General Settings > Security tab.
- Set the "Captcha Type" to Disabled and save your changes.
- Go to Setup > General Settings > Security tab.
Important notes:
-
Database Access:This method bypasses the need for a working reCAPTCHA to access your admin area, which is especially useful if the reCAPTCHA is misconfigured or not displaying correctly.
-
After disabling the captcha, you can re-enable it with the correct settings by selecting a different captcha type or by entering your Google reCAPTCHA keys.
