Error with Application panel in Dreamweaver CS3

Hello guys , i'm glad to join to the forum...
I've a problem:when i access to Application panel-Server
Behavours my Dreamweaver crashes.
I use Windows Vista Home Premium and i'm working with Apache,
MySQL and PHP (the last versions).
Please try to give me some advice

Thanks for the replies!
Although I still haven't found the real problem for it, the preview panel keeps on freezing, I do have a wokaround found for it.
Because I have a docking station for my laptop, with some free slots in it, I bought a second hand Video Card with 512MB and better performance than the on-board card in the laptop.
I hooked up a external LCD monitor to it and now it works just fine, with no additional modifications in Bridge.
So, although the Bridge / video card still occurs on the laptop, I don't mind working this way.
Maybe a newer driver in the future will solve this problem.
Kind regards,
Stefan

Similar Messages

  • Problems with Application panel

    Has anyone ran into problems with the Applications panel? I
    using the Application panel to insert Bindings and Server
    Behaviors. I can't get it to work. It says that I have a connection
    and I'm able to see the tables and diplay recordsets. But I'm
    unable to display multiple recordsets and insert data into a
    database. I'm reading Dreamweaver 8 with ASP, Cold Fusion, and PHP:
    Training from the Source. I've done what the book has told me. Any
    ideas on what the problem could be?
    The only thing different that I did from the book is how I
    connect to a database. I have this on the top of each asp page.
    <%@LANGUAGE="VBSCRIPT"%>
    <%
    Set MM_conn_newland_STRING = CreateObject("ADODB.Connection")
    MM_conn_newland_STRING.ConnectionString =
    "Provider=Microsoft.Jet.OLEDB.4.0;Data
    Source=D:\website\newland\database\newland_tours.mdb;"
    MM_conn_newland_STRING.Open
    %>
    The book uses a DSN and it has a seperate page for a
    connection:
    <%@LANGUAGE="VBSCRIPT"%>
    <!--#include file="Connections/conn_newland.asp"
    -->

    Just want to assure, u said that u want to insert date from the form. Do u mean that u want to insert the date into mysql database. But it came out with the error. Am I right?

  • Errors when trying to INSERT Dreamweaver CS3 ASP scripts into MySql

    Greetings everyone,
    I am hoping that someone can shed some light on an issue I have not been able to solve in the last few days. I have a website that I had built using Ultradev, then MX then CS3, using the default ASP scripts in dreamweaver and an odbc connection to an Access Database. Everything had been working fine for the last couple of years until recently where more people were visiting my site which resulted in the slowness because i was using access. I decided to move to a MySql database and that is when I ran into issues. I was able to solve most everything accept for one issue I am having. I was hoping it would be an easy transition by changing the ODBC connections but it has not been that easy. Any page I have with an INSERT command using the default Dreamweaver CS3 ASP script results in an error. Now I can query and delete and search with no problem...it is just the INSERT that is giving me issues. Here is just a general insertion script that CS3 does by default....
    <%
    If (CStr(Request("MM_insert")) = "form1")Then
    If (Not MM_abortEdit) Then
    ' execute the insert
    Dim MM_editCmd
    Set MM_editCmd = Server.CreateObject ("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_adsdata_STRING
    MM_editCmd.CommandText = "INSERT INTO commenthot (yeshot, userhot) VALUES (?, ?)"
    MM_editCmd.Prepared = true
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 2, 3, Request.Form("yeshotf")) ' adVarWChar
    MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 3, 30, Request.Form("useridf")) ' adVarWChar
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close
    End If
    End If
    %>
    When I click to submit...the error i run into is...
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
    /fr/members/sexyoupasvote.asp, line 28
    ....Line 28 is the MM_editCmd.Execute. I notice if I put a single quotes around the ? next the the VALUE like this ('?', '?')...it does go through and the ? shows up in both fields as the data.
    ....If i put a single back quote around the column names like this (`yeshot`, `userhot`) VALUES (?, ?) I get this error and nothing gets inserted into the MySql.
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' mel)' at line 1
    /fr/members/sexyoupasvote.asp, line 28
    ...by seeing 'mel)' show up, I know it is at least passing the data to that field.
    ....when I do (`yeshot`, `userhot`) VALUES ('?', '?')...
    it goes through and inserts ? ...instead of the real data I want to use...in this case ...the number 1 and Mel.
    ...if I do (yeshot, userhot) VALUES (?, '?')...
    I get this error...
    Microsoft OLE DB Provider for ODBC Drivers error '80040e21'
    Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.
    /fr/members/sexyoupasvote.asp, line 28
    ....any idea what to modify to make it insert the corect data? Has anyone experienced this? If I can get this fixed with just this page I can probablly fix the other pages that have teh same issue.  Is there a special setting on the MySql that I should know about to allow data to be inserted? Any help would GREATLY appreciated!
    Thank you!

    Thanks for your reply!
    When it was in Access...the datatype was Text. I used a 3rd party software to convert Assess directly to my hosting MySql server. When I logged in to see the table in MySql, it is set to Varchar(3) for yeshot and Varchar(30) for userhot. There is also an extra field I used for the KEY called commentID which is set to int(11) and it is autonumbered. Under the Collation i have utf8_general_ci set on the yeshot and userhot field. Null is No on both and the Default is set to None and all 3 fields.
    I have a form I am collecting that data from which is:
    <% If (langname.Fields.Item("langname").Value)="FR" Then
             response.write("OUI!")
             else
             response.write("YES!")
             End if %>
    <input name="yeshotf" type="radio" id="yeshotf" value="1" checked>                           
                                <span class="style10">
                                <input name="submit" type="submit" id="submit" value="VOTE!">
                                </span> -
    <input name="yeshotf" type="radio" id="yeshotf" value="2">
                                <% If (langname.Fields.Item("langname").Value)="FR" Then
             response.write("NON!")
             else
             response.write("NO!")
             End if %>
                                <input name="useridf" type="hidden" id="useridf" value="<%=(hotornot.Fields.Item("membername").Value)%>">
                                <input type="hidden" name="MM_insert" value="form1">
                              <input type="hidden" name="hdwfail" id="hdwfail" value="sexyoupasvote.asp?langname=<%=(langname.Fields.Item("langname").Value)%>&membernam e=<%=(hotornot.Fields.Item("membername").Value)%>&hdwmsg=invalid">
    </form>
    ....the form has 2 radio button and 1 hidden field where I collect the username. The radio value should either be a 1 or a 2 depending on the selection by the user. I also have a captha on the form but that does not seem the cause any problem since I am not collecting any data from it. Does this help? I left the yeshot field as Text but I can change that to Numeric data... again thanks for your assistance in helping me try to figure this out.
    ...The message I am getting now is:
    Microsoft OLE DB Provider for ODBC Drivers error '80040e14'
    [MySQL][ODBC 3.51 Driver][mysqld-5.0.67-community-nt-log]Unknown column 'Babe1' in 'field list'
    /fr/members/sexyoupasvote.asp, line 28
    ....with this setting:
    <%
    If (CStr(Request("MM_insert")) = "form1") Then
      If (Not MM_abortEdit) Then
        ' execute the insert
        Dim MM_editCmd
        Set MM_editCmd = Server.CreateObject ("ADODB.Command")
        MM_editCmd.ActiveConnection = MM_adsdata_STRING
        MM_editCmd.CommandText = "INSERT INTO dsnrenms.commenthot (yeshot, userhot) VALUES (?, ?)"
        MM_editCmd.Prepared = true
        MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param1", 202, 1, 3, Request.Form("yeshotf")) ' adVarWChar
        MM_editCmd.Parameters.Append MM_editCmd.CreateParameter("param2", 202, 1, 30, Request.Form("useridf")) ' adVarWChar
        MM_editCmd.Execute
        MM_editCmd.ActiveConnection.Close
      End If
    End If
    %>

  • Facing Problems with the Installation of Dreamweaver CS3

    Hello,
    I am facing some problem while installing Dreamweaver CS3 ..
    tried number of times but to no avail.. every time the same error
    message pops up "You can only install one product at a time. Please
    complete the other installation before attempting to install Adobe
    Dreamweaver CS3"
    I am pretty sure I am not installing any other Adobe product
    in parallel. I already have Adobe Flash CS3 on my system and its
    working pretty fine for me but I am not able to get around with
    Dreamweaver. Please let me know what I need to do to run this
    software on my system successfully.

    Adobe Install Problems 800-642-3623

  • Missing Form values in Bindings Panel in Dreamweaver CS3

    I've recently upgraded to Dreamweaver CS3 and have noticed
    that the form values for forms on the current page are not showing
    up in the bindings panel. I believe this was a feature added in
    8.0.2 -- it was great for binding a from value to itself on
    reloading (in the case the page submitted form failed server side
    validation) or for inserting form values into code.
    Does anyone know if this feature is still supported in the
    new version and how to turn it on -- there's no sign of it in my
    review of the online help.
    I'm working in ASP VBScript, and the bindings panel seems to
    be displaying the database recordsets on a page just fine.
    Thanks.

    Form elements don't automatically display in the Bindings panel. However, you can create form elements in the panel by clicking the plus button and selecting Form Variable from the menu. In a PHP site, this creates a $_POST variable with whatever name you assign to it.

  • ANN: Using Spry 1.6 with Essential Guide to Dreamweaver CS3

    It has been brought to my attention that most of the example
    files in
    Chapters 19 and 20 of "The Essential Guide to Dreamweaver CS3
    with CSS,
    Ajax, and PHP" don't work as expected after upgrading to Spry
    1.6. This
    is because Spry 1.6 handles HTML in CDATA sections
    differently. The
    solution is to add entityEncodeStrings:false to the options
    passed to
    the Spry XML Dataset. For details, see the book's updates
    page at the
    following address:
    http://foundationphp.com/egdwcs3/updates.php#spryhtml
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

    datasetname.setColumnType('row','html'); is also a solution.
    u can read more about it in the API.

  • I am getting and error with a panel in CS6 with configurator

    I get the zxp file to load into CS6 but I keep getting this error when I try to use anything IOError, "File or folder does not exist"
    I have built tons of panels in the other versions of configurator, but I am inporting one I did in version two and converting it. This is driving me nuts.
    Can anyone tell me where I am going wrong with this.

    You email is blocked. Just find it.
    1. The gpc file in you zip archive is not valid. It is not a text file, but a binary file.
    2. For the error "File or folder does not exist", I think it is because the jsx file cannot be found. There is a global variable "assetsPath", which points to the assets folder. You can evaluate a file by
    $.evalFile(assetsPath + "/LTS_Select Folder Of Images.jsx");
    If the panel is exported as "CS Extension" by "File->Export Panel As CS Extension", the jsx file does not locate at app.path.toString() + "/Plug-ins/Panels/Touch Flow/content/Touch Flow.assets/". Therefore, the jsx file cannot be found after click the Script button.
    The variable "assetsPath" works when the panel is exported as panel or exported as CS extension.

  • Error with Application Loader

    So I'm about to submit my app and I keep getting three errors in the Application Loader:
    1. /build/Debug-iphoneos/ .app is not a valid location for the app. It must be at the top of the archive
    2. Bundle identifier:
    ____.com.______.____ differs from the bundle identifier: com._____._______ and had it as the first one in info list but I changed it and it still gives me this problem...
    3. Application failed codesign verification. The signature was invalid or it was not signed with an Apple submission certificate.
    So this one I checked my distribution certificate to see if that was the problem and it said it couldn't find the certificate pair in my keychain so I deleted it and added it back on and it worked fine but it still gave me this error...
    Please help me!

    Hello, everyone
    I took advantage of the program www.apparchitect.com, after I made ​​it my new app, then I try to download the source file Payload.ipa using the Application Loader. Throws an error ERROR-9000, see screen shots. Please help me resolve this problem, thank you to those who will write step by step instructions on how to remedy this error. I am a novice developer.

  • CS6 deployment error with Application Manager Enterprise 3.1 Edition

    Hello everyone,
    I am currently trying to create a DesignWebPremium and Master Collection CS6 deployment package with AMEE 3.1 (Application Manager Enterprise Edition) on Windows 7 EE x64 without any luck.
    I keep getting the following error log:
    11/16/2012 06:35:51[INFO] AdobePackageBuilder - Build Version - 3.1.105.0
    11/16/2012 06:35:51[INFO] AdobePackageBuilder - Logging Level verbosity Set  to 4
    11/16/2012 06:35:55 [INFO] AdobePackageBuilder - Successfully retrieved TargetName from OptionXML.
    11/16/2012 06:35:57 [INFO] AdobePackageBuilder - Copied Setup file/folder (packages)
    11/16/2012 06:35:59 [INFO] AdobePackageBuilder - Copied Setup file/folder (resources)
    11/16/2012 06:35:59 [INFO] AdobePackageBuilder - Copied File (Set-up.exe)
    11/16/2012 06:35:59 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.db)
    11/16/2012 06:35:59 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.sig)
    11/16/2012 06:35:59 [INFO] AdobePackageBuilder - Copying the content of 1 disk
    11/16/2012 06:37:31 [ERROR] AdobePackageBuilder - Failed to create Setup.ini file for Acrobat Customized Wizard.
    11/16/2012 06:37:32 [ERROR] AdobePackageBuilder - Failed to create the zip file.
    11/16/2012 06:37:32 [ERROR] AdobePackageBuilder - Error zipping PkgConfig.xml.
    so I thought I could be smart and just take out Acrobat from the install package, but still no luck:
    11/15/2012 07:39:41[INFO] AdobePackageBuilder - Build Version - 3.1.105.0
    11/15/2012 07:39:41[INFO] AdobePackageBuilder - Logging Level verbosity Set  to 4
    11/15/2012 07:39:46 [INFO] AdobePackageBuilder - Copied Setup file/folder (packages)
    11/15/2012 07:39:48 [INFO] AdobePackageBuilder - Copied Setup file/folder (resources)
    11/15/2012 07:39:48 [INFO] AdobePackageBuilder - Copied File (Set-up.exe)
    11/15/2012 07:39:48 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.db)
    11/15/2012 07:39:48 [INFO] AdobePackageBuilder - Copied File (payloads\Media_db.sig)
    11/15/2012 07:39:48 [INFO] AdobePackageBuilder - Copying the content of 1 disk
    11/15/2012 07:42:10 [ERROR] AdobePackageBuilder - Failed to create the zip file.
    11/15/2012 07:42:10 [ERROR] AdobePackageBuilder - Error zipping PkgConfig.xml.
    I have tried creating the deployment package as both 32-Bit, 64-Bit, including updates and not including them, running AMEE 3.1 with administrative access and without - it just doesn't work...
    I'll be grateful for any constructive help.

    Hi,
    I just did come across this error today, and thought of sharing with the solution. This error is due to insufficient previlages of user, while he is trying to configure the hyperion Products. So all you have to do to solve this is, while you try to configure, right click on the configuration utility and run as administrator, and do the configuration as usual.This would solve this issue. I did not have this issue with Windows 2003 Server, but faced this while installing on Windows 2008 Server.
    Thanks,
    Leo Jose.

  • Problem with Preview panel in Bridge CS3

    Hello,
    I've got a problem and I don't seem to get rid of it.
    When I use the Adobe Bridge, everything seemds to work fine, EXCEPT... for the preview panel.
    It just keeps on showing a 'blank gap' or blank window, from where I can see a part of my Desktop through.
    I hope this picture makes it more clear.
    http://i36.photobucket.com/albums/e39/Stef_r/2009-02-08_000747.png
    Als, when I select a photo in Bridge, it doesn't show up in the preview panel. It just keeps on showing the freezed picture of the part of my desktop.
    I use Windows Vista on my laptop now, and that's were the problem is.
    On my old XP laptop, with much lower performance, it worked fine under Windows XP.
    http://i36.photobucket.com/albums/e39/Stef_r/2009-02-08_000843.png
    Does anyone recognise this problem or has a solution for it?
    I have allready tried reinstalling both my laptop with Vista as wel reinstalling the Adobe suite.
    Thanks for the responce!
    With kind regards,
    Stefan

    Thanks for the replies!
    Although I still haven't found the real problem for it, the preview panel keeps on freezing, I do have a wokaround found for it.
    Because I have a docking station for my laptop, with some free slots in it, I bought a second hand Video Card with 512MB and better performance than the on-board card in the laptop.
    I hooked up a external LCD monitor to it and now it works just fine, with no additional modifications in Bridge.
    So, although the Bridge / video card still occurs on the laptop, I don't mind working this way.
    Maybe a newer driver in the future will solve this problem.
    Kind regards,
    Stefan

  • Trouble with image restore on dreamweaver cs3

    I am a GoLiver trying to learn Dreamweaver. I am having a problem with image restore on the rollover.  Here is the url
    http://www.allthegills.com/meadowcroftweb
    Not sure where I went wrong.
    Thanks for any help.

    The onmouse over and out need to go in your href tag. You have them in your img tag. Should look like this
    <a href="index.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('index','','images/img_over.gif',1)"><img src="images/img.gif" alt="whatever" name="index" /></a>

  • Keychain error with .mac panel/can't turn on BTMM/etc.

    I just installed 1password today and the 10.5.3 update all at once this afternoon on my desktop and laptop. Everything is cozy on my MP, but my MBP is going haywire.
    When hitting .mac in the System Prefs pane, I get this error:
    http://www.davidlehmanphoto.com/temp/keychainerror.jpg
    Runs about 8 times or so, then I can access the panel, but it has already logged me out of .mac (I can log back in, but it just logs me right back out) and I can't turn on Back to my mac.
    Any ideas?

    *

  • Right panel in Dreamweaver CS3 is empty!

    Can someone please help me?  I used to have a list of files in the right hand panel but now the panel is empty and looks like the following picture.  What can I do to get it working again?  I need to update my website.
    Many thanks,
    Caryl

    Hi again John,
    You can see from this picture that the right hand panel only has "Tag Inspector" listed.  I don't know where all the other items have gone!  I hope you can help.

  • I cannot update ANY software.  I get an error with / applications.  How do I fix?

    I am currently using Mac OS X v10.5.8 and cannot perform ANY software updates.  Please help!

    Because I don't want to through good money after bad.  Up until this point the only apple produce I hadn't had issues with was my iMac and now after a few years it too has been added to the list.  You will have to excuse me as I have several issues going on with multiple products at this time.  I will try my best to keep them seperate.
    Will Snow Leopard solve this problem or will I not be able to download it like everything else?  Just this morning I had to get a new version of Adobe (which automatically uninstalls the current version) and was not able to install it.

  • Trouble with Dreamweaver CS3 Install

    Greetings all. I installed Dreamweaver CS3. After this, I had
    a system problem (unrelated) to which I had to do a system restore
    which went back to before Dreamweaver CS3 was installed.
    I now want to install The Web Premium CS3, but the install
    says I can't install Dreamweaver because of a conflict. There is no
    uninstall (in control panel) for Dreamweaver CS3 and there are not
    even any EXE files in it's folders (product of System Restore I am
    guessing?)
    How can I get this uninstalled so I can install the entire
    package?
    Thanks for the help!!

    What's the exact error message you're seeing? See if these
    help:
    Error "Installing Adobe Photoshop CS3 results in a conflict
    with Adobe
    Photoshop CS3" when you install Creative Suite 3 or Photoshop
    CS3
    http://www.adobe.com/go/kb401551
    Remove Creative Suite 3 and CS3 point products from Windows
    XP, Windows
    Vista and Mac OS
    http://www.adobe.com/go/kb401090
    kb401090 points to a Clean Script that will remove files and
    registry
    entries if Add/Remove Programs isn't working.
    David Alcala
    Adobe Product Support

Maybe you are looking for

  • Trying to create and use of a packaged class....

    Hi , I have created a directory and put there the generated class.... The dir structure is as: C:\oracle_files\Java\Examples\                               class_variables                               common_classes I have set the classpath to both

  • Account Determination at Company code level for an interface

    Hi All, We need an account determination table at company code level that will be used by an interface to find the GL accounts for a particular company code. This is required for interfacing certain GL documents onto SAP and the account determination

  • Front row is cool on my laptop, how do i get it on my mac pro?

    ???? Can I not download and install it - even without a remote (I have a keyspan remote, too bad that couldn't interface with it). Cool feature, but I'm usually farther away from my 30" display & Mac Pro than my laptop, so it's kind of wierd it's on

  • Problem Starting the Portal

    Hi All, We have installed EP7 sneak preview verson. It was running fine but today when we started it its not getting started .... Status of J2EE server is "Some Process Running" .. in SAPMMC ... Logviewer is giving error "Principal not found!" ... Ca

  • Restoring Default Permissions - security zones & applications

    Hi - We're running EP 6, SP 15 I have stupidly clicked the "reset child permissions" button on three top node folders in the System Admin > Permissions editor. Meaning, of course, that the initial login screen was disabled. While I appreciate how stu