Since I upgrade umbraco from beta 4 to last release 4.0.3, the icons of the control pannel are no more displayed. Looking at it with Firebug, I can see that element #tray li a should be styled with
Solved from a customer point of vue: I get the old icons from an old v.3 and paste it in /umbraco/images/tray so that they are displayed in back-end. But I know it is not solved (I think that references are in DB - could someone confirm this point ?) I delete all file in the site folder and have it replaced by a fresh install but I have still the same issue. Also, after upgrade, I am no more able to delete member (no context menu on right click, just the good old browser one) but UI let me create new member. Any idea ? I'm planing in last resort to delete DB and recreate all pages (but I'd rather not to do it).
It is database related. A little searching the web came up with this:
Months Later: I recently upgraded an existing site to umbraco 4.0.0, and I was still getting the old blue icons in the 'Sections' area of the interface. So I deleted those files from their directory, leaving the new single png image. But then the buttons all looked like broken images (from the old way), along with the top left of the sprites png (one assumes in css). Turns out I needed to update my DB, although I tried doing that via the installation wizard. The update to the DB required I make a query, soI got to use SQSSMSE. If your icons are acting up, and your on an installation of umbraco that was upgraded from an older version, you may need to run this:
update umbracoApp set appIcon = '.tray' + appAlias
missing tray icons in front pannel
Since I upgrade umbraco from beta 4 to last release 4.0.3, the icons of the control pannel are no more displayed. Looking at it with Firebug, I can see that element #tray li a should be styled with
but code in the page is
Obviously, after upgrade the img is no more available. How can I fix it? It seems like part of the ui is not updatedSolved from a customer point of vue: I get the old icons from an old v.3 and paste it in /umbraco/images/tray so that they are displayed in back-end. But I know it is not solved (I think that references are in DB - could someone confirm this point ?) I delete all file in the site folder and have it replaced by a fresh install but I have still the same issue. Also, after upgrade, I am no more able to delete member (no context menu on right click, just the good old browser one) but UI let me create new member. Any idea ? I'm planing in last resort to delete DB and recreate all pages (but I'd rather not to do it).
Please, someone could tell me at least if this issue is database related ?
It is database related. A little searching the web came up with this:
Months Later: I recently upgraded an existing site to umbraco 4.0.0, and I was still getting the old blue icons in the 'Sections' area of the interface. So I deleted those files from their directory, leaving the new single png image. But then the buttons all looked like broken images (from the old way), along with the top left of the sprites png (one assumes in css). Turns out I needed to update my DB, although I tried doing that via the installation wizard. The update to the DB required I make a query, soI got to use SQSSMSE. If your icons are acting up, and your on an installation of umbraco that was upgraded from an older version, you may need to run this:
update umbracoApp set appIcon = '.tray' + appAlias
HTH,
Peter
Wonderful, as simple as that. Cannot believe. Where did you find this article.
Thanks man, I searched a solution for more than 8 hours and I was ready to drop the database by desperation.
By the way, this also solved the member related issue.
Eric
Glad I could help :)
I publish a link to the original article and a special thank to you on my blog.
Goog tip...
is working on a reply...