![]() | Oracle System Handbook - ISO 7.0 May 2018 Internal/Partner Edition | ||
|
|
![]() |
||||||||||||||||
Solution Type Problem Resolution Sure Solution 1457542.1 : How to use Firefox 6 or higher with ILOM 3.0 if some parts of the page are not displayed
In this Document
Applies to:Sun 3rd Party Software Product - Version Not Applicable to Not Applicable [Release N/A]Exalogic Elastic Cloud X3-2 Hardware Solaris Operating System - Version 10 3/05 to 11 11/11 [Release 10.0 to 11.0] Sun Fire X4600 M2 Server Oracle Solaris on x86-64 (64-bit) Oracle Solaris on SPARC (64-bit) Oracle Solaris on x86 (32-bit) Oracle Solaris on SPARC (32-bit) SymptomsWhen opening ILOM 3.0 BUI on some machine models with a Firefox version 6.x to 10.x, sub-panels are not displayed. What we see :
What we should see :
CauseMozilla removed some non-standard javascript properties on DOM. https://bugzilla.mozilla.org/show_bug.cgi?id=694931 SolutionThe first step to fix this issue is to update to latest firmware revision, if your system firmware integrates the fix. (Bug ID 7082194) When not, then you can use one of the bellow unsupported workarounds : - Use the Stylish Firefox add-on and add the same content that userContent.css content below : https://addons.mozilla.org/en-US/firefox/addon/stylish/ - Add this lines in $HOME/.mozilla/firefox/<profile>/chrome/userContent.css file in Solaris or in C:\Documents and Settings\<USER>\Application Data\Mozilla\Firefox\Profiles\<PROFILE>\chrome\userContent.css in Windows XP. This file and the chrome directory do not exist by default. @namespace url(http://www.w3.org/1999/xhtml);
#mainpage { visibility: visible !important; } - Or this workaround for systemwide use in Solaris : 1 - create the file userContent.css in /usr/lib/firefox/defaults/profile/chrome/ directory with the same content as above. For information, chrome directory doesn't exist by default. #!/bin/ksh
for list in `find $HOME/.mozilla/firefox -maxdepth 2 -name chrome` do if [ ! -f $list/userContent.css ] then cp /usr/lib/firefox/defaults/profile/chrome/userContent.css $list/ else echo "" fi done /usr/lib/firefox/firefox $1 $2 $3 $4 $5 $6 $7 $8 $9 Attachments This solution has no attachment |
||||||||||||||||
|