Help with Dreamweaver CS4

I am trying to update my website using Dreamweaver CS4 and it keeps telling me there is an FTP error and my login or password are incorrect - how can this be if I haven't changed anything?  Admittedly I haven't updated the site for about 4 months, but I've never had this problem before - PLEASE HELP!

PC or Mac?  And what is the exact error message?  When do you get it?

Similar Messages

  • Help with Dreamweaver CS4 feedback form

    I am trying to get my first feedback form working properly.
    There are two problems:
    1. I can't click in the boxes to enter info. The only way to access them is to tab through.
    2. When I submit, it brings up a second blank feedback page in Safari. In Firefox, it just loops back to the empty feedback page.
    Any help would be appreciated as I running out of hair to pull out.
    Here is the php code:
    <?php /*
    // ------------- CONFIGURABLE SECTION ------------------------
    $mailto = '[email protected]' ;
    $subject = "Feedback Form" ;
    $formurl = "http://www.printit7.com/feedback.html" ;
    $thankyouurl = "http://www.printit7.com/thankyou.html" ;
    $errorurl = "http://www.printit7.com/error.html" ;
    $email_is_required = 1;
    $name_is_required = 1;
    $comments_is_required = 0;
    $uself = 0;
    $forcelf = 0;
    $use_envsender = 0;
    $use_sendmailfrom = 0;
    $smtp_server_win = '' ;
    $use_webmaster_email_for_from = 0;
    $use_utf8 = 1;
    $my_recaptcha_private_key = '' ;
    // -------------------- END OF CONFIGURABLE SECTION ---------------
    define( 'MAX_LINE_LENGTH', 998 );
    $headersep = $uself ? "\n" : "\r\n" ;
    $content_nl = $forcelf ? "\n" : (defined('PHP_EOL') ? PHP_EOL : "\n") ;
    $content_type = $use_utf8 ? 'Content-Type: text/plain; charset="utf-8"' : 'Content-Type: text/plain; charset="iso-8859-1"' ;
    if ($use_sendmailfrom) {
              ini_set( 'sendmail_from', $mailto );
    if (strlen($smtp_server_win)) {
              ini_set( 'SMTP', $smtp_server_win );
    $envsender = "-f$mailto" ;
    $fullname = isset($_POST['fullname']) ? $_POST['fullname'] : $_POST['name'] ;
    $email = $_POST['email'] ;
    $comments = $_POST['comments'] ;
    $http_referrer = getenv( "HTTP_REFERER" );
    if (!isset($_POST['email'])) {
              header( "Location: $formurl" );
              exit ;
    if (($email_is_required && (empty($email) || !preg_match('/@/', $email))) || ($name_is_required && empty($fullname)) || ($comments_is_required && empty($comments))) {
              header( "Location: $errorurl" );
              exit ;
    if ( preg_match( "/[\r\n]/", $fullname ) || preg_match( "/[\r\n]/", $email ) ) {
              header( "Location: $errorurl" );
              exit ;
    if (strlen( $my_recaptcha_private_key )) {
              $resp = recaptcha_check_answer ( $my_recaptcha_private_key, $_SERVER['REMOTE_ADDR'], $_POST['recaptcha_challenge_field'], $_POST['recaptcha_response_field'] );
              if (!$resp->is_valid) {
                        header( "Location: $errorurl" );
                        exit ;
    if (empty($email)) {
              $email = $mailto ;
    $fromemail = $use_webmaster_email_for_from ? $mailto : $email ;
    if (function_exists( 'get_magic_quotes_gpc' ) && get_magic_quotes_gpc()) {
              $comments = stripslashes( $comments );
    $messageproper =
              "This message was sent from:" . $content_nl .
              "$http_referrer" . $content_nl .
              "------------------------------------------------------------" . $content_nl .
              "Name of sender: $fullname" . $content_nl .
              "Email of sender: $email" . $content_nl .
              "------------------------- COMMENTS -------------------------" . $content_nl . $content_nl .
              wordwrap( $comments, MAX_LINE_LENGTH, $content_nl, true ) . $content_nl . $content_nl .
              "------------------------------------------------------------" . $content_nl ;
    $headers =
              "From: \"$fullname\" <$fromemail>" . $headersep . "Reply-To: \"$fullname\" <$email>" . $headersep . "X-Mailer: chfeedback.php 2.16.8" .
              $headersep . 'MIME-Version: 1.0' . $headersep . $content_type ;
    if ($use_envsender) {
              mail($mailto, $subject, $messageproper, $headers, $envsender );
    else {
              mail($mailto, $subject, $messageproper, $headers );
    header( "Location: $thankyouurl" );
    exit ;
    ?>
    Here is the form page code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Print It! Quote Form</title>
    <link href="site_styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    <style type="text/css">
    <!--
    p {
              font-size: 135%;
    -->
    </style>
    </head>
    <body onload="MM_preloadImages('images/buttons/home_down.jpg','images/buttons/home_over.jpg','i mages/buttons/about_down.jpg','images/buttons/about_over.jpg','images/buttons/news_down.jp g','images/buttons/news_over.jpg','images/buttons/products_down.jpg','images/buttons/produ cts_over.jpg','images/buttons/contact_down.jpg','images/buttons/contact_over.jpg')">
    <div id="header">
      <div id="logo">
        <div align="center"><img src="images/header.jpg" alt="Welcome to Print It!" width="1024" height="231" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="542,125,976,205" href="mailto:[email protected]" alt="Email us!" />
          </map>
        </div>
      </div>
    </div>
    <div id="navigation">
      <div align="center">
        <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr align="center">
            <td><a href="index.html" target="_top" onclick="MM_nbGroup('down','group1','home','images/buttons/home_down.jpg',1)" onmouseover="MM_nbGroup('over','home','images/buttons/home_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/home_up.jpg" alt="Home" name="home" width="144" height="31" border="0" id="home" onload="" /></a></td>
            <td><a href="about.html" target="_top" onclick="MM_nbGroup('down','group1','about','images/buttons/about_down.jpg',1)" onmouseover="MM_nbGroup('over','about','images/buttons/about_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/about_up.jpg" alt="About Print It!" name="about" width="144" height="31" border="0" id="about" onload="" /></a></td>
            <td><a href="news.html" target="_top" onclick="MM_nbGroup('down','group1','news','images/buttons/news_down.jpg',1)" onmouseover="MM_nbGroup('over','news','images/buttons/news_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/news_up.jpg" alt="News" name="news" width="144" height="31" border="0" id="news" onload="" /></a></td>
            <td><a href="products.html" target="_top" onclick="MM_nbGroup('down','group1','products','images/buttons/products_down.jpg',1)" onmouseover="MM_nbGroup('over','products','images/buttons/products_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/products_up.jpg" alt="Products / Services" name="products" width="144" height="31" border="0" id="products" onload="" /></a></td>
            <td><a href="feedback.html" target="_top" onclick="MM_nbGroup('down','group1','contact','images/buttons/contact_down.jpg',1)" onmouseover="MM_nbGroup('over','contact','images/buttons/contact_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/contact_up.jpg" alt="Contact Print It!" name="contact" width="144" height="31" border="0" id="contact" onload="" /></a></td>
          </tr>
        </table>
      </div>
    </div>
    <div id="body-text">
      <h1>Contact us<em></em></h1>
    <p align="center">Call us at the phone number above, email us by clicking on our <br />
      email address above,
      or use this  form to request a quote. </p>
    </div>
    <div id="body-text">
      <form action="feedback.php" method="post" enctype="text/plain" name="form1" target="_blank" class="form_text" id="form1">
        <label>
          <div align="left" class="form_text">
            <p>Name
            <br />
            <input name="name" type="text" id="name" maxlength="50" />
            </p>
            <p>      Company Name <br />
            <input name="company" type="text" id="company" maxlength="50" />
            </p>
            <p>
              <label>Phone Number
                <br />
                <input name="phone" type="text" id="phone" maxlength="50" />
              </label>
            </p>
            <p>
            <label>Email Address
              <br />
              <input name="email" type="text" id="email" maxlength="50" />
            </label>
            </p>
            <p>
            <label>Preferred Response<br />
              <select name="preferred_contact" id="preferred_contact">
                <option>By Email</option>
                <option>By Phone</option>
              </select>
              <br />
              <br />
            </label>
            <strong>PROJECT INFORMATION</strong></p>
            <p>
      <label>Project Name
        <br />
        <input name="project_name" type="text" id="project_name" maxlength="50" />
      </label>
            </p>
            <p>
              <label>Quantities to Quote
                <br />
                <input type="text" name="quantites" id="quantites" />
              </label>
            </p>
            <p>
              <label>Finished Size
                <br />
                <input type="text" name="size" id="size" />
              </label>
            </p>
            <p>
              <label>
                <input type="radio" name="sides" value="one side" id="sides_0" />
              1 Side<br />
              </label>
              <br />
              <label>
                <input type="radio" name="sides" value="two sides" id="sides_1" />
              2 Sides</label>
            </p>
            <p>
              <label>Colors - Side 1
                <br />
                <select name="colors_side1" id="colors_side1">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>         
            </p>
            <p>
              <label>Colors - Side 2<br />
                <select name="colors_side2" id="colors_side2">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>
            </p>
            <p class="form_text">
              <label>Paper Weight
                <br />
                <input name="paper_weight" type="text" id="paper_weight" maxlength="50" />
                <br />
                <br />
                Paper Color
                <br />
                <input name="paper_color" type="text" id="paper_color" maxlength="50" />
                <br />
    <br />
                Paper Type (gloss, plain, carbonless, etc.)
                <br />
                <input name="paper_type" type="text" id="paper_type" maxlength="50" />
                <br />
    <br />
                Bindery Information (folding, perfing, etc.)
                <br />
                <textarea name="bindery" cols="100" rows="5" class="form_text" id="bindery"></textarea>
                <br />
                <br />
                Additional Information <br />
                <textarea name="additional_info" id="additional_info" cols="100" rows="10"></textarea>
                <br />
                <br />
                <input type="submit" name="Submit" id="Submit" value="Send Feedback" />
                <br />
                <br />
              </label>
              <br />
            </p>
          </div>
        </label>
      </form>
    </div>
    </body>
    </html>

    Here is the current code from the feedback page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Print It! Quote Form</title>
    <link href="site_styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    <style type="text/css">
    <!--
    p {
              font-size: 135%;
    -->
    </style>
    </head>
    <body onload="MM_preloadImages('images/buttons/home_down.jpg','images/buttons/home_over.jpg','i mages/buttons/about_down.jpg','images/buttons/about_over.jpg','images/buttons/news_down.jp g','images/buttons/news_over.jpg','images/buttons/products_down.jpg','images/buttons/produ cts_over.jpg','images/buttons/contact_down.jpg','images/buttons/contact_over.jpg')">
    <div id="header">
      <div id="logo">
        <div align="center"><img src="images/header.jpg" alt="Welcome to Print It!" width="1024" height="231" border="0" usemap="#Map" />
          <map name="Map" id="Map">
            <area shape="rect" coords="542,125,976,205" href="mailto:[email protected]" alt="Email us!" />
          </map>
        </div>
      </div>
    </div>
    <div id="navigation">
      <div align="center">
        <table width="1024" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr align="center">
            <td><a href="index.html" target="_top" onclick="MM_nbGroup('down','group1','home','images/buttons/home_down.jpg',1)" onmouseover="MM_nbGroup('over','home','images/buttons/home_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/home_up.jpg" alt="Home" name="home" width="144" height="31" border="0" id="home" onload="" /></a></td>
            <td><a href="about.html" target="_top" onclick="MM_nbGroup('down','group1','about','images/buttons/about_down.jpg',1)" onmouseover="MM_nbGroup('over','about','images/buttons/about_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/about_up.jpg" alt="About Print It!" name="about" width="144" height="31" border="0" id="about" onload="" /></a></td>
            <td><a href="news.html" target="_top" onclick="MM_nbGroup('down','group1','news','images/buttons/news_down.jpg',1)" onmouseover="MM_nbGroup('over','news','images/buttons/news_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/news_up.jpg" alt="News" name="news" width="144" height="31" border="0" id="news" onload="" /></a></td>
            <td><a href="products.html" target="_top" onclick="MM_nbGroup('down','group1','products','images/buttons/products_down.jpg',1)" onmouseover="MM_nbGroup('over','products','images/buttons/products_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/products_up.jpg" alt="Products / Services" name="products" width="144" height="31" border="0" id="products" onload="" /></a></td>
            <td><a href="feedback.html" target="_top" onclick="MM_nbGroup('down','group1','contact','images/buttons/contact_down.jpg',1)" onmouseover="MM_nbGroup('over','contact','images/buttons/contact_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="images/buttons/contact_up.jpg" alt="Contact Print It!" name="contact" width="144" height="31" border="0" id="contact" onload="" /></a></td>
          </tr>
        </table>
      </div>
    </div>
    <div id="body-text">
      <h1>Contact us<em></em></h1>
    <p align="center">Call us at the phone number above, email us by clicking on our <br />
      email address above,
      or use this  form to request a quote. </p>
    </div>
    <div id="body-text">
      <form action="feedback.php" method="post" enctype="text/plain" name="form1" target="_blank" class="form_text" id="form1">
          <div align="left" class="form_text">
            <p>
            <label>Name <br />
            <input name="name" type="text" id="name" maxlength="50" />
            </label>
            </p>
            <p class="form_text">
              <label>Company Name <br />
            <input name="company" type="text" id="company" maxlength="50" />
            </label>
            </p>
            <p class="form_text">
              <label>Phone Number
                <br />
                <input name="phone" type="text" id="phone" maxlength="50" />
              </label>
            </p>
            <p class="form_text">
              <label>Email Address
              <br />
              <input name="email" type="text" id="email" maxlength="50" />
            </label>
            </p>
        <p class="form_text">
              <label>Preferred Response<br />
              <select name="preferred_contact" id="preferred_contact">
                <option>By Email</option>
                <option>By Phone</option>
              </select>
              <br />
              <br />
            </label>
            <strong>PROJECT INFORMATION</strong></p>
            <p class="form_text">
              <label>Project Name
        <br />
        <input name="project_name" type="text" id="project_name" maxlength="50" />
      </label>
            </p>
            <p class="form_text">
              <label>
             Quantities to Quote
                <br />
                <input type="text" name="quantites" id="quantites" />
              </label>
            </p>
            <p class="form_text">
              <label>Finished Size
                <br />
                <input type="text" name="size" id="size" />
              </label>
            </p>
            <p>
              <label>
                <input type="radio" name="sides" value="one side" id="sides_0" />
              1 Side<br />
              </label>
              <br />
              <label>
                <input type="radio" name="sides" value="two sides" id="sides_1" />
              2 Sides</label>
            </p>
            <p class="form_text">
              <label>Colors - Side 1
                <br />
                <select name="colors_side1" id="colors_side1">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>         
            </p>
            <p class="form_text">
              <label>Colors - Side 2<br />
                <select name="colors_side2" id="colors_side2">
                  <option value="Black">Black</option>
                  <option value="Spot Color">Spot Color</option>
                  <option value="Black + Spot Color">Black + Spot Color</option>
                  <option value="Full Color">Full Color</option>
                  <option value="Other">Other - Describe Below</option>
                </select>
              </label>
            </p>
            <p class="form_text">
              <label>Paper Weight
                <br />
                <input name="paper_weight" type="text" id="paper_weight" maxlength="50" />
                </label><br />
               <p class="form_text">
              <label>Paper Color
                <br />
                <input name="paper_color" type="text" id="paper_color" maxlength="50" />
                </label>
                </p>
    <p class="form_text">
              <label>Paper Type (gloss, plain, carbonless, etc.)
                <br />
                <input name="paper_type" type="text" id="paper_type" maxlength="50" />
                </label>
                </p>
                <p class="form_text">
              <label>Bindery Information (folding, perfing, etc.)
                <br />
                <textarea name="bindery" cols="100" rows="5" class="form_text" id="bindery"></textarea>
                </label>
                </p>
                <p class="form_text">
              <label>Additional Information <br />
                <textarea name="additional_info" id="additional_info" cols="100" rows="10"></textarea>
                </label>
                </p>
                <br />
                <input type="submit" name="Submit" id="Submit" value="Send Feedback" />
                <br />
                <br />
              </label>
              <br />
            </p>
          </div>
      </form>
    </div>
    </body>
    </html>

  • What's up with DreamWeaver CS4?

    D/W tells me it can't find the root folder so I go to "mangae sites", then edit, and show it where the site is located on my desktop, and I get this error message.
    Then when I try to upload a file to my website I get this error message.
    And yes I'd buy CS6 if I could afford it, who wouldn't. But $50 bucks a month is not something I can afford right now.
    And it happens over and over again. I won't allow me to fix it. Even after many attempts. Has anybody an answer to this problem. Oh, and I'm using CS4 with Mac OS X version 10.9. I've been using this for years and have never had a problem till I bought a new MacBook Pro.
    Thanks for your help, before the fact.

    Thanks but I¹ve done that and it just keeps asking me to click on ³manage
    site² and do it over and over again. I¹m wondering if perhaps when I bought
    this new computer, and the had me change my user name on the computer by
    putting a ³1² after it, if somehow that screwed the whole thing up and it
    can no longer recognize any of it as a result?
    11/21/13, 10:48 PM   Ben Pleysier
    Re: What's up with DreamWeaver CS4?
    created by Ben Pleysier <http://forums.adobe.com/people/Ben+Pleysier>  in
    Dreamweaver support forum - View the full discussion
    <http://forums.adobe.com/message/5864704#5864704>
    I think that the error message is quite clear, there is a problem with the
    mentioned page. Try renaming the document and see what happens.
    Please note that the Adobe Forums do not accept email attachments. If you want
    to embed a screen image in your message please visit the thread in the forum
    to embed the image at http://forums.adobe.com/message/5864704#5864704 Replies
    to this message go to everyone subscribed to this thread, not directly to the
    person who posted the message. To post a reply, either reply to this email or
    visit the message page: http://forums.adobe.com/message/5864704#5864704 To
    unsubscribe from this thread, please visit the message page at
    http://forums.adobe.com/message/5864704#5864704. In the Actions box on the
    right, click the Stop Email Notifications link.  Start a new discussion in
    Dreamweaver support forum at Adobe Community
    <http://forums.adobe.com/choose-container!input.jspa?contentType=1&containerTy
    pe=14&container=2240>  For more information about maintaining your forum email
    notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Shift+i issue with Dreamweaver CS4

    Hi,
    i have an issue with Dreamweaver CS4 when I press shift+i the behavior is similar as cmd+v (a paste action). I checked the keyboard shortcut, but no action set for shift+i .. i don't understand.
    Please may you help me!?
    thanks
    bye
    Max

    Another place you can ask is in the forums for dreamweaver:
    http://www.adobe.com/support/forums/

  • Synchronize problem with Dreamweaver CS4

    Hi all,
    I was wondering whether any of you can offer any advice or help with a problem I have with Dreamweaver CS4. 
    The problem is regarding the Synchronize feature within Dreamweaver, for example after I have made a change to a web page and want to upload this to the internet, the software detects what files have changed which is fine but against the file it has the word and symbol called "Resolve" and this is where I am stuck because I cannot click on the Resolve button to change it to "Put" because the icon is grey so therfore I am unable to upload any changes to any websites. 
    If anybody can help me then it would be very much appreciated. 
    Cheers 
    Daniel

    Hi Hans- G    
    Many Thanks for this. I will go and have a look. It is strange as I have never experienced this problem before.
    Cheers
    Daniel

  • Can you create HTML5 with Dreamweaver CS4?

    Hello.
    Can you create HTML5 with Dreamweaver CS4? Are there workarounds if not?
    I am using a PC on Windows 7.
    Thank you.

    Try copying and pasting this HTML5 code into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Document</title>
    <!--helps older IE browsers with HTML5 tags-->
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    </head>
    <body>
    <header>
    Header
    <h1>Site Name</h1></header>
    <nav>Navigation</nav>
    <section>
    <article>
    <h3>Article</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </article>
    <aside>
    <h3>Aside</h3>
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.  Mauris vitae libero lacus, vel hendrerit nisi!  Maecenas quis velit nisl, volutpat viverra felis. Vestibulum luctus mauris sed sem dapibus luctus.  Pellentesque aliquet aliquet ligula, et sagittis justo auctor varius. Quisque varius scelerisque nunc eget rhoncus.  Aenean tristique enim ut ante dignissim. </p>
    </aside>
    </section>
    <footer>Footer</footer>
    </body>
    </html>
    Nancy O.

  • Need help with reviewer CS4

    I am usung the Captivate reviewer to distribute draft modules.
    The problem I am havving is the .LOCK file - when someone goes to review the module, they have to specify the location of a temp file. (the .lock file). When they have finished that module, then they have to either specify a new location for the next module, ot manually delete the lock file.
    Is there a way to disable the comments logging feature, or have the lock file automatically deleted?
    Thanks
    Terry

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • Problems controlling divs with dreamweaver cs4

    Hi all, so I have been hard coding my website and have had great success with the layout and everything.  I am having trouble with dreamweaver cs4, does anyone know if cs4 is compatible with html5?  My silicone cupcake liners website looks great but a nice transition to dreamweaver would save a lot of work.

    DWCS4 won't be able to correctly read the html5 semantic tags like <nav><aside> or <header> while in Live View. The built in version of the quasi-webkit browser is just too old.
    Design View will work for the most part, but does get confused by certain things within HTML5 specific tags, so that will look even more broken than normal.
    It also will not automatically generate any HTML5 specific code, there are no HTML5 menu options and there is no update to make it do that.
    The program itself is no longer supported by Adobe, being the 5th version removed from "current"...
    DWCC
    DWCS6 Cloud
    DWCS6 Disk
    DWCS5.5
    DWCS5
    DWCS4

  • Exploring Web Services with Dreamweaver CS4

    How can you explore web services with Dreamweaver CS4? You
    used to be able to go under Components and add Web Services and
    enter the url for the WSDL (ex.
    http://www.communitymx.com/content/article.cfm?cid=70AAB).
    How do you do that now in CS4?

    Yeah, I knew there were several workspaces. I tried them all
    but none showed the Components/Webservices tab.
    That was an important tab for me since I do a lot of work
    with cfcs in connection with Flex Builder 3.
    I just hate having to go on Easter Egg hunts to find the
    functions that have been there for years.
    Like now I cannot copy and paste some code from one file to
    another and the command tab bar is gone for the CFML commands.
    It's just a real pain in rear end to have waste a bunch of
    time locating where someone decided to bury stuff.

  • Need help with Flash CS4 buttons/can't get buttons to control anything

    Hello,
    I need help with Flash CS4. I am making a banner with an animation (Image change into movie clip "3D Spiral") and added buttons but I cannot get the buttons to control the animation. Please help I am frustrated! If someone could help I would be most appreciated.

    Thank you.
    Regards,
    Michael J. Sheehan  allelois
    Date: Mon, 17 Aug 2009 18:48:09 -0600
    From: [email protected]
    To: [email protected]
    Subject: Need help with Flash CS4 buttons/can't get buttons to control anything
    Hi there
    I'm not sure how you wound up where you did. But you wound up in the Adobe Captivate forums. Please stand by as I move your thread to the Flash forums.
    Cheers... Rick
    >

  • HELP! Embedding Flash with Dreamweaver CS4

    Hello i'm have issues with CS4 embedding Flash FLV's.
    It won't show up when it's on the server but it's working
    locally.
    i've uploaded all the files in the scripts folder and the swf
    skin files.
    But it still won't work server-side.
    I did not have this issue with dreamweaver CS3 as i've found
    that Dreameaver CS4 seems to
    change how the code of how the .FLV is embedded
    any ideas??
    or is anyone else having this issue?
    thanks
    Jordan
    here's is my current test page link with a sample flv video:
    http://www.lambethdesktop.com/flashtest/index.html
    i've also attached the code of the html page it has been
    embedded in.

    This script appears to be missing (or uploaded to the wrong
    folder)
    http://www.lambethdesktop.com/Scripts/swfobject_modified.js
    "chilversj" <[email protected]> wrote in
    message
    news:[email protected]...
    > Hello i'm have issues with CS4 embedding Flash FLV's.
    > It won't show up when it's on the server but it's
    working locally.
    > i've uploaded all the files in the scripts folder and
    the swf skin files.
    > But it still won't work server-side.
    > I did not have this issue with dreamweaver CS3 as i've
    found that
    > Dreameaver
    > CS4 seems to
    > change how the code of how the .FLV is embedded
    >
    > any ideas??
    > or is anyone else having this issue?
    > thanks
    > Jordan
    >
    > here's is my current test page link with a sample flv
    video:
    >
    http://www.lambethdesktop.com/flashtest/index.html
    >
    > i've also attached the code of the html page it has been
    embedded in.
    >
    >
    >
    >
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
    Transitional//EN"
    > "
    http://www.w3.org/TR/html4/loose.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8">
    > <title>Untitled Document</title>
    > <script src="Scripts/swfobject_modified.js"
    > type="text/javascript"></script>
    > </head>
    >
    > <body>
    > <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="320"
    > height="240" id="FLVPlayer">
    > <param name="movie" value="FLVPlayer_Progressive.swf"
    />
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <!-- This param tag prompts users with Flash Player
    6.0 r65 and higher
    > to
    > download the latest version of Flash Player. Delete it
    if you don?t want
    > users
    > to see the prompt. -->
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- Next object tag is for non-IE browsers. So hide
    it from IE using
    > IECC.
    > -->
    > <!--[if !IE]>-->
    > <object type="application/x-shockwave-flash"
    > data="FLVPlayer_Progressive.swf" width="320"
    height="240">
    > <!--<![endif]-->
    > <param name="quality" value="high">
    > <param name="wmode" value="opaque">
    > <param name="scale" value="noscale">
    > <param name="salign" value="lt">
    > <param name="FlashVars"
    >
    value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_1&amp;streamName=http:
    >
    //theharnessedge.com/fcys/FCYS08.28.08&amp;autoPlay=true&amp;autoRewind=false"
    > />
    > <param name="swfversion" value="8,0,0,0">
    > <param name="expressinstall"
    value="Scripts/expressInstall.swf">
    > <!-- The browser displays the following alternative
    content for users
    > with
    > Flash Player 6.0 and older. -->
    > <div>
    > <h4>Content on this page requires a newer version
    of Adobe Flash
    > Player.</h4>
    > <p><a href="
    http://www.adobe.com/go/getflashplayer"><img
    > src="
    http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif"
    > alt="Get Adobe Flash player" /></a></p>
    > </div>
    > <!--[if !IE]>-->
    > </object>
    > <!--<![endif]-->
    > </object>
    > <script type="text/javascript">
    > <!--
    > swfobject.registerObject("FLVPlayer");
    > //-->
    > </script>
    > </body>
    > </html>
    >

  • Using a MsAccess database with Dreamweaver CS4?

    Hi Everyone,
    I have a question concerning using a Microsoft Access Database with Dreamweaver.
    First, I was wondering if this was possible. Second, if it is, could someone give me instructions or a link on how to do this. I am pretty new to Dreamweaver, code, etc..., so simpler instructions on how to acheive this would be great.
    Here is some information...
    1) I am running Windows XP SP2
    2) I am using Microsoft Office 2003 (Acces included)
    3) I am using Dreamweaver CS4
    4) I have installed XAMMP (Apache,MySQL, FileZilla, and PHPmyAdmin, as far as I know)
    If anyone needs more information, I'll be hapy to share it as soon as possible.
    Any help is greatly appreciated,
    Musicman1994

    The choice of database really depends on which server-side technology you plan to use, and what you're actually planning to use it for.
    Access was designed to create databases for small office systems. Although I personally found it very confusing, a lot of people like it and say it's easy to use. However, its major drawback is that it creates very large files; and as soon as the website gets a reasonable amount of traffic, Access has a tendency to freeze or lock up. You can create your database in Access and then export it to another database system, such as Microsoft SQL Server or MySQL. But it's better to start with the database that you ultimately plan using.
    I certainly wouldn't recommend developing anything in ASP and then attempting to convert the website to PHP. Although all server-side programs share common features and structures, the code is completely different. So, take some time over choosing your technology first. If you have never developed in ASP, you should be aware that Microsoft stopped developing it about ten years ago. It's still popular and widely available, but ASP is likely to dwindle in usefulness as the years go by. Use PHP or ColdFusion, both of which are supported by Dreamweaver. The other main alternative is ASP.NET, but that's no longer supported by Dreamweaver.

  • Problem with Dreamweaver CS4 workspace

    Hi
    I have just installed the Adobe CS4 Design Premium software on my Macbook Pro (OS X) and I have a problem or two with the Dreamweaver CS4 workspac:
    1) When I have no file open, no matter which workspace I choose from the drop down list, I have a "see-through" area where files are generally displayed (see attached screen shot). This means I can see my desktop picture, or any other open files, in the background. This is very desturbing! If I click in that open space it also takes me out of Dreamweaver.
    How can I get just a basic grey background in my workspace, instead of the silly see-though??
    2) I have no close, minimize or maximize icons at the top left as I have in Photoshop or Lightroom!?!!  Why is this and how can I get it there?
    Thank you very much in advance for anyone who can help!
    Villiers Steyn

    I have the same problem - just installed Dreamweaver yesterday on mac. Will be interested to see if anyone has a solution for this!

  • Forms with Dreamweaver CS4?

    Hi All,
    Does anyone have a link or tutoral on how to create a form in Dreamweaver CS4. I need to make a "Request a Catalog" Form.
    I especially might need the most help on figuring out on how to receive the info thru my email.
    many thanks,
    Alex

    HTML forms don't do anything without an Action.  You can use Mailto: but this is just asking for Spam and limits the usefulness of your form.  Your best solution is to use a form processing script with spam controls built in.
    Ask your host if they offer any form-to-email processing scripts you can use... or which flavor script you can use on your server (PHP, ASP, ASP.net, ColdFusion, etc...)
    Form Services and Script generators
    http://wufoo.com/
    http://www.bebosoft.com/products/formstogo/overview/
    FormMailer.PHP script
    http://dbmasters.net/index.php?id=4
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Can anyone help with Dreamweaver CS6 crashing in Mavericks OS?

    Hi all,
    I've been going through all the discussions and performing all the steps that are in these forums about Dreamweaver crashing on launch, with no luck. I am using an iMac 2007, Mavericks OS and Dreamweaver is the only software in the Creative suite that will not launch.
    I was on a live chat with Adobe and was told they would contact me from their technical support team and haven't heard a thing. Now I keep going through support trying to get a phone number, at this point I will pay to get it fixed.
    Thanks for any help out there!

    When you say you've tried "performing all the steps" have you completed all of the below?
    Deleting the program cache: Deleting a corrupted cache file
    Renaming the personal configuration folder: Locating your personal configuration folder
    Restoring Preferences: Restore preferences | Dreamweaver CS4, CS5, CS5.5, CS6
    Verifying Java SE7 is installed: Dreamweaver and Java SE 6 Runtime problem on MAC Mountain Lion OSX
    Clean & Reinstall using the cleaner tool: Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

Maybe you are looking for

  • G drive mini won't mount via firewire 800. usb ok

    It hasnt been too long i bought myself a gdrive mini to benefit from the firewire 800 port. It seems that once my macbook gets warm the drive won't mount. It mounts just fine via usb. I've been to the genius bar twice and it worked both times, thats

  • Weird: changing file or link associated defaults then changes ALL defaults to the same program

    Y'know... I thought I'd possibly 'seen it all' but today someone brought me a laptop with something I don't believe I've ever seen... every link and file association is defaulted to the wrong program, and it is not possible to restore the association

  • Ibook G4 Wont start

    I walked up to my computer and i shocked it accidently and it all the sudden shut down. The battery is fully charged and everything and it wont turn on.

  • Node/Machine fail behavior of distributed caches

    My high level question is: what happens to a distributed cache when nodes fail? We have 2 servers which run 4 JVMs each. We have the default of 1 backup set. What happens when an entire machine fails (all 4 JVMs go down with the ship)? What happens w

  • Sorting a range in Excel (from MS Project) using VBA

    Hi All I have a piece of code that exports data from MS Project to Excel and formats it in a particular way.  It all works fine, however I now need to sort the data by a second key and I cant find the solution or work it out.  Here is the piece of co