Why is Dreamweaver CS6 freezing on Lion?

When I open a file that opened fine in Dreamweaver CS6 under Snow Leopard 10.6.8, it freezes under OS Lion 10.7.4. It seems to be the links on the page to google web fonts. When I deleted them in another editing software, Dreamweaver opened the page fine.

Firefox is probably your default web browser which launches anytime you click on an .htm or .html file.
If you want HTML files to launch inside Dreamweaver instead of Firefox, open your file manager (Windows Explorer), and change file associations for .html & .htm files.  When you do this, the icon next to those files will change from FF to DW.
Nancy O.

Similar Messages

  • Why my Dreamweaver CS6 encodes the URL php on MM_goToURL ?

    I have a problem with dreamweaver CS6 because when I use this function MM_goToURL, my dreamweaver encodes the php var, i don't know why, I have my preference well.. I don't know if it is a bug from dreamweaver. i'm using template form dreaweaver.
    this is a real code
    and later when I go to update the template look the url on the function MM_goToURL, this change dreamweaver CS6 encode it
    this doesn't happen on dreamweaver CS5, CS5.5, CS4.
    need some help with this please =).

    Check your Preferences.
    Ctrl + U or Cmd + U (on Mac OS) > Code Rewriting > Check URL encoding. Ensure it is set to 'Do not encode special characters'.

  • Dreamweaver CS6 crashes in Lion

    I've had Lion 10.7.4 recently installed, and Dreamweaver CS6 now crashes when I try to open an existing index.html file that opened fine in Snow Leopard 10.6.8. Nothing has changed on this file.

    Thank you. I did what you said and it froze again. It does it with all the pages on the site. I'm wondering if it has anything to do with any of the .js scripts on the site. Below is the code from the index page.
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <title>Cornerstone Interiors Calgary Home</title>
        <meta name="description" content="South Calgary Home Renovations Specialising in Kitchens, Bathrooms and Basement Development" />
    <meta name="keywords" content="south calgary renovations, calgary kitchens, calgary bathrooms, calgary basement renovations, ceramic tile specialists" />
        <meta charset="utf-8">
        <link rel="stylesheet" type="text/css" media="screen" href="css/reset.css">
        <link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
        <link rel="stylesheet" type="text/css" media="screen" href="css/grid.css">
        <link rel="stylesheet" type="text/css" media="screen" href="css/prettyPhoto.css">
        <link href='http://fonts.googleapis.com/css?family=Cuprum' rel='stylesheet' type='text/css'>
        <link href='http://fonts.googleapis.com/css?family=PT+Sans+Narrow' rel='stylesheet' type='text/css'>
        <link href='http://fonts.googleapis.com/css?family=Droid+Sans:700' rel='stylesheet' type='text/css'>
        <script type="text/javascript" src="js/jquery-1.7.2.min.js"></script>
        <script type="text/javascript" src="js/superfish.js"></script>
        <script type="text/javascript" src="js/FF-cash.js"></script>
        <script type="text/javascript" src="js/easyTooltip.js"></script>
        <script type="text/javascript" src="js/jquery.easing.1.3.js"></script>
        <script type="text/javascript" src="js/jquery.roundabout.js"></script>
        <script type="text/javascript" src="js/jquery.prettyPhoto.js"></script>
        <script type="text/javascript" src="js/hover-image.js"></script>
        <script type="text/javascript" src="js/jquery.faded.js"></script>
        <script type="text/javascript">
    $(function(){
    $('ul.sf-menu').superfish();
    $('ul#myRoundabout').roundabout({
    minOpacity:  0,
    maxOpacity:  1,
    minScale: 0.84,
    easing:'easeInOutBack',
    btnNext: '#next',
    btnPrev: '#prev',
    duration:600,
    autoplay:8000
    }).find("> li").append("<span></span>").not('.roundabout-in-focus').find("span").css({opacity:0});
    $('#gallery .inner #prev').hover(
    function(){$(this).stop().animate({width:"55px"}, 300, "easeOutBack")},
    function(){$(this).stop().animate({width:"38px"}, 300, "easeOutBack")});
    $('#gallery .inner #next').hover(
    function(){$(this).stop().animate({width:"55px"}, 300, "easeOutBack")},
    function(){$(this).stop().animate({width:"38px"}, 300, "easeOutBack")});
    $("a[data-gal^='prettyPhoto']").prettyPhoto({theme:'facebook'});
    $("#faded").faded({});
    </script>
    <!--[if lt IE 7]>
                <div style='text-align:center'><a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannerc ode"><img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg"border="0"alt=""/></a></div> 
         <![endif]-->
        <!--[if lt IE 9]>
                 <script type="text/javascript" src="js/html5.js"></script>
            <link rel="stylesheet" type="text/css" media="screen" href="css/ie.css">
    <![endif]-->
    </head>
    <body id="page1">
    <!--=====HEADER=====-->
    <header>
        <div class="main">
            <div class="inner">
                 <div class="wrapper">
                </div>
                <h1>
                    <a href="index.html">Cornerstone interiors</a>
              </h1>
                <nav>
                    <ul class="sf-menu">
                        <li><a href="index.html" class="active">Home</a></li>
                        <li><a href="index-1.html">Company</a></li>
                        <li><a href="index-2.html">Services</a>
                        </li>   
                        <li><a href="index-3.html">Gallery</a></li>
                        <li class="last"><a href="index-4.html">Contact</a></li>
                    </ul>
                </nav>
                <div class="clear"></div>
            </div>
        </div>
    </header>
    <!--=====GALLERY=====-->
    <div id="gallery">
    <div class="bottom-bg">
            <div class="inner">
                <div class="controls">
                    <a id="next" href="#"></a>
                    <a id="prev" href="#"></a>
                </div>
                <ul id="myRoundabout">
                   <li><img src="images/page1-img1.jpg" alt=""></li>
                   <li><img src="images/page1-img2.jpg" alt=""></li>
                   <li><img src="images/page1-img3.jpg" alt=""></li>
                   <li><img src="images/page1-img4.jpg" alt=""></li>
                </ul>
            </div>
        </div>
    </div>
    <!--=====CONTENT=====-->
    <section id="content">
    <div class="main">
             <div class="container_24 relative">
                <article class="grid_15 prefix_1 suffix_1 a1">
                    <div class="wrapper">
                        <img src="images/page1-img5.jpg" class="img-indent" alt="">
                        <div class="neg-indent">
                             <h3>Top Quality Renovations!<strong>We use only top quality materials.</strong></h3>
                            <p class="p1">
                                <strong>
                                    For our renovations to be the best requires modern and top quality products.
                                </strong>
                            </p>
                            <p class="p1">
                            We're proud of our reputation and our warranty. That means that we are always using top notch building products. We also pay attention to the latest in building technology on order to provide our customer with the best user experience. For an estimate call Tim at <strong>403-888-9298</strong>, or go to the <a href="index-4.html">contact page</a> to receive a reply at your convenience. </p>
                        </div>
                    </div>
                    </article>
                <article class="grid_7 a2">
                     <div class="inner">
                        <h3 class="hp-1">Services</h3>
                        <div class="hr"></div>
                        <ul class="list-1">
                             <li><a href="index-3.html">Home Renovations</a></li>
                            <li><a href="index-3.html">Kitchens</a></li>
                            <li><a href="index-3.html">Bathrooms</a></li>
                            <li><a href="index-3.html">Living Spaces</a></li>
                            <li><a href="index-3.html">Basement Devlopment</a></li>
                            <li><a href="index-3.html">Offices</a></li>
                            <li><a href="index-3.html">Comercial</a></li>
                            <li><a href="#">Flood & Fire Restoration</a></li>
                        </ul>
                    </div>
                </article>
                <div class="clear"></div>
                <div class="padding-1">
                     <article class="a3">
                         <div class="inner">
                             <div class="wrapper">
                                <div class="fleft">
                                    <h3 class="hp-1">Featured Projects</h3>
                                </div>
                                <a href="images/Gallery/index.html" class="link-1">View All</a>
                            </div>
                            <div class="hr"></div>
                            <div class="padding-2">
                                 <div class="col-1">
                                     <a href="images/page1-kitch1.jpg" data-gal="prettyPhoto[pp_gal]" class="lightbox-image img-indent-bot"><img src="images/page1-img6.jpg" alt=""></a>
                                    <strong class="project-name">Kitchens</strong>
                                    <a href="#" class="link-2"></a>
                              </div>
                                <div class="col-2">
                                     <a href="images/page1-wetbar.jpg" data-gal="prettyPhoto[pp_gal]" class="lightbox-image img-indent-bot"><img src="images/page1-img7.jpg" alt=""></a>
                                    <strong class="project-name">Family Rooms</strong>
                                    <a href="#" class="link-2"></a>
                                </div>
                                <div class="col-3">
                                     <a href="images/page1-bathroom.jpg" data-gal="prettyPhoto[pp_gal]" class="lightbox-image img-indent-bot"><img src="images/page1-img8.jpg" alt=""></a>
                                    <strong class="project-name">Bathrooms</strong>
                                    <a href="#" class="link-2"></a>
                                </div>
                                 <div class="clear"></div>
                            </div>
                        </div>
                     </article>
                </div>
            </div>
        </div>
    </section>
    <!--=====ASIDE=====-->
    <aside>
    <div class="main">
             <div class="container_24">
                 <div class="wrapper padding-1 vr-border-1">
                     <div class="vr-border-2">
                        <article class="prefix_1 grid_9 suffix_1">
                            <h3>Latest News</h3>
                             <div id="faded">
                                <ul class="slider">
                                     <li>
                                        <p>
                                            <strong>01-05-2012</strong> We are pleased to announce the launch of our new website May1, 2012.
                                        </p>
                                        <div class="buttons">
                                            <a href="#" class="button-2"></a>
                                        </div>
                                    </li>
                                    <li>
                                        <p>
                                            <strong></strong>
                                        </p>
                                        <div class="buttons">
                                            <a href="#" class="button-2"></a>
                                        </div>
                                    </li>
                                    <li>
                                        <p>
                                            <strong></strong>
                                        </p>
                                        <a href="#" class="button-2"></a>
                                    </li>
                                </ul>
                                <div class="navigation">
                                    <ul class="pagination">
                                    </ul>
                                </div>
                             </div>
                        </article>
                        <article class="prefix_1 grid_4 suffix_2">
                             <h3>Company</h3>
                            <ul class="list-2">
                                 <li><a href="index-1.html">About us</a></li>
                                <li><a href="index-1.html">Work team</a></li>
                                <li><a href="index-2.html">What we do</a></li>
                                <li><a href="#">Clients</a></li>
                                <li class="last"><a href="index-5.html">Testimonials</a></li>
                            </ul>
                        </article>
                        <article class="prefix_1 grid_5">
                             <h3> </h3>
                            <dl class="adress">
                                 <dt> </dt>
                                <dd> </dd>
                                <dd> </dd>
                                <dd> </dd>
                            </dl>
                        </article>
                    </div>
                </div>
            </div>
        </div>
    </aside>
    <!--=====FOOTER=====-->
    <footer>
        <div class="inner">
            <ul class="bottom-menu">
                <li><a href="index.html" class="active">Home</a></li>
                <li><a href="index-1.html">Company</a></li>
                <li><a href="index-2.html">Services</a></li>   
                <li><a href="index-3.html">Gallery</a></li>
                <li class="last"><a href="index-4.html">Contacts</a></li>
            </ul>
        </div>
    </footer>
    </body>
    </html>

  • Dreamweaver CS6 freezes up constantly

    Dreamweaver CS6 keeps freezing up on me whenever I try to use it. The freeze lasts like 15-20 seconds then when I start to use it again it freezes up almost imediately. I've downloaded updates for it and tried clearing my cache. Nothing has helped at all. I've had this problem since I loaded dreamweaver on my laptop. Is there any fixes to stop it from freezing? It doesn't crash just freezes/locks up.

    Try steps mentioned in the troubleshooting document below. Choose The preference file depending on your version of Dreamweaver.
    http://helpx.adobe.com/dreamweaver/kb/hang-opening-document-dreamweaver-cs5.html
    Also, you can try updating your video card drivers.
    HTH

  • Why is dreamweaver cs6 saving my files as a firefox html document?

    Hi, I am using dreamweaver cs6 on win xp sp 3 and it keeps saving my files as a firefox html document and connot figure out how to stop this as i need to get on to my ftp to upload files. It also loaded my site files from dreamweaver cs 5 as a firefox html document. I am running firefox ver 13.0.1. Any Help would be usefeful. I tried google searching and found nothing. And the adobe general help didn't wok either.

    Firefox is probably your default web browser which launches anytime you click on an .htm or .html file.
    If you want HTML files to launch inside Dreamweaver instead of Firefox, open your file manager (Windows Explorer), and change file associations for .html & .htm files.  When you do this, the icon next to those files will change from FF to DW.
    Nancy O.

  • Why Wont Dreamweaver CS6 log in to Business Catalyst?

    Hi there,
    I have been trying over and over again to get Dreamweaver CS6 to log in to Business Catalyst but it keeps going in a loop and asking me again for my login details without ever allowing me to import or create a site. I have tried installing the old extension that worked perfectly and it still does not work.
    I have now tried it on my MAC and that works, but I need it to work on my PC specifically.

    We ran into this issue running Dreamweaver CS6 v12.0 Build 5861. The patch detailed in the following blog post seems to have resolved it for us - http://blogs.adobe.com/dreamweaver/2013/01/resolution-12-0-3-users-running-into-browserlab -business-catalyst-issues.html

  • Dreamweaver CS6 freezes up all the time.

    My MacBook is in the shop being repaired so for the time being I'm using my PC. I've reinstalled Windows and loaded Dreamweaver on it. I have a Creative Cloud subscription and running Dreamweaver version 12.2 Build 6006. However, Dreamweaver constantly freezes. I could be opening a file, or just typing and it'll lock up. It's definitely not my PC, I'm running Windows 7 Ultimate x64 SP1 (all updated), Intel i5 @ 3.20GHz, 8GBs of RAM. The only thing I could think of would be my hard drive? Although other programs aren't driving the struggle bus like Dreamweaver has been.

    May or may not be related to your issue, but I've had to use this fix for years: http://helpx.adobe.com/dreamweaver/kb/hang-opening-document-dreamweaver-cs5.html
    Recommended here: http://forums.adobe.com/thread/656747
    You might also try Edit> Preferences> General> Enable Related Files> Discover Dynamically-Related Files> Manually.

  • Why is Fireworks CS6 freezing at launch?

    I have Adobe Master Suite CS6 for Windows 7 on a 64x Dell PC. In Fireworks, I made a selection at a check box directing the software to find textures on my server (I dont remember the window name).  Since then, I have not been able to open up Fireworks.  When I go to select the icon to open my fireworks software, it gets locked on the splash screen at the "Initializing Textures" stage.  It stays on for about 10 minutes then disappears never opening the software.
    HELP!!!! I have already tried uninstalling & reinstalling (Fireworks Only) yet to no avail, I still dont have the use of Fireworks anymore. Any clues how I can resolve the problem?

    Trash the prefs in your user directory (C:Users\You\AppData\Roaming\Adobe and so on).
    Mylenium

  • Can´t open Dreamweaver CS6 on Mountain Lion

    Hello together,
    last month i bought the creative suit 6 design & web premium for students. after the installation i can´t open dreamweaver. it isn´t possible to open power-pc apps.
    with google i can´t find a solution... i hope very much that you can help and tell me what i can do to start scripting with dreamweaver on my iMac with os x 10.8.
    now i tried to install the testversion of dreamweaver on another older imac (2,9 GHz Inter Core 2 Duo) with the same os x and it runs. is it possible, that it don´t run on last version of iMac (2,9 GHz Intel Core i5)?
    thanks a lot,
    fabian         

    It seems that some versions of Mac OS X don't have Tahoma and Verdana fonts enabled, which prevents Dreamweaver CC from launching correctly. See http://helpx.adobe.com/dreamweaver/kb/troubleshoot-crash-dreamweaver-cc.html for details of what you need to do.

  • Dreamweaver cs6 freeze in Live mode

    Hi all!
    I just bought a new DWCS6 to build my new html5 site. When is in Live mode it freezes forever...I did fresh instal my win 7 with no luck. Any ideas how to fix it? Thanks in advance , Nick.

    there is some external scripting not script embeded on the site.
    What does that mean?  Are you talking about JavaScript?  Or are you talking about Java, or PHP/CF/.NET?
    Unless you have some scripting on your pages, you do not need anything as a testing server, so remve that testing server definition from your site's definition.

  • Hello, I update my mac pro to 10.10. Why the photoshop cs6 change to slowly now. When I change the tools like brush to command+Z, It's will be freeze a while. why? and how can I improve?

    hello, I update my mac pro to 10.10. Why the photoshop cs6 change to slowly now. When I change the tools like brush to command+Z, It's will be freeze a while. why? and how can I improve?

    what a long post....Apple, btw, does not read this stuff, so ranting, raving, and complaining here might make you feel good, but it does no good at all. That being said, I, too have a Mac Pro Quad Core Xeon with 6 gigs of ram and an nVidia 8800 GT graphics card (not as good as yours, alas) and I've had no problems at all with it. Yes, it doesn't have Thunderbolt, but maybe we Mac pro owners will get lucky and someone will come out with an adapter (probably not). No, you probably don't have to throw away your Mac Pro, but if you do, I'll take it, for a small "recycling" fee >:-) That was a joke.  Yes, the Mac Pro's future isn't quite clear, YET. Hopefully that will improve very soon. As for not being able to upgrade to Mountain Lion. Don't worry about that too much, Nobody is forcing you to do that.  Your Mac Pro won't quit working if it isn't installed. From what  I've heard, you should give the new OS a chance, and wait to get it, in case there might be some bugs, or stuff not working with the new OS, which has been known to happen. Yes, we Mac Pro owners don't like being treated like mushrooms-kept in the dark, and being fed......... but Apple is Apple and it will do what it does, and there is nothing you or me can really do to change that. All I can say is....trust, have faith, be patient, go for a walk, do something else to take your mind off of this problem. IF apple decides to drop the Mac Pro for good, and that's a big "IF", I think they will anger a whole bunch of people
    which isn't good. However, that hasn't happened...YET. Let us hope that it doesn't
    John B

  • Dreamweaver CS6 not responding (freezing)

    I am running Windows Vista and performed the most recent update of Dreamweaver CS6 (I am using Creative Cloud) and my Dreamweaver program continues to not respond if I need to go out to another program and then back into Dreamweaver. It was not responding before the update, as well. I am using a Typekit script on all of my pages and this freezing/not responding thing just started happening, though it had worked just a few weeks ago. I have done the following:
    disabled Javascript
    disabled all extensions
    turned off "Display External Files"
    Currently defragmenting my computer
    Performed a disk cleanup
    My site is not linked to any outside site. This issue is making my development double in the amount of time and I really need this fixed. Any other suggestions would be great.
    Thanks, Amber

    and was told that my operating system, Windows Vista cannot run the new Creative Cloud CS6 products
    That's complete rubbish.  I'm using Vista with Creative Cloud and have no problems.  Vista is essentially Win7. 
    There are a couple of 64 bit products I can't use on my 32 bit operating system but the rest work fine.
    I suggest you delete your cache and/or personal configuration folder.
    Deleting Corrupted Cache in DW
    http://forums.adobe.com/thread/494811
    Nancy O.

  • Adobe Dreamweaver CS6 constantly freezes temporarily while editing code

    When using Adobe Dreamweaver CS6 or older versions, while writing code in PHP, when I end some syntax like closing parenthesis, adobe get frozen for 20 to 30 seconds, the more lines I have the slower it gets. I guess it’s because its detecting mistakes in the code, after that period of time it tells me if I have gotten some errors in that line.
    Anyways, I have found a trick to avoid it but it’s really annoying in programming time, instead of using SHIFT+0 to close parenthesis, I copy “)” symbol on the clipboard and paste it to close the whatever function that needs to be close, and in this way, adobe Dreamweaver CS6 wont freeze for 30 seconds, (loosing of course the cool feature of grammar correction).
    I know how this sounds but when you have 40.000 lines and you have to correct several mistakes in different lines and after each correction you have to wait 30 seconds… it just pisses you off.
    I hope someone could help me to get rid of that waiting maintaining the correction feature or if that is too much to ask for, at least to make it behave like any other text editor that just writes what you time without waits needed.
    Thanks a lot for any help about this.

    A snipppet would be way faster

  • Dreamweaver CS6 keeps freezing when clicking on "live" or "design"

    My dreamweaver cs6 keeps freezing.
    I posted a screenshot:
    https://www.dropbox.com/s/vf3i6njgpwy53x3/site.png
    I have updated all adobe software so it's the latest build.. My computer is working fine, the only thing that crashes is DW.
    Help?

    This can be caused by a number of things. One of the easiest to test is  external javascript files.
    If you have any javascripts that are pointing to someone else's server, you can add a comment around them and see if that fixes the issue. It's always best to have a local copy of those files within your site vs relying on someons else's server to be up and running to make your site function.
    You can add comments like this...
    <!-- <script href="http://www.othersite.com/js.js" type="text/javascript></script> -->
    If you don't have links to .js files similar to what I've explained, you can validate your code here: http://validator.w3.org/ and repair any errors
    Invalid code can definitely cause some strange issues in DW.
    If you don't have external links as explained and your code validates (or you fix all errors and still have the issue), there may be something else in the source causing problems. If you could post a link to an offending page online, we would be able to take a better look.

  • Dreamweaver cs6 Gets freezes

    Hi , Dreamweaver cs6 Gets freezes when i type or save anything . i reinstall the dreamweaver cs6 , cleared the dreamweaver cache file ,dynamic file set to manually in preferences, create the string in registry also ,but no improvement.    i am using tortoise svn server from windows server 2012, system configuration is windows 8, i5 processor .any help will be appreciated .sorry for my bad english

    Hi devabalan,
    Can you install Java SE6, reopen DW, and let us know if it still crashes?
    Thanks,
    Preran

