Disable Captcha Through the MS SQL Database
Issue
CAPTCHA for your site is enabled, however, the image is not showing. This is preventing you from logging into your website.
Cause
Usually this is caused by a third-party URL Re-write tool that is intercepting the CAPTCHA request.
Resolution
These steps require you to have Microsoft SQL Server Management Studio installed on your computer. If you do not have this installed, Microsoft SQL Server Mangement Studio Express 2008 is available for free from Microsoft, and can be downloaded through this link: http://www.microsoft.com/download/en/details.aspx?id=22985
- Open Microsoft SQL Management Studio and connect to the database for the site.
- Click New Query and type:
UPDATE
ModuleSettings
SET
SettingValue =
'False'
WHERE
SettingName =
'DNN_UseCaptcha'
- Execute the query.
- Recycle the website's application pool.
Recycle the Application Pool for Websites using Plesk 9.x
- Log into your Control Panel.
- Click on System on the top of the page. This will take you to the welcome screen of your subscription.
- If you don't see your subscription click on Select Another System found in the left pane then select your subscription.
- On the welcome screen, click on Domains. Then select your domain.
- Under Additional Tools select IIS Application Pool.
- Select the Recycle button to recycle the application pool.
Recycle the Application Pool for Websites using Plesk 11.x
- Log into your Control Panel.
- Choose the correct subscription from the drop down menu in the upper right.
- Click on Domains. Then select your domain.
- Under Websites & Domains expand Show Advanced Operations.
- Click on Dedicated IIS Application Pool for Your Website.
- Click on the Recycle button.
Recycle the Application Pool for Websites using Plesk 12.x
- Log into your Control Panel.
- Choose the correct subscription from the drop down menu in the upper right.
- Click on Domains. Then select your domain.
- Under Websites & Domains expand Show More.
- Click on Dedicated IIS Application Pool for Your Website.
- Click on the Recycle button.
Recycle the Application Pool for Websites using Plesk 12.5
- Log into your Control Panel.
- Choose the correct subscription from the drop down menu in the upper right.
- Click on Domains. Then select your domain.
- Click on Dedicated IIS Application Pool for Website at the bottom of the box.
- Click on the yellow Recycle button in the top right.
Article ID: 537, Created: April 10, 2012 at 8:29 AM, Modified: July 11, 2016 at 3:06 PM