Z-Index layering in Firefox?

Hey All...
Newbie on this board, looking for someone who can help me out with some layering issues I have on this page (there are other pages, but this one will be easy to understand.
http://www.syrup.doralevich.com/page72.html
here's my issue.   This page has a lightbox and a cart for adding products to it, they aren't playing nicely in Firefox.   if you click on the image, the picture appears in a lightbox, although behind the Flash show "Syrup" covering up the image.
If you add an item to the cart (top of page) and then Show Cart, you'll also notice that the cart comes down but again, behind the Flash show "Syrup"
When using my Mac, it works fine in all 3 browsers. 
I added this piece of code, which made it wokr in IE 7 and 8 on a PC
<PARAM NAME="wmode" value="opaque" />
The only browser that I can tell that isn't wokring correctly is Firefox (I'm using 3.5.7).
Is there any way that this can be fixed?   Here is the code that gives me that effect:
<center><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" WIDTH="550" HEIGHT="160">
<PARAM NAME=movie VALUE="http://www.syrupclothingny.com/warehouse/Syrup Splash600.swf">
<PARAM NAME=quality VALUE="high">
<PARAM NAME="wmode" value="opaque" />
<EMBED src="http://www.syrupclothingny.com/warehouse/Syrup Splash600.swf" quality="high" WIDTH="550" HEIGHT="160" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">
</EMBED>
</OBJECT></center>
And attached is a screenshot showing how it covers up the cart/picture.
Thank you very much for your help.
David

Hi SnakEyez02
Thank you for your reply.
After I posted my question yesterday I ran across an article on Adobes site explaining about wmode.
I realized that my lower div on the pages that displayed wrong all had flash content, and the article says that flash content always display in the top layer regardless of z-index given.
http://kb2.adobe.com/cps/142/tn_14201.html
But if you assign a wmode in parameters of either transparent or opaque you can layer the flash with dhtml. I did this after my post and now the menu displays right in both IE and Firefox!
So you were looking at the already altered code.
I will still clean up the things you mentioned. But thank you very much for your quick reply.
Sincerely,
G Gaarde

