CFMENU v8.01 update broken in IE, works in FF

Hello all,
Has anyone seen problems with CFMENU after the ColdFusion
8.01 updater? My menus worked fine under CF8.0 but once I applied
the update, the right arrow for the submenu (>) appears on top
of the second letter of the parent menu in IE7 but not in FireFox
3.04. My menu code is attached below. I have screen shots of this
effect if someone could please let me know how to attach them to
the forum message.

In safe mode:
when I tried http://noww.nl/update.php I got the following answer: see screenshot 1
The website runs on Drupal
Probleemoplossingsinformatie:'''
Toepassingsbasics
Naam
Firefox
Versie
3.6.3
Profielmap
Bijbehorende map openen
Geïnstalleerde plug-ins
about:plugins
Buildconfiguratie
about:buildconfig
Extensies
Naam
Versie
Ingeschakeld
ID
Easy Gif Animator Toolbar
1.0
false
[email protected]
Java Console
6.0.20
false
British English Dictionary
1.19
false
[email protected]
Toolbar Buttons
0.6.0.8
false
{03B08592-E5B4-45ff-A0BE-C1D975458688}
Microsoft .NET Framework Assistant
1.2.1
false
{20a82645-c095-46ed-80e3-08825760534b}
HttpFox
0.8.7
false
{4093c4de-454a-4329-8aff-c6b0b123c386}
DownloadHelper
4.7.3
false
Norton IPS
2.0
false
Norton Toolbar
4.6
false
{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}
Aangepaste voorkeuren
Naam
Waarde
browser.places.smartBookmarksVersion
2
browser.startup.homepage_override.mstone
rv:1.9.2.3
extensions.lastAppVersion
3.6.3
network.cookie.prefsMigrated
true
privacy.sanitize.migrateFx3Prefs
true

Similar Messages

  • After doing a widows update itunes will not work at all

    after doing a widows update itunes will not work at all

    hiya!
    I get the itunes has encounterd a problem and needs to close, sorry for the inconvenience error, no specific error number. I do not have QT installed,
    not having QT installed is what will be causing your itunes error message at the moment. let's try a careful standalone QT 7.1 install.
    download and save a copy of the QT 7.1 standalone installer to your hard drive. (we'll run the install from there rather than online.) switch off antivirus and antispyware applications prior to the install.
    Quicktime 7.1 Standalone Installer
    if that install goes through okay, does your itunes launch properly again?
    (if you get an error message on the QT standalone reinstall, let us know what it says. include error message numbers if you're getting any.)
    love, b

  • Firefox will not open after i use it 3 or 4 times i have to update to make it work ?

    Using XP pro after a couple years firefox quit working. will not open, went to support tried everything including a clean install. after which it worked for a short while then won't open. click on icon nothing happens. downloaded 18.0 update and installed worked a few times then quit. created new profile but when i click on firefox does not do any thing. if i run the update installer it will work for a while then quit to make it work again i have to update again ant it will work mabey for 1/2 to 1 day. after i update when firefox opens then it will give me the profile box. after it quits it will not load the profile box until i update again.

    Which security software (firewall, anti-virus) do you have?
    Try to boot the computer in Windows Safe mode with network support (press F8 on the boot screen) as a test to see if that helps.
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • Update process does not work on Tabular Form

    Hello,
    I have 2 tabular forms on one page, which are using manual update processes.
    First form is created using wizard, and therefore works perfectly.
    The update process is as follows:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f01.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*03*(i) || '|' || APEX_APPLICATION.G_f*04*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Second form is created manually, using the following code:
    SELECT apex_item.checkbox (30,
                               '#ROWNUM#',
                               'onclick="highlight_row(this,' || '#ROWNUM#'|| ')"',
                               NULL,
                               'f30_' || '#ROWNUM#'
                              ) delete_checkbox,
           CATALOG_ID,
              apex_item.hidden (31, CATALOG_ID)
           || apex_item.text (32,
                              LANG,
                              80,
                              100,
                              'style="width:100px"',
                              'f32_' || '#ROWNUM#'
           || apex_item.hidden (33, wwv_flow_item.md5 (LANG, DESCRIPTION)) LANG,
           apex_item.text (34,
                           DESCRIPTION,
                           80,
                           100,
                           'style="width:255px"',
                           'f34_' || '#ROWNUM#'
                          ) DESCRIPTION
      FROM V_CATALOGS
    UNION ALL
    SELECT     apex_item.checkbox
                              (30,
                               TO_NUMBER(9900 + LEVEL),
                               'onclick="highlight_row(this,' || '#ROWNUM#' || ')"',
                               NULL,
                               'f30_' || TO_NUMBER (9900 + LEVEL)
                              ) delete_checkbox,
               NULL,
                  apex_item.hidden (31, NULL)
               || apex_item.text (32,
                                  NULL,
                                  80,
                                  100,
                                  'style="width:100px"',
                                  'f32_' || TO_NUMBER (9900 + LEVEL)
               || apex_item.hidden (33, NULL) LANG,
               apex_item.text
                                               (34,
                                                NULL,
                                                80,
                                                100,
                                                'style="width:255px" '  ,
                                                'f34_'
                                                || TO_NUMBER (9900 + LEVEL)
                                               ) DESCRIPTION
          FROM DUAL
         WHERE :P18_TEMP = 'ADD_ROWS1'
    CONNECT BY LEVEL <= 1However, the update process does not work on this form.
    I created it using the first one as an example, but with the id's of the second form:
    DECLARE
      lc_string VARCHAR2(4000);
    BEGIN
      FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
      LOOP
         lc_string := lc_string|| '[' ||APEX_APPLICATION.G_f*32*(i) || '|' || APEX_APPLICATION.G_f*34*(i) || ']';
      END LOOP;
      --Database processing using the concatenated string here
    END;Also, both forms are opening in a modal pop-up dialog window.
    I use a Dialog Region plug-in for that.
    Please advise, what is causing a problem with update?

    Sloger,
    if this is your tabular form
    SELECT apex_item.checkbox (30,
    ...and this is your update statement
    FOR i IN 1..APEX_APPLICATION.G_f*30*.COUNT
    ...Then you will only ever update records that have been checked. Unchecked checkboxes are not passed back in the global array. You need to have a hidden column with the ID's for the record and loop through that when you are updating/inserting. That is why the built in tabular form has a MRU and a MRD. the MRU loops through the hidden ID column. The MRD loops through the checkbox.
    Thanks,
    Tyson Jouglet

  • Gingerbread update - Bluetooth no longer working in car

    I have seen people complaining about this issue on other forums - lots of phone models and car models are affected.  My bluetooth was wworking perfectly for hands-free calling prior to the Gingerbread update.  Bluetooth stopped working the day I received my Gingerbread update last week.  I've tried everything I can try.  Apparently there is no resolution to the issue yet.  Verizon tech support could not help - they told me to contact HTC.  HTC tech support had no clue.  I want to revert back to Froyo, but apparently that's not possible either.  I am VERY frustrated.  I loved Android, but bluetooth in my car is a very important feature for me.  Might be time for an iPhone...
    If anyone has any solutions for this issue, please let me know.  By the way, I have read in other forums that a factory reset does not work - it keeps the same phone software.  It's something that changed in Gingerbread that is causing the problem.  I would love to get rid of Gingerbread.

    Smitty,
    I don't have Gingerbread (yet, and I'm thinking that's a good thing at this point), but I've had the same problem with my DInc before with my 7 week old new car.  After an initial successful link-up and upload of my phone book, my phone wouldn't maintain a connection either.
    Here's my suggestion for you, because It's my current work around to get my bluetooth connection to work:
    1) Unpair your car bluetooth and your phone so you can start from scratch
    2) Re-pair your DInc and your car
    3) When your phone connects to your car, you'll hopefully get a pop-up dialogue box on your phone asking to link to your phone book.  At this point, say no to the phone book link.  You *should* hopefully have a good bluetooth connection now, and you'll still have the ability to dial from your phone book.  If you don't get the pop-up, well...I'm out of ideas.  Sorry. 
    I don't know what capability that pop-up dialogue box on the phone supports, but it sure screws up my bluetooth connection in my car.

  • 3GS with iOS 4.2.1 update - voicemail no longer working through bluetooth?

    Hi Folks.
    I've been happily using my iPhone 3GS with my Jeep Patriot's bluetooth/stereo system for months (it's called a Mygig). However, I just upgraded to 4.2.1 and now when I connect to my voicemail the sound doesn't come through the system - the iPhone thinks it is sending the audio to the stereo, but the stereo remains idle. So I have to select one of the audio options (phone/speaker) to hear anything.
    If however I make a phone call, or if the phone rings and I answer it, it works fine.
    Even if I use voice dialling to call voicemail, that works through the bluetooth, but as soon as it has finished the voice dialling and actually calls voicemail the stereo goes back to being idle again, even though the phone thinks it's still connected.
    So at present if I want to connect to my voicemail while driving I have to use the speaker. Only for voicemail. Weird!
    I am thinking this is a software update issue, as it worked fine prior to the update, and everything other than calling voicemail works fine through bluetooth.
    It's as if the phone isn't talking to the bluetooth properly when it's dialling the voicemail, which is somewhat of a 'hardwired' thing, given it has its own button. I tried tricking it by dialling the actual number instead of using the voicemail button, but the iphone knew it was voicemail...
    Any ideas?
    PC

    Yah, have the same issues since upgrading to ios421. Pretty annoying... I have two cars, and the issue is same with both bluetooth systems. I am able to make and receive calls but cannot listen to my mobile voicemail.

  • After the last update iTunes no longer works...  "This application failed to start because MSVCF80.dll was not found.  Re-installing the application may fix this problem"  I tried and it did not fix the problem?

    After the last update iTunes no longer works...  "This application failed to start because MSVCF80.dll was not found.  Re-installing the application may fix this problem"  I tried and it did not fix the problem?

    Click here and follow the instructions.
    (99061)

  • 10.5.7: Automatic Software Update Feature No Longer Works

    Ever since I installed 10.5.7 the automatic Software Update feature no longer works. (Manual updates work fine.) For example, here's what happened today with Safari 4.0.2:
    1. After powering up I got the Software Update icon on the Dock.
    2. I clicked it and it said I had updates that would require a reboot and it asked the usual stuff. (It didn't say what would update.)
    3. I clicked to reboot now and it asked for my password and rebooted.
    4. My MacBook rebooted but nothing had been updated.
    So, I went to the Apple menu to check for updates and it said I had Safari 4.0.2 ready to be installed. This time, it worked. Unfortunately, I have to do this two-step process on every update that requires a reboot. I could turn off the automatic updates and just do everything manually but I prefer the automatic way. (I had it before, too.)
    Thanks in adavance,
    Brian

    Jeffery,
    Thank you for your quick response!
    {quote:title=Jeffrey Lee wrote:}
    How often do you have SU to check for updates? And do you have "Download important updates automatically" checked as well?{quote}
    I have check for updates weekly and download important updates automatically enabled.
    {quote}I'm thinking that the first time you approved the update, that it could have been for something that was already downloaded in the background, and just waiting for you to OK the install.
    Then when you rebooted, and did the manual check, it found that the Safari update was available as well.{quote}
    Interesting. I hadn't thought about that. ☺
    {quote}There could be a host of other issues... but check the "installed updates" in the SU preferences, and see what, if anything, was installed right before the last Safari update... note the date and times and see if my theory might be correct.{quote}
    Here's what it shows for the last month:
    {quote}2009-06-11 00:03:05 -0700: Installed "Digital Camera Raw Compatibility Update" (2.6)
    2009-06-11 00:03:10 -0700: Installed "iLife Support" (9.0.3)
    2009-06-11 00:03:25 -0700: Installed "iDVD Update" (7.0.4)
    2009-06-11 00:04:21 -0700: Installed "Safari" (4.0)
    2009-06-17 00:03:28 -0700: Installed "Java for Mac OS X 10.5 Update 4" (1.0)
    2009-06-17 23:30:01 -0700: Installed "Safari" (4.0.1)
    2009-06-24 23:34:18 -0700: Installed "HP Printer Drivers Update" (1.1.1)
    2009-07-09 18:38:49 -0700: Installed "Safari" (4.0.2){quote}
    Also, I don't think it matters but I did upgrade VLC to 1.0 the previous day.
    Thanks,
    Brian

  • HT201210 I started update connected to my work computer....it started update and now it is asking me to connect to Itunes, which I have but my work computer doesn't have my Iphone information..... I can't use my phone now when I start up it says connect t

    I started update connected to my work computer....it started update and now it is asking me to connect to Itunes, which I have but my work computer doesn't have my Iphone information, it says I have the latest software, my only option is to "restore phone" which I don't want to do here at work as none of my apps or music are showing up ..... I can't use my phone now when I start up it says connect to itunes.....

    Mozilla has nothing to do with a Microsoft product activation key.
    That "test" page should be viewed in Internet Explorer and not with Firefox, as it may use ActiveX which isn't compatible with any Mozilla product.
    [https://support.mozilla.com/en-US/kb/ActiveX]

  • I have a mac osX 10.5.8 and i could always make photo books with iphoto , now all of a sudden i cant because i have iphoto version 7.1.5 i have tried countless updates and nothing is working ? help ?

    i have a mac osX 10.5.8 and i could always make photo books with iphoto , now all of a sudden i cant because i have iphoto version 7.1.5 i have tried countless updates and nothing is working ? help ?

    Books are no longer supported with iPhoto '08 (a roughly six yeal old product) - you can purchase an iLife '09 DVD from someplace like Amazon or eBay and install it - iPhoto '09 is still supported this year
    LN

  • IMac at work, iMac at home. (Latest Yosemite and Apple Remote Desktop updates installed) Need to work from home at night. I don't know how to set my permissions so that I can just control my iMac at work.

    iMac at work, iMac at home. (Latest Yosemite and Apple Remote Desktop updates installed) Need to work from home at night. I don't know how to set my permissions so that I can just control my iMac at work.

         If they have set up port forwarding for you already then that is different.  In that case, then you could be experiencing the bug with the most recent release of ARD (3.7.2) and in particular ARD 3.7.2 and Yosemite ARD version 3.8 clients.  It has been reported numerous times in the forums and to Apple that since 3.7.2, clients are frequently unavailable to connect to despite there being no network issue between the remote computer and client computer.  I have not seen anyone report it who was working from outside the LAN to inside the LAN, but I have the same issue with a number of my own computers that are simply on a different subnet, so it stands rot reason that it would happen from a port forwarding location.
         I am sometimes able to resolve the issue locally by SSH connecting into the client computer using Terminal on my admin machine and restarting or relaunching the ARD agent on the remote device, then trying to connect to it again after about 30 seconds.
    The Terminal commands for this procedure are as follows, though you might need to include a port number from outside the LAN:
    First:
    ssh ipaddress -l adminusername
    (example: ssh 192.168.1.1 -l macadmin)
    Second:
    sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/k ickstart -restart -agent
    After that, waiting about 30 seconds and trying to observe or control usually works, though the computer may still fail to show an online or lit-up status indicator.

  • Error Message "iPod can not be updated.." but works after clicking away msg

    Hi!
    I have installed an German iTunes 6.0.4.2. and the newes IPod Software under WinXP.
    After clicking " iPod Aktualisieren" I get the following message:
    Der iPod "xxx" kann nicht aktualisiert werden. Ein unbekannter Fehler ist aufgetreten (-39).
    Transl:
    The iPod "xxx" cannot be updated. An unknwon Error has occured (-39).
    After clicking away the messagebox everything sync's fine.
    Whats wrong here? I have the problem for a week or so and already updated iTunes and the iPod software so far. And reset the iPod back to delivery conditions with the update tool. Nothing worked.
    kind regards
    marcus

    I did a search on Google for Error -39, and it suggests 2 things. Installing the latest version (which is sounds like you have) and turning OFF web accelerators if there are any running...
    http://docs.info.apple.com/article.html?artnum=44000

  • [svn:osmf:] 13494: Update build script to work with Flex 4 SDK.

    Revision: 13494
    Revision: 13494
    Author:   [email protected]
    Date:     2010-01-13 20:30:13 -0800 (Wed, 13 Jan 2010)
    Log Message:
    Update build script to work with Flex 4 SDK.
    Modified Paths:
        osmf/branches/flex4/build/build.xml

    No, you don't need Flash Builder to use the Flex SDK. If you download the SDK and unzip it, you'll find a 'bin' directory that has the mxmlc compiler in it. You can compile Actionscript or MXML files using that.
    ./mxmlc MyFlexApp.mxml
    If you are building an AIR application, you will use amxmlc
    ./amxmlc MyAIRFlexApp.mxml
    Then, launch your AIR application using adl
    ./adl.exe MyAIRFlexApp-app.xml
    Hope this helps,
    Joan

  • Update rowcount is not working in obiee11.1.1.6.8

    i m using obiee 11.1.1.6.8, where i cant do update row count in physical layer and tools---update row count...nothing was afffected
    iand i cant update rowcount option in physical layer of obieee.
    please help me

    Hi,
    Its reolved. our sking and style dvn files not yed updated earliear...after updated and restarted its working fine.
    thanks
    Deva

  • Update Panel is not working browsers other than IE

    In SharePoint 2013, Update Panel is not working for firefox, chrome etc.

    Hi,
    From your description, my understanding is that you use
    <asp:UpdatePanel>tag in your code, but it does not work well in browsers except
    IE.
    I have test
    <asp:UpdatePanel>tag with code below, and it works well in IE, chrome, Firefox
    as the screenshot.
    <asp:UpdatePanel ID="UpdatePanel1" runat="server" UpdateMode="Conditional" ChildrenAsTriggers="true">
    <ContentTemplate>
    <asp:Label ID="lbl" runat="server" Text="Loaded" Visible="true"></asp:Label>
    <asp:Button ID="btn" runat="server" OnClick="btn_Click"/>
    </ContentTemplate>
    </asp:UpdatePanel>
    protected void btn_Click(object sender, EventArgs e)
    lbl.Text = "BUTTON CLICKED !";
    lbl.Visible = true;
    The screenshot below is my result(the first is result in Chrome, second is in Firefox and last is in IE):
    And you also could refer to this article:
    http://sharepoint.stackexchange.com/questions/72928/update-panel-not-working-in-firefox-2013
    Best Regards,
    Vincent Han
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

Maybe you are looking for

  • Save menu options are dimmed

    Hi all, I'm working with a set of students who have run into a bit of a problem saving a project they are working on in Garageband 3. I wasn't in the room with them when this came up, so I have limited info. about the circumstances surrounding this e

  • How to open field WERKS in Internal order settlement rule

    Hello experts, Could you explain please  how to add field PLANT (WERKS) in internal order settlement rules. I would like to fill out this field during the settlement process. Any advices will be very appreciated. Regards, Ivan

  • Change Moveing average price in MIGO Goods Reciept through user exit

    Hi, i need to change the moving average price in the MIGO transaction  (Goods Issue) through user exit can any one help me with user exit.

  • Please confirm: INT columns in calculations return INT results?

    Is it true that, when creating a formula-based column in Answers, dividing an INT typed logical column into an INT typed logical column will result in an INT typed result? I must have missed something fundamental here, but it seems counter-intuitive

  • Error With Ubuntu and windows 8 dual boot

    I have a levovo x240 and I had Ubuntu and windows 8 dual booted I removed the Ubuntu partition in windows partition modifier and when I restarted my computer it launch "grub rescue> " How do I boot into windows and stop this problem