How To Disable DotNetNuke Tasks in the Database
If your site is not accessible it is possible your DotNetNuke scheduled tasks are hung and need to be disabled directly through your DNN Database. To disable these tasks follow the steps below.
These steps require you to have Microsoft SQL Server Management Studio installed on your computer. Microsoft SQL Server Management Studio Express 2008 is available for free from Microsoft, and can be downloaded at http://www.microsoft.com/download/en/details.aspx?id=22985
Always back up the website before making any changes to the database . Shared hosting customers can do this through the Control Panel. Refer to Back Up Your Website Using Plesk. Dedicated server customers can back up the site either through the Control Panel, or through the Control Suite. Refer to How to Back Up a Domain Using Control Suite.
- Open and log into Microsoft SQL Server Management Studio
- Click New Query button
- Copy the following script into your New Query page.
Use [databasename]
Update
dbo.schedule
Set
Enable =
replace
(Enable,
'True'
,
'False'
);
- Click Execute
- Restart the website using the instructions at How to Recycle an IIS Application Pool.
Article ID: 460, Created: April 9, 2012 at 3:59 PM, Modified: August 26, 2014 at 9:00 AM