Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Dreamweaver CC 2017 is very unstable

Community Beginner ,
Mar 23, 2017 Mar 23, 2017

The latest copy of DW is very unstable. It constantly crashes. Also when I click on one of my linked file such as .css or .js that file does not show properly. Please fix this edition of Dreamweaver.

832
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 24, 2017 Mar 24, 2017

You child page contains the same link path as your Template which does not look correct to me.  

Assuming this is your site structure:

about.html

bio.html

index.html

-CSS

     skeleton.css

     base.css

     custom.css

-Stylesheets

     modulestylesheets.css

-Template

     main.dwt

The path in your child pages should look like this css/base.css without the leading dots and slash.

How are you creating child pages?  Did you go to File > New > Site Templates > Create?    And then Save and name your newly create

...
Translate
Community Expert ,
Mar 23, 2017 Mar 23, 2017

It runs well for me on Windows 7 and Windows 10.

Could you be a little more specific about what you mean by unstable, what you're seeing in dependent files, and your OS?

I bet the contributors here can help get you up and running with a little troubleshooting.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 23, 2017 Mar 23, 2017

OSX Sierra 10.12.3

Unstable: It crashes often.

What I see in dependent files (code view): grey/nothing. A message saying, "file not on local disk", but the file is on my local disk. When I click on the "get" link, I get a message saying "the file is not in a defined site".

2017-03-23_0736

Thanks. Hope someone can help.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 23, 2017 Mar 23, 2017

That error usually occurs when you haven't defined a site in the program, or are attempting to edit files that are linked externally. Even if you're just using DW for html emails, it really wants a Site Definition set up in order to function correctly.

Have you set one up yet?

Define a site

...and is it selected in your Files window?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 23, 2017 Mar 23, 2017

Thanks for your support, Jon.

I had the site defined, but I went back and re-defined it.

It seems to be working now. I will be using it all day. If I run into the problem again, I would like to repost.

Thanks again.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017

Still having the same issue.

When I opened up DW this morning. I got the same result as before.

I think my site settings are correct.

Here is a screen shot of my DW in split view of my custom.css.

2017-03-24_0630

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 24, 2017 Mar 24, 2017

What does the code for the link in your <head> section look like for the custom.css file?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017

@charset "UTF-8";

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 24, 2017 Mar 24, 2017

I'm sorry, maybe I wasn't clear enough, that is the character set declaration of your custom.css file.

What I want to see is how that custom.css file is actually linked in the <head> of your bio.htm file.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017

bio.htm is linked to my template.

Here is the head of the template:

<head>

  <!-- Basic Page Needs

  ================================================== -->

  <meta charset="utf-8">

  <!-- TemplateBeginEditable name="doctitle" -->

    <title></title>

    <!-- TemplateEndEditable -->

  <!-- TemplateBeginEditable name="head" -->

    <!-- TemplateEndEditable -->

  <meta name="description" content="">

  <meta name="author" content="">

  <!-- Mobile Specific Metas

  ================================================== -->

  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

  <!-- CSS

  ================================================== -->

  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,400,700,600">

  <link rel="stylesheet" href="../css/base.css">

  <link rel="stylesheet" href="../css/skeleton.css">

  <link rel="stylesheet" href="../css/layout.css">

  <link rel="stylesheet" href="../css/custom.css">

  <link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">

  <link href="../bootstrap_css/bootstrap.css" rel="stylesheet" type="text/css">

  <!-- JS

  ================================================== -->

  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

  <script src="/js/slider.js"></script>

  <script type="text/javascript" src="../js/jquery-3.1.1.min.js"></script>

  <!--[if lt IE 9]>

  <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>

  <![endif]-->

  <script>

  $(document).ready(function(){

  // Code for Mobile Menu, shows up on small screen resolutions

  $('.expand-menu').click(function(e){

  e.preventDefault();

  $(this).toggleClass('open');

  if($('nav.small.top ul').is(':hidden')){

  $('nav.small.top ul').slideDown();

  }else{

  $('nav.small.top ul').slideUp();

  }

  });

  // --

  // Script to init slider. You can edit it from "/js/slider.js"

  $('.slider').startSlider();

  // --

  });

  </script>

  </head>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017

