I'm having a strange issue with accessing some particular nodes in Umbraco,
Yet I was able to copy the node and the copied node is accessible. The children's of that nodes are also accessible.
When I click those nodes I'm getting an error message like Server error: Contact administrator, see log for full details.
Failed to retrieve data for content id 1234
Is there anyone who knows how to solve this?
As the server error would suggest there is more to the error log than that you have currently provided, could you take a look and share the full log, if available? Perhaps that'll shine some more light on the issue at hand! đŸ™‚
It would appear as though the account that originally created the items is no longer available in Umbraco, and therefor it couldn't properly copy the node(s) when setting the Owner of the item(s)! Can you confirm that this is the case?
update [cmsDocument]
set documentUser = 0
where documentUser = 5
update [umbracoLog]
set userId = 0
where userId = 5
update umbracoNode
set nodeUser = 0
where nodeUser = 5
Where 5 is the id of the user who creates it.
Now the issue is resolved, but don't know whether there are any better ways.
Error in accessing some nodes in Umbraco
I'm having a strange issue with accessing some particular nodes in Umbraco,
Yet I was able to copy the node and the copied node is accessible.
The children's of that nodes are also accessible.
When I click those nodes I'm getting an error message like
Server error: Contact administrator, see log for full details. Failed to retrieve data for content id 1234
Is there anyone who knows how to solve this?
Hi Arun,
As the server error would suggest there is more to the error log than that you have currently provided, could you take a look and share the full log, if available? Perhaps that'll shine some more light on the issue at hand! đŸ™‚
Kind regards,
Corné
Hi Corné Hoskam,
Thanks for the reply :)
I'm getting an error like this
Hi Arun,
It would appear as though the account that originally created the items is no longer available in Umbraco, and therefor it couldn't properly copy the node(s) when setting the Owner of the item(s)! Can you confirm that this is the case?
Hi Corné Hoskam
Thanks and Yes :)
Exactly that was the issue,
I perform some query updates on database to overcome that
Where 5 is the id of the user who creates it.
Now the issue is resolved, but don't know whether there are any better ways.
Thankfully
is working on a reply...