Server Behavior, Bindings and Components Panels [subject edited by moderator]

How do I get Server Behavior, Bindings and Components Panels and Database feature this is the most retarded program ever! I installed the extension manager, then it wanted the panel installed, which won't installed because of photoshop version. How in the hell do I get Server Behavior, Bindings and Components Panels and Database feature!!!

The Deprecated Server Behaviors were removed for good reason.  The code is woefully outdated and the old MySql connections won't work on servers with PHP 5.5 or higher.
Which operating system?
Which version of PS?
Which version of DW?
Which version of Extension Manager?
Replace Deprecated Server Behaviors with a modern commercial extension -- MySQLi (improved) or PDO:
http://www.webassist.com/dreamweaver-extensions/mysqli
http://www.dmxzone.com/go/22096/updated-replacing-dreamweaver-server-behaviors-with-dmxzon e-extensions/
Nancy O.

Similar Messages

  • PHP and MySQL issue {subject edited by moderator}

    Using Dreamweaver and PHP.   On one page, I have a form with an Insert Field (LastName) that enter into the SQL database. SQL database has the ID auto-increment.   When I click on Send (with the data entered into the database), I want the new page to open and display the ID field.  but when I insert a new id and I click Send it still displays the old id, whereas I want to display a new ID

    This code for isert page
    <?php require_once('Connections/pendaftaran.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form")) {
      $insertSQL = sprintf("INSERT INTO maklumat_fail (fail_tajuk, fail_no, fail_seksyen, fail_hari, fail_bulan, fail_tahun, fail_rakbesi, fail_laci, fail_baris) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['fail_tajuk'], "text"),
                           GetSQLValueString($_POST['fail_no'], "int"),
                           GetSQLValueString($_POST['fail_seksyen'], "text"),
                           GetSQLValueString($_POST['fail_hari'], "int"),
                           GetSQLValueString($_POST['fail_bulan'], "text"),
                           GetSQLValueString($_POST['fail_tahun'], "int"),
                           GetSQLValueString($_POST['fail_rakbesi'], "text"),
                           GetSQLValueString($_POST['fail_laci'], "text"),
                           GetSQLValueString($_POST['fail_baris'], "text"));
      mysql_select_db($database_pendaftaran, $pendaftaran);
      $Result1 = mysql_query($insertSQL, $pendaftaran) or die(mysql_error());
      $insertGoTo = "detailPendaftaran.php?" . $row_Recordset1['fail_tajuk'] . "=";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    if ((isset($_POST["MM_update"])) && ($_POST["MM_update"] == "form")) {
      $updateSQL = sprintf("UPDATE maklumat_fail SET fail_no=%s, fail_seksyen=%s, fail_hari=%s, fail_bulan=%s, fail_tahun=%s, fail_rakbesi=%s, fail_laci=%s, fail_baris=%s WHERE fail_tajuk=%s",
                           GetSQLValueString($_POST['fail_no'], "int"),
                           GetSQLValueString($_POST['fail_seksyen'], "text"),
                           GetSQLValueString($_POST['fail_hari'], "int"),
                           GetSQLValueString($_POST['fail_bulan'], "text"),
                           GetSQLValueString($_POST['fail_tahun'], "int"),
                           GetSQLValueString($_POST['fail_rakbesi'], "text"),
                           GetSQLValueString($_POST['fail_laci'], "text"),
                           GetSQLValueString($_POST['fail_baris'], "text"),
                           GetSQLValueString($_POST['fail_tajuk'], "text"));
      mysql_select_db($database_pendaftaran, $pendaftaran);
      $Result1 = mysql_query($updateSQL, $pendaftaran) or die(mysql_error());
      $updateGoTo = "detailPendaftaran.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" : "?";
        $updateGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $updateGoTo));
    mysql_select_db($database_pendaftaran, $pendaftaran);
    $query_Recordset1 = "SELECT * FROM maklumat_fail";
    $Recordset1 = mysql_query($query_Recordset1, $pendaftaran) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?><!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>SISTEM PENDAFTARAN FAIL</title>
    <style type="text/css">
    .right {
      text-align: right;
    body {
      background-color: #6699CC;
    </style>
    </head>
    <body><form action="<?php echo $editFormAction; ?>" name="form" method="POST">
      <center>
        <p><img src="mps.png" width="1119" height="244" /></p></center>
      <table width="332" border="0" align="center">
          <tr>
            <td><h1 class="K">PENDAFTARAN FAIL</h1></td>
          </tr>
      </table>
        <p> </p>
        <table width="200" border="2" align="center" class="l">
          <tr>
            <td><center isoptional="l">Maklumat Fail</center></td>
          </tr>
      </table>
        <p> </p>
        <center><table width="587" border="6">
          <tr>
            <td width="567" height="233"><table width="560" height="206" border="0">
                <tr>
                  <td width="147" class="right"><strong>No. Fail</strong></td>
                  <td width="10">:</td>
                  <td width="432">MPSepang
                    <input name="fail_no" type="text" id="fail_no" size="40" /></td>
                </tr>
                <tr>
                  <td class="right"><strong>Tajuk Fail</strong></td>
                  <td>:</td>
                  <td><textarea name="fail_tajuk" cols="40" rows="5" id="fail_tajuk"></textarea></td>
                </tr>
                <tr>
                  <td class="right"><strong>Seksyen</strong></td>
                  <td>:</td>
                  <td><select name="fail_seksyen" size="Seksyen" id="fail_seksyen">
                      <option>Seksyen</option>
                      <option>Pentadbiran</option>
                      <option>Web, Latihan &amp; Komuniti</option>
                      <option>Rangkaian &amp; Infrastruktur</option>
                      <option>Sistem</option>
                  </select></td>
                </tr>
                <tr>
                  <td class="right"><strong>Tarikh Fail Dibuka</strong></td>
                  <td>:</td>
                  <td><select name="fail_hari" size="Hari" id="fail_hari">
                      <option>Hari</option>
                      <option>1</option>
                      <option>2</option>
                      <option>3</option>
                      <option>4</option>
                      <option>5</option>
                      <option>6</option>
                      <option>7</option>
                      <option>8</option>
                      <option>9</option>
                      <option>10</option>
                      <option>11</option>
                      <option>12</option>
                      <option>13</option>
                      <option>14</option>
                      <option>15</option>
                      <option>16</option>
                      <option>17</option>
                      <option>18</option>
                      <option>19</option>
                      <option>20</option>
                      <option>21</option>
                      <option>22</option>
                      <option>23</option>
                      <option>24</option>
                      <option>25</option>
                      <option>26</option>
                      <option>27</option>
                      <option>28</option>
                      <option>29</option>
                      <option>30</option>
                      <option>31</option>
                    </select>
                      <label for="bulan2"></label>
                      <select name="fail_bulan" size="Bulan" id="bulan2">
                        <option>Bulan</option>
                        <option>Januari</option>
                        <option>Februari</option>
                        <option>Mac</option>
                        <option>April</option>
                        <option>Mei</option>
                        <option>Jun</option>
                        <option>Julai</option>
                        <option>Ogos</option>
                        <option>September</option>
                        <option>Oktober</option>
                        <option>November</option>
                        <option>Disember</option>
                      </select>
                      <label for="fail_tahun"></label>
                      <select name="fail_tahun" size="Tahun" id="fail_tahun">
                        <option>Tahun</option>
                        <option>2014</option>
                        <option>2015</option>
                        <option>2016</option>
                        <option>2017</option>
                        <option>2018</option>
                      </select>
                      <label for="tarikhBuka"></label></td>
                </tr>
                <tr>
                  <td bgcolor="#FFFFFF" class="right"> <label><strong>Lokasi</strong></label></td>
                  <td>:</td>
                  <td>Rak Besi
                    <label>
                      <select name="fail_rakbesi" size="Seksyen" id="fail_rakbesi">
                        <option>Rak Besi</option>
                        <option>A</option>
                        <option>B</option>
                      </select>
                      Laci
                      <select name="fail_laci" size="Seksyen" id="fail_laci">
                        <option>Laci</option>
                        <option>A1</option>
                        <option>A2</option>
                        <option>A3</option>
                        <option>A4</option>
                        <option>B1</option>
                        <option>B2</option>
                        <option>B3</option>
                        <option>B4</option>
                      </select>
                      Baris
                      <select name="fail_baris" size="Seksyen" id="fail_baris">
                        <option>Baris</option>
                        <option>1</option>
                        <option>2</option>
                        <option>3</option>
                        <option>4</option>
                        <option>5</option>
                        <option>6</option>
                        <option>7</option>
                        <option>8</option>
                        <option>9</option>
                        <option>10</option>
                        <option>11</option>
                        <option>12</option>
                        <option>13</option>
                        <option>14</option>
                        <option>15</option>
                        <option>16</option>
                        <option>17</option>
                        <option>18</option>
                        <option>19</option>
                        <option>20</option>
                      </select>
                    </label></td>
                </tr>
            </table></td>
          </tr>
          <tr>
            <td><label>
              <div align="center">
                <input type="submit" name="submit" id="submit" value="Submit" />
              </div>
            </label></td>
          </tr>
      </table>
      </center>
        <p> </p>
    <center>
          <p>
            <label></label>
          <p> </p>
      </center>
      <center>
        <p><img src="nwUWE4K.jpg" width="1119" height="200" /></p>
      </center>
      <input type="hidden" name="MM_insert" value="form" />
      <input type="hidden" name="MM_update" value="form" />
    </form>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    This for display page
    <?php require_once('Connections/pendaftaran.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_Recordset1 = "-1";
    if (isset($_GET['fail_baris'])) {
      $colname_Recordset1 = $_GET['fail_baris'];
    mysql_select_db($database_pendaftaran, $pendaftaran);
    $query_Recordset1 = sprintf("SELECT * FROM maklumat_fail WHERE fail_baris = %s", GetSQLValueString($colname_Recordset1, "text"));
    $Recordset1 = mysql_query($query_Recordset1, $pendaftaran) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!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>SISTEM PENDAFTARAN FAIL</title>
    <style type="text/css">
    .right {
      text-align: right;
    body {
      background-color: #6699CC;
    </style>
    </head>
    <body><form action="" method="get">
      <center>
        <p><img src="mps.png" width="1119" height="244" /></p>
      </center>
        <p><center>
        </p>
        <p> </p>
        <p> </p>
        <center>
          <table width="406" border="0">
            <tr>
              <td width="247"><h1>Fail telah berjaya didaftar!!</h1></td>
            </tr>
          </table>
          <p> </p>
          <table width="389" border="6">
            <tr>
              <td><table width="370" height="174" border="0">
                <tr>
                  <td width="129" class="right"><strong>No.Fail</strong></td>
                  <td width="8">:</td>
                  <td width="211"><?php echo $row_Recordset1['fail_no']; ?></td>
                </tr>
                <tr>
                  <td class="right"><strong>Tajuk Fail</strong></td>
                  <td>:</td>
                  <td><?php echo $row_Recordset1['fail_tajuk']; ?></td>
                </tr>
                <tr>
                  <td class="right"><strong>Seksyen</strong></td>
                  <td>:</td>
                  <td><?php echo $row_Recordset1['fail_seksyen']; ?></td>
                </tr>
                <tr>
                  <td class="right"><strong>Tarikh Fail Dibuka</strong></td>
                  <td>:</td>
                  <td><?php echo $row_Recordset1['fail_hari']; ?><?php echo $row_Recordset1['fail_bulan']; ?><?php echo $row_Recordset1['fail_tahun']; ?></td>
                </tr>
                <tr>
                  <td class="right"><strong>Lokasi</strong></td>
                  <td>:</td>
                  <td><?php echo $row_Recordset1['fail_rakbesi']; ?><?php echo $row_Recordset1['fail_laci']; ?><?php echo $row_Recordset1['fail_baris']; ?></td>
                </tr>
              </table></td>
            </tr>
          </table>
          <p><a href="test1.php">MENU</a></p>
          <p> </p>
          <p> </p>
      </center>
        <p> </p>
        <p><img src="nwUWE4K.jpg" width="1119" height="200" /></p>
    </form>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>

  • Dreamweaver and PHPFox? [subject edited by moderator]

    Hello!i d like to know how can i edit the layout with dreamweaver if ii use PHPFox
    Some 1  can help me?

    Make your local root folder (as specified in your site definition) point into the "htdocs" folder, e.g.,
    the path to your local root folder would be something like - C:\My Documents\Web Sites\You_Site_Name\htdocs

  • CS4 and Yosemite? [subject edited by moderator]

    I recently upgraded my mac to Yosemite. I use the 2012 CS4 Dreamweaver. 1. is it compatible with Yosemite (I had to upgrade some other applications such as FInale) 2. I can only open the properties in CSS and Html, NO OTHER functions such as block, background, borders etc....
    DO I need to upgrade my version of Dreamweaver (:()  or simply reinstall the version that I already have?
    Thanks

    Hi,
    I haven't seen any issues related to CS4 on Yosemite. Either there are no issues with CS4 on Yosemite, or people that have had issues have not reported it. Can you try a clean uninstall Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6 and reinstall your software? Let us know if you still have issues.
    Just saw Nancy's reply and wanted to add to my post.. Some bugs have been reported for the latest version on Yosemite as well, and the product team is fixing them for the next release. As far as I know, none of these issues are show stoppers.
    Thanks,
    Preran

  • Linking separate desktop and mobile sites [subject edited by moderator]

    I created a regular site in dreamweaver and then I made a mobile version usingjquery mobile, how do I link the two together so when someone search fro the site on a desktop the regular site will show and when someone searches for it on a mobile device the mobile one will show?

    That is why better informed web developers use the Responsive Web Design (RWD) technique. I thoroughly recommend this.
    However, because you have two sites, have a read of this Official Google Webmaster Central Blog: Running desktop and mobile versions of your site

  • Where is the Server Behaviors, Bindings, Databases in dream weaver cc

    Hi can anyone tell me how to get the Server Behaviors, Bindings, Databases in dream weaver cc
    thanks

    Free is outdated.  You assume all risk for it not working on upgraded servers.  Download the .ZXP Extension and install with Extension Manager CC
    http://www.dmxzone.com/go/21842/enable-server-behaviors-and-data-bindings-panel-support-fo r-dreamweaver-cc/
    Good luck!
    Nancy O.

  • Upload Adobe video to my site? {subject edited by moderator}

    Hello! How are? I've got question,please.I create my own site and I want to upload on a site the video from Adobe.com.For example : video about "Dreamweaver" captured by Adobe. Is it legally?

    Thank you very much. That's all right.
    Отправлено с iPhone
    23 ביול 2014, в 17:20, Preran <[email protected]> написал(а):
    Upload Adobe video to my site? {subject edited by moderator}
    created by Preran in Dreamweaver support forum - View the full discussion
    Thanks for simplifying this for everyone, Murray.
    Antimusic: While it is not possible to upload an Adobe video to your site, you can embed a video from http://tv.adobe.com using the embed code for the video. Is that what you were looking for?
    Thanks,
    Preran
    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 https://forums.adobe.com/message/6576208#6576208
    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:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Dreamweaver support forum by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • Spacing menu links [subject edited by moderator]

    Starting from the basic initial setup, I am trying to move the sample Links so that they are underneath the title and side by side. Now they are almost all side by side, but the extra Links I added are dangling below the initial four Links. How do I space it properly? [content edited by moderator]
    Here's what I'm looking at. I'm trying to get them all side-by-side, and would also like to get it below "Guitar Site".

    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style type="text/css">
    body {
      font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
      background-color: #B4B3AF;
      margin: 0;
      padding: 0;
      color: #000;
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
      padding: 0;
      margin: 0;
    h1, h2, h3, h4, h5, h6, p {
      margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
      padding-right: 15px;
      padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
      background-color: #A2A0A0;
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
      border: none;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
      color: #42413C;
      text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
      color: #6E6C64;
      text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
      text-decoration: none;
    /* ~~ This fixed width container surrounds all other blocks ~~ */
    .container {
      width: 960px;
      background-color: #A79E9F;
      margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
      font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", "Arial Black", sans-serif;
      color: #0A5BD8;
    /* ~~ The header is not given a width. It will extend the full width of your layout. ~~ */
    header {
      background-color: #ADB96E;
    /* ~~ These are the columns for the layout. ~~
    1) Padding is only placed on the top and/or bottom of the block elements. The elements within these blocks have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the block itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the block element and place a second block element within it with no width and the padding necessary for your design.
    2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a block set to float right). Many times, padding can be used instead. For blocks where this rule must be broken, you should add a "display:inline" declaration to the block element's rule to tame a bug where some versions of Internet Explorer double the margin.
    3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar blocks could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
    4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the blocks around in the HTML source.
    .sidebar1 {
      float: right;
      width: 180px;
      background-color: #EADCAE;
      padding-bottom: 10px;
    .content {
      padding: 10px 0;
      width: 780px;
      float: right;
      color: #000000;
    /* ~~ This grouped selector gives the lists in the .content area space ~~ */
    .content ul, .content ol {
      padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
    /* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
    nav ul{
      list-style: none; /* this removes the list marker */
      border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
      margin-bottom: 15px; /* this creates the space between the navigation on the content below */
    nav li {
      border-bottom: 1px solid #666; /* this creates the button separation */
    nav a, nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
      padding: 5px 5px 5px 15px;
      display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
      width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
      text-decoration: none;
      background-color: #C6D580;
    nav a:hover, nav a:active, nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
      background-color: #ADB96E;
      color: #FFF;
    /* ~~ The footer ~~ */
    footer {
      padding: 10px 0;
      background-color: #CCC49F;
      position: relative;/* this gives IE6 hasLayout to properly clear */
      clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
    /*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
    header, section, footer, aside, article, figure {
      display: block;
    h1,h2,h3,h4,h5,h6 {
      font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    h1 {
      font-size: 36mm;
      color: #FB1C20;
    </style><!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]--></head>
    <body class="container">
    <div class="container">
      <h3>
        <header>
          <a href="#"><img src="../../Misc/PlayingGuitar.jpg" alt="Insert Logo Here" width="946" height="359" id="Insert_logo" style="background-color: #C6D580; display:block;" /></a>
        </header>
      </h3>
      <div class="body">
        <nav>
        <ul class="content">
          <li><span class="sidebar1"><a href="#">Lessons</a></span></li>
          <li><span class="sidebar1"><a href="#">Tips on Buying</a></span></li>
          <li><span class="sidebar1"><a href="#">Reviews</a></span></li>
          <li><span class="sidebar1"><a href="#">Community</a></span></li>
          <li><span class="sidebar1"><a href="#">About</a></span></li>
        </ul>
        </nav>
      <!-- end .body -->
      <span style="text-align: center"></span></div>
      <article class="content">
        <h1>Guitar Core</h1>
        <section>
         <h2>Headline 1</h2>
          <p> </p>
        </section>
        <section>
          <h2>Clearing Method</h2>
          <p> </p>
          <p>Because all the columns are floated, this layout uses a clear:both declaration in the footer rule.  This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If your design requires you to remove the footer from the .container, you'll need to use a different clearing method. The most reliable will be to add a &lt;br class=&quot;clearfloat&quot; /&gt; or &lt;div  class=&quot;clearfloat&quot;&gt;&lt;/div&gt; after your final floated column (but before the .container closes). This will have the same clearing effect. </p>
        </section>
        <section>
          <h2>Logo Replacement</h2>
          <p>An image placeholder was used in this layout in the header where you'll likely want to place  a logo. It is recommended that you remove the placeholder and replace it with your own linked logo. </p>
          <p> Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes. </p>
          <p>To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)</p>
        </section>
        <section>
          <h2>Backgrounds</h2>
          <p>By nature, the background color on any block element will only show for the length of the content. This means if you're using a background color or border to create the look of a side column, it won't extend all the way to the footer but will stop when the content ends. If the .content block will always contain more content, you can place a border on the .content block to divide it from the column.</p>
        </section>
        <!-- end .content --></article>
      <footer>
        <p>This footer contains the declaration position:relative; to give Internet Explorer 6 hasLayout for the footer and cause it to clear correctly. If you're not required to support IE6, you may remove it.</p>
        <address>
          Address Content
        </address>
      </footer>
      <!-- end .container --></div>
    </body>
    </html>

  • Database bindings panel in trial version? {subject edited by moderator}

    I am trying to setup a simple login using mysql and php. I have the site setup along with the database. My problem is when I go to Bindings / Database, there's no option for recordrowset.
    Is this simply due to the trial version ( have downloaded cs5.5 and CC). I don't want to pay for the full version if I'm going to have the same problem.
    Thanks in advance

    dabollix wrote:
    I am trying to setup a simple login using mysql and php. I have the site setup along with the database. My problem is when I go to Bindings / Database, there's no option for recordrowset.
    Is this simply due to the trial version ( have downloaded cs5.5 and CC). I don't want to pay for the full version if I'm going to have the same problem.
    Thanks in advance
    Downloaded CS5.5? from where, it's not available any longer I don't think. If it is CS5.5 should still have the option to create a login page using the server behaviours. CC an CC2014 by default have the server behaviours removed. They can be re-instated via an extension as explained at the link in the post above.

  • Dreamweaver FTP problems and Yosemite [subject edited by moderator]

    Dreamweaver (newly) installed won't recognize my server (ftp.jakkoke.com). Have checked firewall (no problem), other ftp programs which work just fine, old version of Dreamweaver - works but not with Mac os 10.10 Yosemite. Set up irs.guv - new Dreamweaver communicates with this and other FTP sites just fine. Uninstalled and reinstalled twice. What am I to do?

    Hi jekoke,
    Please follow the steps mentioned below:
    Quit Dreamweaver if it's running.
    Go to Spotlight (magnifying glass icon on the far right hand side of the menu bar) and type "Keychain". Look for the "Keychain Access" application and click to launch it.
    In Keychain Access, you should see a list of Keychain items.  Look in the "Name" column for an item named with the Site Name of your affected site. It will look something like this: "SiteName-SiteServer 0". It will also say "application password" in the "Kind" column.
    Click the item to select it. You should see some properties of the Keychain item appear at the top of the Keychain Access window. As a double check, ensure that the value shown for "Account" is the FTP username.  If it's not, then you may have the wrong item.
    Once you're happy you have the correct item, and it's selected, hit the Delete key to remove it. Leave the application open for now.
    Start Dreamweaver, go to the "Manage Sites" dialog box (Site > Manage Sites...), and edit the affected site. Click on the Servers section and double click the server in the list to edit it.
    Enter the FTP username and password, then click Save to close the edit server box, and click Save again to close the edit site box.
    You should now see that a new Keychain item has been created in Keychain Access (it should have the same name).
    You can quit Keychain Access and Dreamweaver now, then restart Dreamweaver and check if it works now without having to re-enter the FTP details.
    Please let us know if you still face any issues.

  • Missing images and CSS styles! [subject edited by moderator]

    I edited a template in dreamweaver and uploaded it to my new website yet it only shows plain text? All of the pretty layout and pictures are missing? How do I upload all of the files the way that it looks in dreamweaver? Because there it looks perfect.
    neilmangicaro.com is the website

    I don't know where you got your "Template"  but in DW, Template.dwt files serve a very specific purpose for maintaining the overall appearance of your site wide pages and common elements such as footers, headers & menus.  If you're not familiar with DW Templates yet, I urge you to read the F1 Help Section > About DW Templates. Dreamweaver Help | About Dreamweaver templates
    A Template.dwt file is basically a common structure shared by many child pages that are spawned from that Template. 
    Nancy O.

  • File not found error on testing server [subject edited by moderator]

    The requested URL /www/first.php was not found on this server.  Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80
    Using adobe dreamweaver with wamp server and getting this message while checking any file.Saved all file in ( c:wamp/www/ ) with php extention

    Have you checked to see if first.php file is in the www folder in WAMP?
    Have you aso tried:
    http://localhost/first.php
    or
    Create a folder in the 'www' folder named 'test' and then put the 'first.php' file in the 'test' folder:
    http://localhost/test/first.php
    Do any of those combinations work?

  • Where is the page title field and the property inspector? [subject edited by moderator]

    Why do I not have the title window in the tool bar, and why do i not have the inspection panel at the bottom of my window

  • DW CS6 and legacy Java SE6 runtime [subject edited by moderator]

    When I try to open Dw CS6 or Flash CS6 I get this message "
    To open “Dreamweaver” you need to install the legacy Java SE 6 runtime.
    To open “Flash” you need to install the legacy Java SE 6 runtime."
    These two programs would not open. These two programs  was working
    before I upgraded to OS X Yosemite Version 10.10.1
    Please help!
    Regards, HaiSan

    You don't come right out and say it, so I'll ask the obvious, have you installed Java SE 6 yet?
    DW still needs Java SE 6 to function correctly...
    Prompted to install Java SE 6 Runtime | Mac OS 10.9
    Dreamweaver and Java SE 6 Runtime problem on MAC OSX

  • DW CS5.5 and Yosemite [subject edited by moderator]

    i upgraded to a new computer with Yosemite, after migrating my settings over. Adobe CS5.5 works fine except Dreamweaver CS 5.5, it says it is unable to locate menus.xml and cannot rebuild from a backup. It suggests reinstalling.
    But when i try to reinstall, i get an error that says "installer failed to initialize. please download adobe support advisor to detect problem".
    That produces the net problem of it being discontinued, and that brought me here. help!

    This is the risk you take when you upgrade your OS to the very latest while the software you use was never built for it.  
    Mac OS X Yosemite (10.10) compatibility FAQs | CC
    You might try running the CS Cleaner Tools to wipe CS5  off your hard drive followed by a re-installation.
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6
    Nancy O.

Maybe you are looking for

  • Cannot view PDF files within Safari 6.0.1

    I have lost the ability to view PDF files within the safari web browser.  When I press on a link to a PDF file a blank/black screen will appear.  If I right click on the page I have the ability to Save the PDF file and then I can open it in preview. 

  • 1 time per year deauthorization

    Hello. How to deauthorize all my computers second time a year? I used it last year so now i cant do it again till april. And because i reinstalled my system i cant deauthorize previously authorized computers one by one. Is there any solution to deaut

  • How to overcome view changes in bdc session method  using recording ?

    how to overcome view changes in bdc session method  using recording ? ex-for mm01 in recording if i selected views basic data1 and basic data2. i seheduleded for background for after 3 days . if any body changes views by selecting other views also. h

  • My mac is running slow and locking up

    My laptop recently started running slowing and giving me the colored circle to indicate it is thinking. I didn't think Mac's got viruses, but this feels like one. It slow when I type and search the internet.

  • Suggestion - RDAC mpp driver bundled with DVD/CD/Public repo.

    Might I suggest that you bundle (include) the LSI RDAC driver with the CD/DVD/public-yum.oracle.com repo site so as to provide the mpp driver support for those of us Oracle/Sun customers with a Sun 6000 series storage array without "Crystal" version