Overview
You have created a duplicate of one of your intranet pages to run tests without affecting the original one, but now you cannot delete or hide this test page in the CMS or do anything associated with the directory in question.
Solution
Even though this is not the preferred method, you can delete the page directly from the database to overcome this issue.
Before proceeding with the deletion please ensure that you have made a backup of the database. Then, perform the following steps using the SQL console in DNN or SQL Server Management Studio:
- Run the following query to get the TabID of the page:
SELECT TabID from Tabs WHERE TabName = '<Name of the Page>'
- Run the following query to delete the page from the database:
Update Tabs SET IsDeleted = 1 WHERE TabID = <TabID from previous query>
- Clear the site cache
- Try accessing the page to confirm has been deleted from the site.
Comments
0 comments
Please sign in to leave a comment.