Try our conversational search powered by Generative AI!

Export failing

Vote:
 

Hi,

I'm trying to export a section of the tree in EPi7 (MVC).  At the end of the export I get the following error:

The following errors have occurred:
Exception: Content with Guid "2ff44c93-5ce2-4e5c-9cc9-69987c3a9344" was not found[]
Can't export package because: Content with Guid "2ff44c93-5ce2-4e5c-9cc9-69987c3a9344" was not found

I've checked the database (tblContent) and can't find the content with the GUID which makes sense since that is what the error is about.

The only way I can think of to get rid of this error is to find the broken link.  Any ideas how?

Thanks

#112613
Oct 31, 2014 16:20
Vote:
 

The issue is not just on a section in the tree, any page I'm trying to export is failing with a similar error.

#112615
Oct 31, 2014 17:38
Vote:
 

Hi,

You can take a look at tblContentSoftLnik - look for that guid in LinkUrl column. 

Regards.

/Q

#112642
Nov 03, 2014 9:48
Vote:
 

Hi,

I had the same problem and found that the content guid missing was a Content Assets ID. So if you run into this problem you can look for the guid in tblContent.ContentAssetsID.

/Eric

#180588
Jul 14, 2017 15:02
Vote:
 

I am getting exactly same issue and unable to export content for content asset folder. I can see that GUID in tblcontent.ContentAssetsID but what to do next and how can we fix export issue?

#222273
May 01, 2020 17:42
Vote:
 

After long troubleshoot, I conclude that below query help to fix invalid content asset references from database to resume export content.

-- Setting ContentAssetId null from tblContent if it is not exits in ContentGuid
update tblContent set ContentAssetsID=null where ContentAssetsID not in (select ContentGUID from tblContent)

This will remove mapping of invalid Asset GUID if it is not actually exits in content table and which was failing to export content.

It is recommended to take database backup before trying this.

#226150
Aug 05, 2020 15:00
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.