Similar Messages

  • Flash buttons not showing/hiding layers in Firefox

    Before anyone says to use the search tool, I did that, even googled the problem and no suggestions have yet to work. here is the page http://www.preziosidevelopment.com/dchs/dchs.html it works flawlessly in internet explorer, but fails to work at all in firefox. All the buttons being nested inside table cells is another byproduct of having to design for firefox, if there is a better way of setting those up so they display properly in firefox feel free to let me know. I'm a designer not a coder, so please keep that in mind. Just to clarify, the only problem I am currently having is the first two buttons are not showing/hiding my layers in firefox as they do in internet explorer. Thanks for any help.
    Richard Preziosi

    I'm a designer not a coder, so please keep that in mind.
    Here's a sincere suggestion.  Do not use Flash buttons for anything.  Really.  People who don't have Flash will not see the buttons or be able to trigger anything.  Search engines will not see any links that may be embedded in those buttons nor will assistive screen devices.  As a result of these as well as other maintenance problems that would affect *you* when you try to maintain them, Adobe has removed them entirely from CS4 (and I say good riddance).  Is it possible for you to rethink this entire approach using CSS styled text or ordinary graphic buttons?

  • Typing in url for my company website sends it to https index page in Firefox, but not IE or Chrome, and the behavoir is not wanted

    After upgrading Firefox to version 14.0.1 i noticed when i typed in my company's website address that firefox went to the https:// version of the site when it never did that before.
    Example, if you type in amazon.com in the URL bar, you briefly see that firefox turns the url to https://www.amazon.com before being auto directed to the normal www.amazon.com site.
    My website did not have a secure index page and people were getting a server generated message until I found this issue out.
    Is there a setting in Firefox to prevent the URL bar from selecting a secure connection first? This behavior does not occur in the most recent versions of I.E. or Chrome browsers on a desktop.
    Any help would be greatly apprecaited

    I've now been forced to tell my users NOT to use FF because of it's BUG.

  • Z-Index Layers

    HI
    I have a flash movie and I need to cover a portion of it with
    a HTML Layer (specifically using Dreamweaver layers.
    I have tried adjusting the Z-Index, but the Flash movie
    always ends up on top of the layer.
    How do I force Flash NOT to be the top layer?
    Thanks
    Rowby

    Marghoob Sulemaan is right. But only use the transparent
    wmode if you need transparency (like rounded borders or see
    through) as it is more CPU intensive. Otherwise, use the opaque
    wmode if you only want to display layers on top of Flash (check
    adobe.com HTML source on any page with Flash).
    If you still have problems (namely, with IE6), you can put
    the SWF in a container layer, hide it (visibility: hidden) at the
    beginning then show it after a short while (visibility: visible).
    Best regards,
    Karl Sigiscar.

  • Z Index, layering images, need help (going crazy!)

    Need some help on layering images. As you can see, the "polaroid" has tape on it - I want that tape to overlap the menu bar.
    The menu bar is a grapic (there is a slight gradient to it) and on top of it are the actual menu graphics.  If I remove the menu graphics, the photo overlaps fine.  But if I insert the menu graphics, they lie on top of the polaroid.  Thanks in advance for any help you can provide.
    Gary
    Here is the code for the page:
    <h1>SanDiegoHomegrown.com</h1>
    <img src="images/menuBar.gif" />
    <ul id="menuBar">
       <li id="listen"><a href="songs.html">Listen</a></li>
      <li id="submit"><a href="submit.html">Submit Songs</a></li>
      <li id="seals"><a href="seals.html">Help the Seals</a></li>
      <li id="about"><a href="about.html">Our Story?</a></li>
      <li id="sponsors"><a href="sponsors.html">Sponsors</a></li>
    </ul>
    <div id="polaroid">
    <img src="images/band2_polaroid.png" width="280" height="354" />
    </div><!--polaroid-->
    Here is the CSS:
    #polaroid {
        height: 354px;
        width: 280px;
        padding-left: 50px;
        margin-top: -40px;
    #menuBar {
        height: 30px;
        width: 960px;
        padding: 0px;
        font-family: "Courier New", Courier, monospace;
        list-style-type: none;
        position: absolute;
        display: block;
        background-repeat: no-repeat;
        margin-top: -30px;
    #menuBar a {
        width: 175px;
        display: inline-block;
        color: #2F3032;
        text-align: left;
        vertical-align: 0%;
        margin: 0px;
        list-style-type: none;
        float: left;
        height: 35px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 10px;
        text-indent: -9999px;
    #menuBar #listen {
        background-repeat: no-repeat;
        position: absolute;
        background-image: url(images/titles/listen_bar_orig.gif);
    #menuBar #submit {
        background-image: url(images/titles/submit_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 150px;
        width: 200px;
        z-index: 1;
    #menuBar #seals {
        background-image: url(images/titles/seals_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 375px;
        width: 225px;
    #menuBar #about {
        background-image: url(images/titles/about_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 625px;
    #menuBar #sponsors {
        background-image: url(images/titles/sponsor_bar_orig.gif);
        background-repeat: no-repeat;
        position: absolute;
        margin-left: 800px;

    Auggh, just figured it out.  The Polaroid needed to be relative positioning!

  • After fixing z-index layers lost container color and footer

    I fixed the layers, but lost the container background and  footer. The editable text box within the footer for credits shows up at  the top. Here's what I had http://www.jewishstorytelling.org/JSC/index.html , and then I'll put the revised css and code below (not the most elegant). Thoughts would be appreciated!
    body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #0254A6;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #000000;
    #container {
    width: 780px;
    background: #FFFFFF;
    margin: 0 auto;
    border: 1px solid #000000;
    text-align: left;
    #header {
    background: #FFFFFF;
    padding: 0;
    position: absolute;
    z-index: 1;
    #menu01, #menu02, #menu03, #menu04, #menu05, #menu06, #menu07 {
    font-family: Verdana, Geneva, sans-serif;
    font-size: 0.6em;
    padding-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
    position:absolute;
    z-index: 10;
    .menuHome {
    margin: 125px 0 0 49px;
    .menuAbout {
    margin: 160px 0 0 126px;
    .menuDir {
    margin: 114px 0 0 191px;
    .menuStory {
    margin: 160px 0 0 342px;
    .menuBiblio {
    margin: 114px 0 0 410px;
    .menuBlog {
    margin: 160px 0 0 527px;
    .menuContact {
    margin: 124px 0 0 594px;
    #mainContent {
    margin: 220px 130px 50px 121px;
    padding: 0px 0 30px 0;
    text-align: left;
    position:absolute;
    z-index: 20;
    #mainContent h1 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #039;
    line-height: 1.2em;
    padding-bottom: 0em;
    margin-top: 2.6em;
    #mainContent p {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 0.9em;
    line-height: 1.3em;
    list-style: square outside;
    margin-top: 0.4em;
    #mainContent ul li {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 0.9em;
    padding: 0px 0 0;
    line-height: 1.3em;
    margin: 0 30px 0 0px;
    list-style: disc outside;
    .photo {
    padding-right: 12px;
    padding-bottom: 3px;
    margin-top: 0.65em;
    #mainContent #innerContent1 p {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 0.7em;
    padding: 0px;
    margin-top: 0px;
    line-height: 1.3em;
    #footer {
    padding: 0 10px;
    background:#FFC;
    margin-top: 20px;
    z-index: 40;
    #footer p {
    margin: 0;
    padding: 10px 0 0 121px;
    font-size: 0.6em;
    text-align: left;
    a:link {
    color: #039;
    text-decoration: none;
    font-weight: normal;
    a:visited {
    text-decoration: none;
    color: #093;
    font-weight: normal;
    a:hover {
    color: 4cB0E8;
    text-decoration: none;
    font-weight: normal;
    .bodytextindent {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 0.9em;
    line-height: 1.3em;
    list-style: square outside;
    text-align: left;
    margin-left: 50px;
    margin-top: 0em;
    margin-right: 50px;
    <html>
    <head>
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Jewish Storytelling Coalition</title>
    <!-- TemplateEndEditable -->
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <link href="../jsc.css" rel="stylesheet" type="text/css">
    <!-- TemplateBeginEditable name="head" -->
    <!-- TemplateEndEditable -->
    </head>
    <body class="main">
    <div id="container">
    <div  id="header"><img src="../images/head_780px_02.png" width="780"  height="329" alt="Jewish Storytelling Coalition"></div>
    <!-- End ImageReady Slices -->
    <div  class="menuHome" id="menu01" style="width:45px; height:17px;"> <a  href="../index.html">HOME</a></div>
    <div  class="menuAbout" id="menu02" style="width:47px; height:21px;"> <a  href="../about.html">About</a></div>
    <div class="menuDir" id="menu03" style="width:121px; height:19px;"> <a href="../directory.html">DIRECTORY<br>
        of storytellers
      </a></div>
    <div class="menuStory" id="menu04" style="position:width:57px; height:17px;"> <A href="../story.html">
    <br>STORY</a></div>
    <div id="menu05" class="menuBlog" style="width:43px; height:14px;"> <a href="http://jscnews.blogspot.com/" target="_blank">BLOG</a></div>
    <div  class="menuContact" id="menu06" style="width:60px; height:17px;">  <a href="../contact.html">Contact</a></div>
    <div  class="menuBiblio" id="menu07" style="width:90px; height:26px;">  <a href="../biblio.html">ANNOTATED BIBLIOGRAPHY <br>
      </a></div>
    <div id="mainContent"><!-- TemplateBeginEditable name="mainText" -->
      <h1>H1</h1>
    <p>P Paragraph</p>
    <!-- TemplateEndEditable --></div>
    <div id="footer">            
    <p><a  href="../index.html">HOME</a> | <a  href="../about.html">ABOUT</a> | <a  href="../directory.html">DIRECTORY</a> | <a  href="../story.html">A STORY</a> | <a  href="../biblio.html">BIBLIOGRAPHY</a> |<a href="http://jsceventlist.blogspot.com/" target="_blank"> BLOG</a> | <a href="../contact.html">CONTACT</a></p>
        <p>&copy; 2009-2011 Jewish Storytelling Coalition. Web site design
                  by <a href="http://blueirisdesign.com/index.html" target="_blank">Blue Iris Design</a>.</p>
    <!-- TemplateBeginEditable name="credits" -->
         <p>credit</p>
    <!-- TemplateEndEditable --></div>
    </div><!-- end #container -->
    </body>
    </html>

    You realize that the code you show below is for a Template page, not a child page, right?  And you also realize that your layout method is going to be just a big problem for you because of your use of absolute positioning as a primary layout method, right?  I'm just trying to make sure that you want to push ahead with what I consider a badly flawed approach....

  • Z-index layering moving images

    Hi,
    I am hoping someone can help me out! Basically I have an application to build that has a frame image (img1) with a transparent centre, an image (img2) within that centre area and another image (img3), the same size as img2, that hides in behind img2.
    When a button is clicked, img2 will move up and reveal img3. When the button is clicked again img2 moves back down and covers over img3 again.
    The problem is to do with the layering of the images. I want img2 to always lay over img3 so that when it is back down img3 is completely hidden. I am able to do all of this up to this point. The problem lies is that when img2 is moving up, I want it to move up in behind the top of the outer frame (img1), but all I can get is the image moving up over the top of the frame and not slotting in behind it.
    I hope I have explained this clearly! Not so easy!
    I tried the WipeUp effect, which was close to what I want, but the image winds up with the top of the image remaining until the last moment before it disappears. I want the image to roll all the way the way a window blind would so that you would always see the bottom of the image until it reached the top.
    Does anyone have any ideas of how to do this?
    Thank you so much in advance!

    Would be great if someone from Adobe was on here yes!
    I will give your suggestion a try later today, but I have a feeling that when I 'move' img2 up it somehow changes it's z-index. I also give the user the option to change the frame to a different style. Even though it stays staic on the screen (has no effects - all I do is change the source of the image), I think that changing the source of it also changes its z-index and brings it to the front.
    Very frustrating. I'll let you know how I get on with your suggestion later - thanks for taking the time in trying to help me.

  • Simple z-index layering problem

    I'm trying to overlay some text on top of an image. The
    stacking order seems to work, but I can't position my text where I
    want it–in the white box on the graphic below. It may be a
    problem with my positioning attribute, but I'm not sure which one
    to use (absolute, relative, inherit etc...) I've tried them all,
    and none seem to work. Anyone have any suggestions?
    And why does the positioning look fine in the design view in
    Dreamweaver?
    http://www.theeficlub.com/test/EFI_about_the_author.html
    Thanks

    Auggh, just figured it out.  The Polaroid needed to be relative positioning!

  • Server Side Includes not rendering correctly in Firefox with Layers

    Hi
    The server side includes are not correctly rendering with layers in firefox. From my site here:-
    http://www.osteriastecca.com/index.php
    the home_page.php content renders above a layer on the index.php page. Initially I thought this might be a Flash layer issue but the wmode is set correctly to transparent and it works fine with a normal ssi. It also works fine in Firefox without a server side include as you can see here:-
    http://www.osteriastecca.com/index_old.php
    Works fine in IE and Safari, but not Firefox.
    How can this be rectified?
    Regards
    Glennyboy

    What testing server setup do you have? Are you using something like WAMP?
    What do you see on screen which tells you the SSIs are not rendering? Any error message?

  • When I try to click on a download link for a .pdf file Firefox does not recognize the MIME type and tries to download the file as "index.php"

    When visiting a site I frequent I tried to download a linked .pdf file. Previously I've used Firefox 7.0.1 to download the link with no problem. Using Firefox 8 however I the browser does not recognize the .pdf link's mime type. Instead of recognizing the download link as a .pdf file Firefox 8 tries to download it as "index.php". Firefox 8 does this with .doc files and .txt files as well. When I downgrade to 7.0.1 again the problem disappears.

    Hi hakmacpace,
    I'd try starting Firefox in [[Safe Mode]]. If you don't have the issue while all of your add-ons, extensions, and themes are disabled, you can try adding them back in one by one until you find the culprit. You should look at the [https://support.mozilla.org/en-US/kb/Troubleshooting-extensions-themes Extensions and Themes troubleshooting guide ] and the [[Troubleshooting plugins]] article as well.
    You could also try [https://support.mozilla.org/en-US/kb/Managing-profiles?s=create+a+new+profile&r=2&e=es&as=s#w_creating-a-profile Creating a new profile].
    Hopefully this helps!

  • Firefox has been crashing everyday, I do not know why?

    This is the report I get. Nobody got back to me from Firefox although I provided my e-mail each time.
    AdapterDeviceID: 1040
    AdapterVendorID: 10de
    Add-ons: [email protected]:2.0.8,[email protected]:1.19.1,[email protected]:2.1.4,[email protected]:1.6.2,{1A2D0EC4-75F5-4c91-89C4-3656F6E44B68}:0.4.6,{54BB9F3F-07E5-486c-9B39-C7398B99391C}:4.0.2011021601,{73a6fe31-595d-460b-a920-fcc0f8843232}:2.3.2,{902D2C4A-457A-4EF9-AD43-7014562929FF}:0.4.6,{C6128004-4838-4708-9A97-BB172D17767D}:1.7,{d10d0bf8-f5b5-c8b4-a8b2-2b9879e08c5d}:2.0.3,{dc572301-7619-498c-a57d-39143191b318}:0.4.0,{CAFEEFAC-0016-0000-0031-ABCDEFFEDCBA}:6.0.31,{53A03D43-5363-4669-8190-99061B2DEBA5}:1.5.3,{a0d7ccb3-214d-498b-b4aa-0e8fda9a7bf7}:20120302,{972ce4c6-7e08-4474-a285-3208198ce6fd}:10.0.2,{22119944-ED35-4ab1-910B-E619EA06A115}:7.7.0
    AvailableVirtualMemory: 3676635136
    BuildID: 20120215223356
    CrashTime: 1331019101
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1330440396
    Notes: AdapterVendorID: 10de, AdapterDeviceID: 1040, AdapterSubsysID: 00000000, AdapterDriverVersion: 8.17.12.9573
    D2D? D2D+
    DWrite? DWrite+
    D3D10 Layers? D3D10 Layers+
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 51703
    StartupTime: 1331017610
    SystemMemoryUsePercentage: 44
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: http://www.google.com.tr/search?q=leveraged&num=20&hl=tr&lr=lang_tr&btnG=Ara&sourceid=Mozilla-search
    Vendor: Mozilla
    Version: 10.0.2
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.

    Hi,
    Please see [https://crash-stats.mozilla.com/report/index/d66540cd-6967-4324-afc7-6b9d52120306 this]. You can try to temporarily '''Disable''' Trusteer in '''Tools '''('''Alt''' + '''T''') > '''Add-ons'''. You can also try to update it by right-clicking on the name and '''Find Updates''' or '''More''' > '''Home Page'''. If the problem persists, please also check in [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]. Safe mode disables the installed '''Extensions''', and themes ('''Appearance''') in '''Tools''' ('''Alt''' + '''T''') > '''Add-ons'''. Hardware acceleration is also temporarily disabled - the manual setting is '''Tools''' > '''Options''' > '''Advanced''' > '''General''' > '''Use hardware acceleration when available'''. [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u Options > Advanced]. All these settings/add-ons can also be individually and manually disabled/enabled/changed in Firefox normal mode to check if an extension, theme or hardware acceleration is causing issues.
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [http://support.mozilla.com/en-US/kb/Uninstalling+add-ons Uninstalling Add-ons]
    [http://kb.mozillazine.org/Uninstalling_toolbars Uninstalling Toolbars]

  • I was prompted to update firefox 2 days ago for the latest security updates or whatever and now it will not even open for me. It instantly crashes upon loading. Please help! I dont like using IE! Thanks

    This is the crash report..
    AdapterDeviceID: 3582
    AdapterVendorID: 8086
    Add-ons: {02450954-cdd9-410f-b1da-db804e18c671}:0.96.3,{a7c6cf7f-112c-4500-a7ea-39801a327e5f}:1.99.5,[email protected]:1.0,[email protected]:1.8.15,[email protected]:1.23.0.5,[email protected]:1.12.3.53363,{972ce4c6-7e08-4474-a285-3208198ce6fd}:7.0.1
    AvailableVirtualMemory: 1986260992
    BuildID: 20111104165243
    CrashTime: 1321048791
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1320939236
    Notes: Cisco VPN
    AdapterVendorID: 8086, AdapterDeviceID: 3582, AdapterDriverVersion: 6.14.10.4396
    D3D10 Layers? D3D10 Layers-
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 1443
    StartupTime: 1321048783
    SystemMemoryUsePercentage: 89
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 2147352576
    URL: http://www.google.com/ig?hl=en
    Vendor: Mozilla
    Version: 8.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 :
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 :
    RSVP UDP Service Provider : 6 : 2 :
    RSVP TCP Service Provider : 6 : 1 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{37712E8C-9FB8-4B88-8AF2-3EE41F358984}] SEQPACKET 4 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{37712E8C-9FB8-4B88-8AF2-3EE41F358984}] DATAGRAM 4 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{66007C7F-458C-46B5-B844-DC12168FAAA8}] SEQPACKET 3 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{66007C7F-458C-46B5-B844-DC12168FAAA8}] DATAGRAM 3 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{F9C7BC14-8723-4B6C-A3CC-C47D5CB832A4}] SEQPACKET 0 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{F9C7BC14-8723-4B6C-A3CC-C47D5CB832A4}] DATAGRAM 0 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{2810EB22-763D-4D0C-9450-64BBD1758685}] SEQPACKET 1 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{2810EB22-763D-4D0C-9450-64BBD1758685}] DATAGRAM 1 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{531D3D38-B38F-4A40-9052-52EFBA55506B}] SEQPACKET 2 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{531D3D38-B38F-4A40-9052-52EFBA55506B}] DATAGRAM 2 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{86947241-CF46-4E69-B7DD-633E04A3D882}] SEQPACKET 5 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{86947241-CF46-4E69-B7DD-633E04A3D882}] DATAGRAM 5 : 2 : 2 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{947908E1-6CF6-43EF-AE36-C921AA871A97}] SEQPACKET 6 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{947908E1-6CF6-43EF-AE36-C921AA871A97}] DATAGRAM 6 : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.

    OK, lets do a complete overhaul to make sure it's working ok.
    First to check your Windows system file for any corruption:
    Go to command prompt (START/ALL PROGRAMS/ACCESSORIES right mouse click "command prompt" and choose "Run as Administrator"
    type in
    sfc /scannow
    let Windows fix any system files that need to be repaired.
    Restart the computer.
    Start iTunes and see if it is ok.
    If it doesn't, will have to go through the whole process of uninstalling and installing acccording to the following steps:
    1. Go to Microsoft website to fix install and Unistall problems. Click "Run now" from Fix it to remove all iTunes & related installer files:
    http://support.microsoft.com/mats/Program_Install_and_Uninstall
    Be aware that Windows Installer CleanUp Utility will not remove the actual program from your computer. However, it will remove the installation files so that you can start the installation, upgrade, or uninstall over.
    2. You should remove all instances of iTunes and the rest of the components listed below:
    it may be necessary to remove all traces of iTunes, QuickTime, and related software components from your computer before reinstalling iTunes.
    Use the Control Panel to uninstall iTunes and related software components in the following order:
    iTunes
    QuickTime
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support (iTunes 9 or later)
    (Referenceinstructions from Apple article listed here: http://support.apple.com/kb/HT1923 to remove all components)
    3. Reboot your computer. Next, download iTunes from here:http://www.apple.com/itunes/download/ and install from scratch

  • Firefox crashes

    Firefox had a problem and crashed. We'll try to restore your tabs and windows when it restarts.- I get this every time I try to start firefox. I can open firefox in safe mode however. I have tried the following steps as advised on your trouble shooting page to try and resolve this issue yet it is still crashing on start:
    1) updated drivers via windows update
    2) updated firefox from version 7 to 8
    3) done security check for any virus/ spy ware issues
    4) checked all plugins are up to date and removed any irrelevant ones
    I have also tried the following steps on my partner's laptop and he also still has the same issue (he has different make/ model/ age of laptop but like me has Windows 7).
    The details given of the crash report is as follows:
    AdapterDeviceID: 0046
    AdapterVendorID: 8086
    Add-ons: {37fa1426-b82d-11db-8314-0800200c9a66}:2.8.1,{972ce4c6-7e08-4474-a285-3208198ce6fd}:8.0
    AvailableVirtualMemory: 3976339456
    BuildID: 20111104165243
    CrashTime: 1320924387
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1320922683
    Notes: AdapterVendorID: 8086, AdapterDeviceID: 0046, AdapterDriverVersion: 8.15.10.2189
    D3D10 Layers? D3D10 Layers-
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 370
    StartupTime: 1320924385
    SystemMemoryUsePercentage: 40
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: http://www.nectar.com/
    Vendor: Mozilla
    Version: 8.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    MSAFD RfComm [Bluetooth] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    This report also contains technical information about the state of the application when it crashed.

    I have been told this and also AVG but I actually discovered the cause of my problem was 'webmail notifier 2.8.1' I recognised the number sequence in the error report to being from this and removed it- now firefox is working fine. I think this issue is always going to be caused by a certain plugin/ addon thats installed and no longer compatible with the latest version of firefox.
    Thanks for your help anyway

  • Firefox crashes every time I launch it making the program unopenable

    At first firefox 4 was fine for about a couple of months then I notcied it crashing all the time, about 30% of the time I open a new tab or page it would crash.
    Now when I opend firefox I get a crash report before the browser has even opened, even if I open a link in outlook it crashes right away. Perhaps it is openeing a page I had open that it just constantly crashes on or maybe the program crashes upon any open page, I am not sure.
    Give me back firefox 3.0 :( (I was forced to post this using IE it is a sad day)
    <pre><nowiki>
    Windows 7 Ultimate 64 bit
    AMD Phenom II X4 3.4 ghz
    G.skill 8GB RAM 1300mhz
    Gigavyte HD6870
    Running applications:
    Norton: antivirus disabled, firewall allowing all connections from firefox.
    Had no problems before version 4.0
    Error details:
    AdapterDeviceID: 6738
    AdapterVendorID: 1002
    Add-ons: {BBDA0591-3099-440a-AA10-41764D9DB4DB}:2.0,{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}:5.6,{01A8CA0A-4C96-465b-A49B-65C46FAD54F9}:6.0,{53A03D43-5363-4669-8190-99061B2DEBA5}:1.4.5,{73a6fe31-595d-460b-a920-fcc0f8843232}:2.1.1,{972ce4c6-7e08-4474-a285-3208198ce6fd}:4.0.1
    AvailableVirtualMemory: 3995193344
    BuildID: 20110413222027
    CrashTime: 1307144794
    EMCheckCompatibility: true
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1305189722
    Notes: AdapterVendorID: 1002, AdapterDeviceID: 6738, AdapterDriverVersion: 8.850.0.0
    D2D? D2D+
    DWrite? DWrite+
    D3D10 Layers? D3D10 Layers+
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 405
    StartupTime: 1307144794
    SystemMemoryUsePercentage: 18
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 4294836224
    URL: jar:file:///C:/Program%20Files%20(x86)/Mozilla%20Firefox/omni.jar!/chrome/browser/content/browser/aboutHome.xhtml
    Vendor: Mozilla
    Version: 4.0.1
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    This report also contains technical information about the state of the application when it crashed.</nowiki></pre>

    See:
    *https://support.mozilla.com/kb/Firefox+crashes+when+you+open+it
    What you posted is not a crash report, but only some information about your setup.
    If you have submitted Breakpad crash reports then post the IDs of one or more Breakpad crash reports (bp-xxxxxxxx-xxxxxxxxx-xxxx-xxxxxxxxxxxx).<br />
    You can find the IDs of the submitted crash reports on the <i>about:crashes</i> page.<br />
    You can open the <b>about:crashes</b> page via the location bar, like you open a website.<br />
    See:
    * http://kb.mozillazine.org/Breakpad (Mozilla Crash Reporter)

  • FireFox crashes eich time I launch it. This started after upgrading to version 8. The following are the text details of the crash:

    Crash Details
    AdapterDeviceID: 29c2
    AdapterVendorID: 8086
    Add-ons: {972ce4c6-7e08-4474-a285-3208198ce6fd}:8.0
    AvailableVirtualMemory: 1927401472
    BuildID: 20111104165243
    CrashTime: 1320865107
    EMCheckCompatibility: true
    Email: [email protected]
    FramePoisonBase: 00000000f0de0000
    FramePoisonSize: 65536
    InstallTime: 1320864525
    Notes: AdapterVendorID: 8086, AdapterDeviceID: 29c2, AdapterDriverVersion: 7.14.10.1437
    Has dual GPUs. GPU #2: AdapterVendorID2: 8086, AdapterDeviceID2: 29c3, AdapterDriverVersion2: 7.14.10.1437D3D10 Layers? D3D10 Layers-
    ProductName: Firefox
    ReleaseChannel: release
    SecondsSinceLastCrash: 253
    StartupTime: 1320865106
    SystemMemoryUsePercentage: 78
    Theme: classic/1.0
    Throttleable: 1
    TotalVirtualMemory: 2147352576
    URL: jar:file:///C:/Program%20Files/Mozilla%20Firefox/omni.jar!/chrome/browser/content/browser/aboutHome.xhtml
    Vendor: Mozilla
    Version: 8.0
    Winsock_LSP: MSAFD Tcpip [TCP/IP] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [UDP/IP] : 2 : 2 :
    MSAFD Tcpip [RAW/IP] : 2 : 3 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [TCP/IPv6] : 2 : 1 :
    MSAFD Tcpip [UDP/IPv6] : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD Tcpip [RAW/IPv6] : 2 : 3 :
    RSVP TCPv6 Service Provider : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    RSVP TCP Service Provider : 2 : 1 :
    RSVP UDPv6 Service Provider : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    RSVP UDP Service Provider : 2 : 2 :
    MSAFD RfComm [Bluetooth] : 2 : 1 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{575072A9-B8E6-4036-ABE2-D46EF1199DF2}] SEQPACKET 4 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{575072A9-B8E6-4036-ABE2-D46EF1199DF2}] DATAGRAM 4 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{F1C30F11-A7E4-4D8B-A542-EE74EE97CF12}] SEQPACKET 2 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{F1C30F11-A7E4-4D8B-A542-EE74EE97CF12}] DATAGRAM 2 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{673C886A-4239-44B3-8FB5-91C87DBC9BF6}] SEQPACKET 0 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip_{673C886A-4239-44B3-8FB5-91C87DBC9BF6}] DATAGRAM 0 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{50FC48F8-315C-42AA-93A1-8ED02FD53737}] SEQPACKET 8 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{50FC48F8-315C-42AA-93A1-8ED02FD53737}] DATAGRAM 8 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{775C0DE2-AD2D-49B6-9EC0-87E8FD260C86}] SEQPACKET 7 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{775C0DE2-AD2D-49B6-9EC0-87E8FD260C86}] DATAGRAM 7 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{475AAFD1-557C-4618-B1E6-32ADDB7E7CB4}] SEQPACKET 6 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{475AAFD1-557C-4618-B1E6-32ADDB7E7CB4}] DATAGRAM 6 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{ECF17DC8-E1D8-4786-9BA8-C3BEDA6D5377}] SEQPACKET 9 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{ECF17DC8-E1D8-4786-9BA8-C3BEDA6D5377}] DATAGRAM 9 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{575072A9-B8E6-4036-ABE2-D46EF1199DF2}] SEQPACKET 5 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{575072A9-B8E6-4036-ABE2-D46EF1199DF2}] DATAGRAM 5 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{F1C30F11-A7E4-4D8B-A542-EE74EE97CF12}] SEQPACKET 3 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{F1C30F11-A7E4-4D8B-A542-EE74EE97CF12}] DATAGRAM 3 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{673C886A-4239-44B3-8FB5-91C87DBC9BF6}] SEQPACKET 1 : 2 : 5 :
    MSAFD NetBIOS [\Device\NetBT_Tcpip6_{673C886A-4239-44B3-8FB5-91C87DBC9BF6}] DATAGRAM 1 : 2 : 2 : %SystemRoot%\system32\mswsock.dll
    This report also contains technical information about
    the state of the application when it crashed.

    Since a few days we have a lot of crashes with [http://www.trusteer.com/product/trusteer-rapport Trusteer Rapport]. If you have this program, try to disable it and see if that stops the crashing.<br>
    You can stop Rapport using Start Menu > Programs > Trusteer Rapport > Stop Rapport<br>
    You can ask their helpdesk when an updated version of their product will be made available or, if you don't need this software, uninstall it.<br>
    http://www.trusteer.com/support/en/report-problem<br>
    Since yesterday we have a lot of crashes with Roboform. Installing the latest version 7.6.2 of Roboform should solve this problem according to the [https://bugzilla.mozilla.org/show_bug.cgi?id=691271 Related Bug 691271].<br>
    If you do not have Rapport or Roboform, then we need to have a crash report ID.
    When you send Mozilla a crash report it just puts it in a giant database. We have no way of looking it up without the Report ID. I have no idea what is wrong without looking up the crash report. Please get the Report ID of your latest crash report.<br>
    See https://support.mozilla.com/en-US/kb/Firefox%20crashes

Maybe you are looking for