Timeout Error when copying page - Duplicate page CSS Follow
The fix for this issue is found in 7.4.3 However, this script should be run "one last time" to clean out any lingering issues from before the update.
Run this query on the main Passageways/PortalFX SQL database:
SELECT Selector, Property, Value, PageID, isimportant, COUNT(*) AS Expr1
FROM PageCSSAttribute
GROUP BY Selector, Property, Value, PageID, isimportant
HAVING (COUNT(*) > 1)
SELECT DISTINCT selector, property, value, pageid, isimportant INTO temp FROM pagecssattribute
DELETE FROM pagecssattribute
INSERT INTO pagecssattribute (selector, property, value, pageid, isimportant) SELECT selector, property, value, pageid, isimportant FROM temp
DROP TABLE temp
This will clear out the duplicate CSS entries for the Page and Island backgrounds
Comments
0 comments
Please sign in to leave a comment.