Ask a Question related to Macromedia Dreamweaver, Design and Development.

  1. #1

    Default Update problem

    Hi,
    I have installed DreamweaverMx6.0,
    and yesterday I've downloaded DWMX6.1 updater.
    But I encountered a problem when I installed the
    updater, when I selected the destination folder(where I
    have installed DWMX6.0) and clicked ok, I met the
    error message as follows:

    This folder does not contain Dreamweaver MX.

    I didn't know why this happened.
    Please give some instructions.

    Thanks in advance!


    takecare webforumsuser@macromedia.com Guest

  2. Similar Questions and Discussions

    1. SQL Update problem
      The following SQL statement is resulting in the error after it: (pasted from IE window) UPDATE Clients SET number = 300, name = 'Ace Lock',...
    2. inker problem (an update to the 'general problem')
      i have my shockwave 3d project which i know on several machines makes the screen goes nuts, meaning it turns into 'safe mode' - 640*480, 256 colours...
    3. ASP Problem - will not update
      Hi, Hope someone can help. The ASP below correctly gets the data out of the Access DB but when I click update it does not. Anything obviously...
    4. Update to 7.0.1 problem
      Hello, I just want to update my Photoshop 7.0 to 7.0.1. But it doesn't work. During the setup I alwys become an error message: "The Adobe...
    5. apt-get update problem
      Hello. I added entries to my sources.list, but i can't get the related packages : my sources.list -------------------------- deb...
  3. #2

    Default update problem

    PLEASE HELP l just try to update a record from the db BUT IT SEEM IT WON'T TO
    RECONIZE THE PRIMARY key No_ID
    it's a very basic uptdate still not working i try all kind of things ...still
    same issue

    update_record.cfm
    <p><cfquery name="affproduit" datasource="enligne">SELECT * FROM SAISIE where
    No_ID= #No_ID#</cfquery>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>

    <body>
    <p>modifier enregistrement </p>

    <form action="update_record2.cfm" method="post">
    <cfoutput><input name="No_ID" type="text" value="#No_ID#">
    <p>nom produit
    <input ="text" name="nomproduit" value = "#nomproduit#">
    </p>
    <p>quantite
    <input type="text" name="quantite" value="#quantite#">
    </p>
    <p>Retails price saleprice
    <input type="text" name="retailsprice" value="#retailsprice#">
    </p>
    <p>Our price
    <input type="text" name="ourprice" value="#ourprice#">
    </p>
    <p>sales price
    <input type="text" name="saleprice" value="#saleprice#">
    <p>description
    <textarea COLS="20" ROWS="6"
    name="description">#description#</textarea>
    </p>
    <input name="image" type="file">
    <br>
    <select type="text" name="categories">
    <option value="Food"> Food
    <option value="Art"> Art
    <option value="Beauty"> Beauty </select>
    </cfoutput><BR>
    <input type="submit" name="Submit" value="Submit">
    </form>

    </body>

    </html>


    =======================================

    UPDATE_RECORD2.CFM
    <cfquery name="affproduit" datasource="enligne">SELECT * FROM SAISIE where
    No_ID= #No_ID#</cfquery>
    <cfquery name="UPDATEFORM" datasource="enligne"> UPDATE SAISIE
    SET nomproduit='#nomproduit#',
    quantite=#quantite#,
    retailsprice=#retailsprice#,
    ourprice=#ourprice#,
    saleprice=#saleprice#,
    description='#description#'
    categories='#categories#'
    image='#image#'

    WHERE (No_ID = #No_ID#)
    </cfquery>
    <CFLOCATION URL="afficher_saisie.cfm" addtoken="yes">

    afroman22 Guest

  4. #3

    Default Re: update problem

    You're missing a comma after each of these lines:

    description='#description#'
    categories='#categories#'

    Add in a comma, and you should be good.
    Kronin555 Guest

  5. #4

    Default Re: update problem

    :gift;
    I CANNOT IMGE THAT WAS MY ERROR...
    THANKS A LOT
    afroman22 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139