• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Improve this Doc
Show / Hide Table of Contents

Troubleshooting: Page Remains in Draft Mode

DNN Version: 09.02.00
12/08/2019 • 1 minute to read
Contributors  david-poindexter
12/08/2019  • 1 minute to read  • Contributors  david-poindexter

Symptom

While editing the page, the page remains in draft mode, due to a conflict in changes made by two users.

Possible Cause

Another user made a change that conflicts with your changes.

Solution

  1. Back up the site and the database.

  2. Log into the site as a host/superuser.

  3. Publish the page through SQL.

    1. Go to Persona Bar > Settings > SQL Console.

    2. Run the following SQL script:

      
      DECLARE @PageName VARCHAR(250);
      
      SET @PageName = 'Home';
      
      UPDATE TabVersions
      SET IsPublished = 1
      WHERE TabID = (
      		SELECT TabID
      		FROM Tabs
      		WHERE TabName LIKE @PageName
      		)
      	AND IsPublished = 0;
      
      

      where @PageName is the name of the page you are editing; e.g., 'Home'.

  4. Clear the server cache.

  5. Recycle the application pool to allow the changes to take effect.

How to: Increase the Maximum File Size for UploadError: Login IP Filtering Is Currently DisabledError: Another User Has Taken Action on the PageError: Unknown Server Tag - DNNComboBoxError: Could not load file or assembly 'AWSSDK' or one of its dependenciesError: SQL TimeoutError: ArgumentNullException After a Move or an UpgradeTroubleshooting: Missing Resources After An UpgradeTroubleshooting: Mixed-Content Warnings When Using SSL OffloadingTroubleshooting: Profile Image Not ShownTroubleshooting: Unable to Remove Page Redirect URLsTroubleshooting: Site Theme Does Not LoadTroubleshooting: Incomplete Content LocalizationTroubleshooting: Missing Persona Bar
Back to top by the community, for the community... #DNNCMS