Maybe you are looking for

  • Error Message from ITS "host parameter is null" - Huh?

    I am having trouble submitting a podcast to the iTunes Store. I have a podcast that I can access directly through my blog: blog.mindthegap.us The RSS2 feed to my podcast is: http://blog.mindthegap.us/podcasts-only/rss2.aspx I have subscribed to my po

  • Error when Exe a info Pack

    Hello, Experts. We have applied support packs.  its completed and i am testing the system.  i am getting the error when i exe a info pack and the error message is this. Error message<b> The Control Parameters for communication with the bw server are

  • Upgrade from sql Server 9.0 to sql Server 12.0

    I am currently running SQLEXPRESS (SQL Server 9.0)  It appears that there is a limit to the size of the database which I have exceeded.  I want to restore a backup of my customers DB and am not allowed to do so.  Appears to be a size issue, the custo

  • Sync tab is missing from preferences dialog on my 2nd computer - where is it?

    Following instructions detailed here: http://support.mozilla.com/en-US/kb/How%20to%20sync%20Firefox%20settings%20between%20computers My second computer is a laptop. On it, the sync tab is not showing in the firefox preferences dialog.

  • Starting Jar-File from webserver - possible?

    Hello to all of you. I've got a little problem with an executable Jar-file. I need to start it using a URL on an intranet website. As long as this link points to a file on a local (or network) drive there is no problem. But I need to launch this appl