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>

Similar Messages

  • 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?

  • 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.

  • I need help with a 1 Page Form with scrollable text field (5000 limit characters) and printing

    Hello, I have no training in using Adobe Acrobat Pro or Livecycle Designer so I need major help with a 1 page form that I am attempting to create. Basically the form will be used to nominate employees for a Job Well Done Award.
    The form contains the following:
    1.) The name(s) of the employees being nominated and the date of the accomplishment.
    2.) In the middle of the page I have a section for a write up, limited to 5000 characters, this is were I am needing the most help. A couple of things, about this section: The font is set at 11 and I don't want it to change. The text field has multiple-line, scroll long text enabled. The text field is a certain size and can only hold so much text, then it starts to scroll, which I am ok with, I like that feature. The issue I am having is during printing. I would like to keep the text field scrollable but when I print I would like to be able to print everything in that field. Executing this is the problem, I have no clue how to do it. I was hoping for some setting within Acrobat Pro or LiveCycle to be available, but the more I read and research this, it appears that it may require java, xml, basically some coding. I don't know for sure.
    3.) Below the text field I have another field for the person nominating to type their name and right next to that another field for a digital signature.
    4.) And finally below those two fields I have a Submit button that is setup to start email application so the form can be emailed to the proper inbox.
    Thank you in advance.

    With an Acrobat form the only thing you can do is export the text to
    another location (like a blank field on another page) or to another file
    format. With an LCD form you can expand the text box itself, but you'll
    need to ask about that over at the LCD Scripting forum.

  • 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
    >

  • 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

  • Help with Dreamweaver Validate Form Behavior

    Hello,
    I'm attempting to use Dreamweaver to validate form fields. This would work quite well except for in this case I'm using custom form code which is coming from Salesforce.com. The issue has been that the Salesforce.com web-to-lead form comes with "name" attributes on every form field item. If I change these names to make the validation look nicer, for example from first_name to First Name, then the web to lead form breaks. Is there another way to utilize Dreamweavers form validation by creating by own names for each form element instead of using "name"? The objective is to give the user something that looks good... like:
    First Name is required
    Last Name is required
    And with the Salesforce custom name fields it ends up looking like:
    900000xxxxx213s is required
    or
    last_name is required
    Thanks for any help!

    The name attribute of a form cannot contain spaces. That's why the validation behavior breaks.
    The Dreamweaver Validate Form behavior is rather crude and well past its sell-by date. Use the Spry Validation widgets instead: http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WS267C8659-3AEF-4956-8268-E38CA4CAFAD3a .html.

  • 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>
    >

  • Dreamweaver CS4 - Dynamic Form Question

    Hello you all.  I've been tasked with developing a form for my company that allows a user to add as many contacts into a form field as they like, i.e., they would enter a contact first and last name and then click on a "+" sign or button to add another name etc.  The "+" or Add button would shoot each name into a database and display it above the new blank field.
    I am familiar with developing regular static forms but nothing dynamic like this.  I know explaining this to me from start to finish is out of the scope of this forum, but where do I start.  Does Dreamweaver CS4 have some type of widget or Java addon that will allow me to generate this type of field and then I can tackle the database setup at another time?
    Any help would be much appreciated!

    Have a look at the following, just copy and paste in a new document and test in a browser
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    .clickable {cursor: pointer;}
    #fullname2 {visibility: hidden;}
    </style>
    </head>
    <body>
    <form action="" method="get">
    <input name="fullname1" id="fullname1" type="text"><span id="add1" class="clickable"> +</span>
    <br>
    <input name="fullname2" id="fullname2" type="text">
    </form>
    <script src="http://labs.adobe.com/technologies/spry/includes/SpryDOMUtils.js"></script>
    <script>
    Spry.$$("#add1").addEventListener("click", MyOnClickHandler, false);
    function MyOnClickHandler() {
         Spry.$$("#fullname2").setStyle("visibility: visible;")
    </script>
    </body>
    </html>
    Gramps

Maybe you are looking for

  • My little red circle with a 1 in it that looks like an update, is on my MAC desktop, I have no idea what it is for or how to get rid of it

    On my desktop on the dock, where the calendar app is, there is a rd circle with a 1 in it like the ones on iphone that show up for u pdates, I have never seen this on my desktop, does anyone know what it means? I don't think it is for an update?

  • Changing shopping cart in approval stage-SRM 5.0

    Hi All, I am facing an issue in Integration environment. It is working fine in Dev. Even if the security level at user details is defined as "Low" (2), user is not able to change the shopping cart in approval status (via Check Status, in case of requ

  • Database not starting,REDO log file error?

    My DB was working fine uptill last evening, when i restarted it for some DB task it showed me an error .. ORA-00333: redo log read error block 57346 count 8192 I studied the alert log file & related trace file .... but could not conclude what to do ?

  • Strange behavior with combo drive...

    I've had my powerbook for a few years without any problems other than some slight noise from the secondary fan which I replaced a few weeks ago without any difficulty. The other day I noticed my powerbook froze up on me. I had no choice but to depres

  • View Menu

    Hi, I think is probably a very basic question but I can't find any resolution it! I have been using PS5 for years and when opening file locations which contain images they display (as default as large icon thumbnails). However, as from yesterday they