Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Missing Icons in Menu after Upgrade to 5.1Missing Icons in Menu after Upgrade to 5.1
Previous
 
Next
New Post
12/10/2009 3:58 AM
 

David A-W wrote

On the Host > SQL page, try running the following:

UPDATE dbo.{objectQualifier}Tabs
SET    IconFile = REPLACE(IconFile, '~/images/', '/images/')
    ,  IconFileLarge = REPLACE(IconFileLarge, '~/images/', '/images/')
WHERE  IconFile LIKE '~/images/%'

Then go to Host > Host Settings and click Restart Application.

To clarify: the above fixes an issue with 5.1 Admin and Host menu icons only - not custom page icons.

When I upgraded to 5.2, I then had to revert the above fix - however I noticed all my custom page icons were now broken for child (non-root) portals.

To fix this, I ran the below under Host > SQL as a script, then again restarted the application:

  ALTER VIEW dbo.{objectQualifier}vw_Tabs
  AS
    SELECT    
        T.TabID,
        T.TabOrder,
        T.PortalID,
        T.TabName,
        T.IsVisible,
        T.ParentId,
        T.[Level],
        CASE WHEN I.FileID IS NULL THEN T.IconFile
             ELSE '~/' + P.HomeDirectory + '/' + I.Folder + I.FileName
        END AS IconFile,
        CASE WHEN L.FileID IS NULL THEN T.IconFileLarge
             ELSE '~/' + P.HomeDirectory + '/' + L.Folder + L.FileName
        END AS IconFileLarge,
        T.DisableLink,
        T.Title,
        T.Description,
        T.KeyWords,
        T.IsDeleted,
        T.SkinSrc,
        T.ContainerSrc,
        T.TabPath,
        T.StartDate,
        T.EndDate,
        T.Url,
        CASE WHEN EXISTS (SELECT  1 FROM dbo.Tabs T2 WHERE T2.ParentId = T.TabId) THEN 'true' ELSE 'false' END AS HasChildren,
        T.RefreshInterval,
        T.PageHeadText,
        T.IsSecure,
        T.PermanentRedirect,
        T.SiteMapPriority,
        T.CreatedByUserID,
        T.CreatedOnDate,
        T.LastModifiedByUserID,
        T.LastModifiedOnDate
    FROM dbo.{objectQualifier}Tabs AS T
        LEFT JOIN dbo.{objectQualifier}Portals AS P ON P.PortalID = T.PortalID
        LEFT JOIN dbo.{objectQualifier}Files AS I ON I.FileID = CASE WHEN LEFT(LOWER(T.IconFile), 7) = 'fileid=' THEN CAST((RIGHT(LOWER(T.IconFile), LEN(T.IconFile) - 7)) AS int) ELSE -1 END
        LEFT JOIN dbo.{objectQualifier}Files AS L ON L.FileID = CASE WHEN LEFT(LOWER(T.IconFileLarge), 7) = 'fileid=' THEN CAST((RIGHT(LOWER(T.IconFileLarge), LEN(T.IconFileLarge) - 7)) AS int) ELSE -1 END

Hope that helps anyone else with a similar issue!

Reported in the bug tracker as issue 11228

 

 
New Post
4/22/2010 3:20 AM
 

This is still a problem for non-root portals in DNN 5.4.0

DNN 5.4 has a new view definition, so you'll need the updated script below:

ALTER VIEW {databaseOwner}{objectQualifier}vw_Tabs
AS
    SELECT    
        T.TabID,
        T.TabOrder,
        T.PortalID,
        T.TabName,
        T.IsVisible,
        T.ParentId,
        T.[Level],
        CASE WHEN I.FileID IS NULL THEN T.IconFile
             ELSE '~/' + P.HomeDirectory + '/' + I.Folder + I.FileName
        END AS IconFile,
        CASE WHEN L.FileID IS NULL THEN T.IconFileLarge
             ELSE '~/' + P.HomeDirectory + '/' + L.Folder + L.FileName
        END AS IconFileLarge,
        T.DisableLink,
        T.Title,
        T.Description,
        T.KeyWords,
        T.IsDeleted,
        T.SkinSrc,
        T.ContainerSrc,
        T.TabPath,
        T.StartDate,
        T.EndDate,
        T.Url,
        CASE WHEN EXISTS (SELECT  1 FROM {databaseOwner}{objectQualifier}Tabs T2 WHERE T2.ParentId = T.TabId) THEN 'true' ELSE 'false' END AS HasChildren,
        T.RefreshInterval,
        T.PageHeadText,
        T.IsSecure,
        T.PermanentRedirect,
        T.SiteMapPriority,
        CI.ContentItemID,
        CI.Content,
        CI.ContentTypeID,
        CI.ModuleID,
        CI.ContentKey,
        CI.Indexed,
        T.CreatedByUserID,
        T.CreatedOnDate,
        T.LastModifiedByUserID,
        T.LastModifiedOnDate
    FROM {databaseOwner}{objectQualifier}Tabs AS T
        LEFT OUTER JOIN  {databaseOwner}{objectQualifier}ContentItems AS CI ON T.ContentItemID = CI.ContentItemID
        LEFT JOIN {databaseOwner}{objectQualifier}Portals AS P ON P.PortalID = T.PortalID
        LEFT JOIN {databaseOwner}{objectQualifier}Files AS I ON I.FileID = CASE WHEN LEFT(LOWER(T.IconFile), 7) = 'fileid=' THEN CAST((RIGHT(LOWER(T.IconFile), LEN(T.IconFile) - 7)) AS int) ELSE -1 END
        LEFT JOIN {databaseOwner}{objectQualifier}Files AS L ON L.FileID = CASE WHEN LEFT(LOWER(T.IconFileLarge), 7) = 'fileid=' THEN CAST((RIGHT(LOWER(T.IconFileLarge), LEN(T.IconFileLarge) - 7)) AS int) ELSE -1 END
GO

 
New Post
4/25/2010 5:13 PM
 
David A-W wrote:

On the Host > SQL page, try running the following:

UPDATE dbo.{objectQualifier}Tabs
SET    IconFile = REPLACE(IconFile, '~/images/', '/images/')
    ,  IconFileLarge = REPLACE(IconFileLarge, '~/images/', '/images/')
WHERE  IconFile LIKE '~/images/%'

Then go to Host > Host Settings and click Restart Application.

 

Worked for me using DNN 5.2.2 and Forum. 4.5.3. Thanks!

 
Previous
 
Next
HomeHomeGetting StartedGetting StartedInstalling DNN ...Installing DNN ...Missing Icons in Menu after Upgrade to 5.1Missing Icons in Menu after Upgrade to 5.1


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out