Reputation: 255
it happens on each every page . I have no idea about this error. Any help?
Upvotes: 1
Views: 500
Reputation: 6117
The column SiteName
was removed in v9. Here's an article talking about it. Here are the release notes for v9. So you'll have to log into the Admin site and to to Page Templates and modify your listing repeaters in there to remove the SiteName
column.
UPDATE
What you can do to get a list of templates which have SiteName
is to run a SQL script like so:
SELECT *
FROM CMS_PageTemplate
WHERE PageTemplateWebParts like '%sitename%'
This will give you a list of templates which have webparts that the property or value of SiteName
in them.
Upvotes: 3
Reputation: 156
Did your database upgrade show any errors? Maybe check your version in the database vs your site structure and see if they match. I think just from the looks of it, your database upgrade didn't complete or had an issue. You could try rolling back to your backup and reupgrading maybe by running the upgrade query on your database.
Upvotes: 1