Thank you so much for your help.

DW is still crashing frequently.

I have to run, but will be back later for your reply.

Thank you again.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 24, 2017 Mar 24, 2017

Though the Template info could be helpful, I really would like to see the links that DW is writing to the bio.htm file's <head> section.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017

Not certain I understand your request.

All my css links are in the template head (interior.dwt):

<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,40 0,700,600">

  <link rel="stylesheet" href="../css/base.css">

  <link rel="stylesheet" href="../css/skeleton.css">

  <link rel="stylesheet" href="../css/layout.css">

  <link rel="stylesheet" href="../css/custom.css">

  <link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">

  <link href="../bootstrap_css/bootstrap.css" rel="stylesheet" type="text/css">

I don't have any links in the bio.html except for the link to the template (interior.dwt). <!-- InstanceBegin template="/Templates/Interior.dwt" codeOutsideHTMLIsLocked="false" -->

Here is my bio.html head:

<!DOCTYPE html>

<html lang="en"><!-- InstanceBegin template="/Templates/Interior.dwt" codeOutsideHTMLIsLocked="false" -->

  <head>

  <!-- Basic Page Needs

  ================================================== -->

  <meta charset="utf-8">

  <!-- InstanceBeginEditable name="doctitle" --><title>About Catherine Pearson</title><!-- InstanceEndEditable --><!-- InstanceBeginEditable name="head" -->

       

    <!-- InstanceEndEditable -->

   

  <meta name="description" content="">

  <meta name="author" content="">

  <!-- Mobile Specific Metas

  ================================================== -->

  <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">

  <!-- CSS

  ================================================== -->

  <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Oswald|Open+Sans:400italic,600italic,700italic,400,700,600">

  <link rel="stylesheet" href="../css/base.css">

  <link rel="stylesheet" href="../css/skeleton.css">

  <link rel="stylesheet" href="../css/layout.css">

  <link rel="stylesheet" href="../css/custom.css">

  <link href="../stylesheets/modulestylesheets.css" rel="stylesheet" type="text/css">

  <!-- JS

  ================================================== -->

  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

  <script src="/js/slider.js"></script>

  <script type="text/javascript" src="../js/jquery-3.1.1.min.js"></script>

  <!--[if lt IE 9]>

  <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>

  <![endif]-->

  <script>

  $(document).ready(function(){

  // Code for Mobile Menu, shows up on small screen resolutions

  $('.expand-menu').click(function(e){

  e.preventDefault();

  $(this).toggleClass('open');

  if($('nav.small.top ul').is(':hidden')){

  $('nav.small.top ul').slideDown();

  }else{

  $('nav.small.top ul').slideUp();

  }

  });

  // --

  // Script to init slider. You can edit it from "/js/slider.js"

  $('.slider').startSlider();

  // --

  });

  </script>

        <script>

       

        }

    </script>

  </head>

Hope this makes sense.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 24, 2017 Mar 24, 2017

You child page contains the same link path as your Template which does not look correct to me.  

Assuming this is your site structure:

about.html

bio.html

index.html

-CSS

     skeleton.css

     base.css

     custom.css

-Stylesheets

     modulestylesheets.css

-Template

     main.dwt

The path in your child pages should look like this css/base.css without the leading dots and slash.

How are you creating child pages?  Did you go to File > New > Site Templates > Create?    And then Save and name your newly created child page?

Nancy

Nancy O'Shea— Product User, Community Expert & Moderator
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 24, 2017 Mar 24, 2017
LATEST

You nailed it. WOW. I can now see my linked files.

I am now wondering whether this will also fix my constantly crashing DW.  ??

Thank you so much.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines