Created a page, can't edit or delete it afterwards.
As far as I know, I'm just using the standard Confluence 6.2.3 installation without any add-ons.
When I edit the page, I get the error message:
org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [com.atlassian.confluence.content.ContentProperty#159213]
at org.hibernate.boot.internal.StandardEntityNotFoundDelegate.handleEntityNotFound(StandardEntityNotFoundDelegate.java:28)
org.hibernate.ObjectNotFoundException: No row with the given identifier exists: [com.atlassian.confluence.content.ContentProperty#159213]
When I try to delete the page I get: We couldn't delete your pages. Try again.
Tried with both the user account that created the page as with the Administrator.
I already faced that issue twice when writing complex page with macro at creation without any "first publish".
As a work-around, I used "Move" action to remove its parent page and make it orphan. Then in Space "Content Tools", in "Orphaned Pages", the trash icon is able to "delete" that corrupted page.
So I now have a "stupid" pratice: add title and only raw text in page, publish it and then edit and add macro or advanced content in it...
This happens to me at least once a month :-(
My fix is inserting the missing properties with "default" values e.g:
insert into CONTENTPROPERTIES VALUES ('missing propertyId', 'default' ,'default', NULL, NULL, 'pageId');
The pageId is always part of the URL and the propertyId the last ID in the error message.
In all cases, I had to insert two consecutive properties. Then I saved the content to another page and deleted the original page, because I'm not sure what could go wrong after my changes :-)
Cheers, Anton
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Gracias, funcionó.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh no, looks like there might be some corruption in your database. Try fetching the properties in your database for that object:
SELECT * FROM contentproperties WHERE contentid = '159213';
If something looks amiss in the results, try modifying/deleting that particular row. Otherwise you might need to escalate to fully deleting that page via SQL.
If you have a DBA, it's also worth having them take a look at your database to see if everything is healthy. Good luck!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Daniel Eads {unmonitored account} we had a similar issue in our instance of confluence server. We were not able to edit the page for a with this issue showing up but it got fixed on its own. Should we be worried?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hmm - probably worth checking the following:
If this were my instance, I'd probably write it off unless it happened more than once or there was definitely no chance of a change occurring between "then" and "now" (although it's really hard to rule that out - running a search index for example doesn't post a message in the logs).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Daniel Eads {unmonitored account} Thanks I will look into it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey everyone!
this just happened to me and I followed this Removing orphaned draft and How to Remove a Page Manually in the Database Using SQL Commands
Then start confluence, notice that your draft is empty. Now you can delete that page.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.