Dreamweaver not connecting to mysql?

I have set up a database in MAMP which Dreamweaver was connected to and all worked fine. I have now copied that database in phpmyadmin via my hosting server and also uploaded all my files to my current (live) site and im now having connection problems, in the database panel in Dreamweaver there is a database present but no tables, when i open the mysql connection dialog box and try to select database or test it, it comes up with - 'unidentified error has occured'
Does anyone have any idea where i have gone wrong?

Ness_quick wrote:
I have set up a database in MAMP which Dreamweaver was connected to and all worked fine. I have now copied that database in phpmyadmin via my hosting server and also uploaded all my files to my current (live) site and im now having connection problems, in the database panel in Dreamweaver there is a database present but no tables, when i open the mysql connection dialog box and try to select database or test it, it comes up with - 'unidentified error has occured'
Does anyone have any idea where i have gone wrong?
Humm..Im not sure why you are looking in the Dreamweaver database panel for something on the remote site?
All you should have needed to do was export the database to a .sql file from your local copy of phpMyAdmin. Open the remote copy of phpMyAdmin and import it.

Similar Messages

  • Database error #2002 can not connect local mysql server to socket through '/var/run/mysqld/mysqld.sock'(2) on mac os x 10.9.2

    Dear Fellas:
    I received "database error #2002 can not connect local mysql server to socket through '/var/run/mysqld/mysqld.sock'(2)" on mac os x 10.9.2.
    mysql info:
    ps -ef | grep mysql
        0    66     1   0 11:06AM ??         0:00.04 /bin/sh /usr/local/mysql/bin/mysqld_safe --user=mysql
       74   225    66   0 11:06AM ??         0:02.50 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/Chuans-MacBook-Pro-2.local.err --pid-file=/usr/local/mysql/data/Chuans-MacBook-Pro-2.local.pid --socket=/var/run/mysqld/mysqld.sock
      501   952   947   0  3:52PM ttys000    0:00.00 grep mysql
    Please help!!

    Fascinated and guessing:
    Something related to sock(2) because that's not part of your copied info. I'm thinking you've doubled up on sockets and the second socket doesn't exist, meaning you should be connecting to the first socket "mysqld.sock" whether automatic or not.
    I've only used GUI tools on purpose, so does this mean you've already got MySQL running and you tried to launch it again manually? Perhaps you already have one instance of a db and you're trying to launch a second instance, and the two can't coexist with a single user local db?
    Assuming this is all local, I'd shut down the db service and restart it, out of hand. I've seen similar messages when I set the db to start up on boot, and it didn't finish shutting down when I tried to restart it manually. Usually the GUI won't let me turn it on because it reports it's already running, but in that case it hadn't finished performing what the GUI was reporting.
    Just speculating.

  • Servlet dos not connect to mysql

    Hi all I have been since 2 days trying to figure out why my servlet does not connect to the database MySql. I have mysql installed and working properly and eclipse. Whenever i try to etabilish a connection i get the ClassNotFoundException for the com.mysql.jdbc.Driver, which is actually properly imported, the connector i'm using is the mysql-connector-java5.1.14 added properly as external jar so everything seems fine. here's my code
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String dbUrl="jdbc:mysql://localhost:3306/test"; String username="root"; String password="";
    try { Class.forName("com.mysql.jdbc.Driver").newInstance(); conn=DriverManager.getConnection(dbUrl); System.out.println("Connected!");
    } catch (SQLException e) { e.printStackTrace(); System.out.println("not connected");
    } catch(ClassNotFoundException x){ x.printStackTrace();
    } catch(Exception e){
    e.printStackTrace(); }
    }The stacktrace(part of):
    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1645) at org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1491) at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:375) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:164)i'm following the connection steps from a published java book and also in forums and tutorials i just see the same code, cannot figure out why that Exception comes. On a normal application which does not run on the server the Exception isn't thrown and the connection (in the exact same way) its successfull. Do you have any advice?

    Try adding something like this to the top of your class as an test:
    import com.mysql.jdbc.Driver.*
    If the compiler produces an error for this line, your jdbc jar file isn't visible to your application (not in the classpath).
    If your using and IDE such as Eclipse, you can add it to the classpath as follows:
    Copy the jar file to the WEB_INF/lib folder of your project. Then right click on the project Icon in Eclipse, and then:
    properties->java build path->libraries->add jars
    Then select the jar file.
    Oter IDEs probably have a simliar setup.

  • Can NOT connect to Mysql

    Hi All
    Below is my code for a simple form which connects to Mysql. Problem is if I just connect to database and not have any other code (i.e Form) that works fine but when I try to connect with the form code, it gives me errors. why??? some help will be greatly appreciated thank you.
    Zed
    code
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import java.sql.Driver;
    public class PersonalInfo extends Frame {
    Connection conn=null;
    Panel Np = new Panel();
    Panel Sp = new Panel();
    public PersonalInfo(){
    NorthPanel();
    add(Np,BorderLayout.NORTH);
    SouthPanel();
    add(Sp,BorderLayout.SOUTH);
    public void NorthPanel(){
    Label LfirstName = new Label("First Name");
    TextField TfirstName = new TextField(20);
    Label LlastName =new Label("Last Name");
    TextField TlastName=new TextField(20);
    Np.setLayout(new GridLayout(2,1));
    Np.add(LfirstName);
    Np.add(TfirstName);
    Np.add(LlastName);
    Np.add(TlastName);
    public void SouthPanel(){
    Button Submit=new Button("Submit");
    Sp.add(Submit);
    Button Cancel = new Button("Cancel");
    Sp.add(Cancel);
    public static void connect(){
    System.out.println("MySQL Connect Example");
    String url = "jdbc:mysql://localhost:3306/";
    String dbName = "test";
    String userName = "c3031843";
    String password = "vw84a3";
    String driver = "com.mysql.jdbc.Driver";
    try {
    Statement stmt;
    ResultSet rs;
    Class.forName(driver).newInstance();
    Connection conn = DriverManager.getConnection(url+dbName,userName,password);
    System.out.println("URL: " + url);
    System.out.println("Connection: " + conn);
    System.out.println("Connected to the database");
    stmt = conn.createStatement();
    rs = stmt.executeQuery("SELECT * " + "from category");
    System.out.println("Display all results:");
    while(rs.next()){
    int Int= rs.getInt("cat_id");
    String name = rs.getString("category");
    System.out.println("\tid= " + Int + "\tstr = " + name);
    }//end while loop
    conn.close();
    System.out.println("Disconnected from database");
    catch (Exception e) {
    e.printStackTrace();
    public static void main (String[] args) {
    System.out.println("Personal information");
    PersonalInfo PerInfo = new PersonalInfo();
    PerInfo.setTitle("Personal Information");
    PerInfo.setSize(400,200);
    PerInfo.setVisible(true);
    connect();
    PerInfo.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
    System.exit(0);
    }Errors Code
    Personal information
    MySQL Connect Example
    java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:276)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
    at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:169)
    at PersonalInfo.connect(PersonalInfo.java:52)
    at PersonalInfo.main(PersonalInfo.java:80)
    Process completed.

    Warnerja thanks for your reply, like I said if I don't use any other code and just use like this;
    import java.sql.*;
    public class MysqlConnectionTest {
    public static void main(String[] args) {
    System.out.println("MySQL Connect Example");
    Connection conn=null;
    String url = "jdbc:mysql://localhost:3306/";
    String dbName = "test";
    String driver = "com.mysql.jdbc.Driver";
    String userName = "c3031843";
    String password = "vw84a3";
    try {
         Statement stmt;
         ResultSet rs;
    Class.forName(driver).newInstance();
    conn = DriverManager.getConnection(url+dbName,userName,password);
    System.out.println("URL: " + url);
    System.out.println("Connection: " + conn);
    System.out.println("Connected to the database");
         stmt = conn.createStatement();
         rs = stmt.executeQuery("SELECT * " + "from category");
                    System.out.println("Display all results:");
          while(rs.next()){
            int Int= rs.getInt("cat_id");
            String name = rs.getString("category");
            System.out.println("\tid= " + Int + "\tstr = " + name);
          }//end while loop
    conn.close();
    System.out.println("Disconnected from database");
    catch (Exception e) {
    e.printStackTrace();
    }it works like charm so I don't understand why there are errors once I put rest of the code in.

  • Can Dreamweaver CS5 connect to MySQL via ODBC?

    I am unable to make a direct connection to an external MySQL database because most hosting provider does not allow this type of connection due to security reasons. I am however able to make an ODBC connection to the database (which I am currently using to connect filemaker to our MySQL database).
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    I am on a Mac running OS X 10.6.4.

    GeorgeRudd wrote:
    How can I tell Dreamweaver CS5 to connect via the ODBC driver so I can see the MySQL content in my Dreamweaver project?
    You can't - at least not if you want to use Dreamweaver's server behaviors. Dreamweaver uses the original PHP MySQL extension. If you want to connect in any other way, you need to hand code everything yourself.
    On the other hand, if you want to see the contents of your remote database in Dreamweaver, define your remote server as the testing server. Dreamweaver uploads a hidden folder to the remote server to connect to the database. Because the script is on your remote server, it's local to the MySQL database, so gets round the security issue. It then sends the details to your local computer.
    A better solution, though, is to establish a local testing environment. It's more responsive and much more secure. http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html.
    By the way, the failure to get a reply is due, in part, to posting your question in the wrong forum. The forum for issues related to PHP/MySQL and other server-side technologies is http://forums.adobe.com/community/dreamweaver/dreamweaver_development.

  • Dreamweaver wont connect to mysql

    Hello,
    I am using Yahoo for my hosting service. They do not allow
    remote access to the database on there server. B/c I rely alot on
    Dreamweaver mx alot for building php pages to allow my cust to
    access the database I need to set up a mysql connection in
    Dreamweaver. I have installed mysql and php on my computer. I built
    a database w/ a simple table just to have to test the connection.
    Anyway, when I try to connect thru Dreamweaver in the database
    panel it gives me an unknown error. I cant figure out why! I thank
    any one who can assist me w/this.
    Thank you,
    Manda

    SexyManda85 wrote:
    > Hello,
    > I am using Yahoo for my hosting service. They do not
    allow remote access to
    > the database on there server. B/c I rely alot on
    Dreamweaver mx alot for
    > building php pages to allow my cust to access the
    database I need to set up a
    > mysql connection in Dreamweaver. I have installed mysql
    and php on my computer.
    > I built a database w/ a simple table just to have to
    test the connection.
    > Anyway, when I try to connect thru Dreamweaver in the
    database panel it gives
    > me an unknown error. I cant figure out why! I thank any
    one who can assist me
    > w/this.
    http://search.cc.yahoo.com/search?ui_mode=question&property=Yahoo%21+GeoCities&question_bo x=mysql+localhost%3F&Ask=Ask
    Mick

  • Can not connect to mySql database

    Hi,
    I created a database with tables on my company server.
    I programed a java GUI application to communicate the this database, i.e userlogin.java. Everything works perfectly. However, when I cretate a jnlp for this application, changing the and upload it as well as necessary java jar file to the company web space. Tthe program runs with Java web star but it seems that it get no data from the database. For example, when I type my username and password, it shows that there is no such username in the database which in fact my username exist in the database.
    Thank you.

    Thank you for your answer.
    I'm very new to mySql as server. When I was assigned to write the application, the administrator has set up mySql database in the company web server for my application. My program runs very when using my workplace desktop with java web start or run with java web start in netbeans (all paths should be link to my desktop hard disk, i.e. users/application/). I can not run the application at home because I can not access to the company intranet server (for security purpose). The problem happens when I post the application in the company web page (I have to modify all paths in jnlp file to the company web address). The program then runs without exception except it seems that it gets no data from the database.
    Please help me.
    Thank you in advance.

  • How to fix:  Database connection error (2): Could not connect to MySQL.

    Hi - I am trying to reconnect to a site and continue to get this message.  Can anyone suggest a fix for this?

    That's a server error and has nothing to do with your computer.

  • Connection error mysql database in Dreamweaver

    the error message is - HTTP error code 404 file not found. here are some possible reasons
    screen shot - http://netwizlk.site50.net/images/DW-error.jpg
    1)there is no testing server running on the server machine.
    2)the testing server specified for this site does not map to the http://localhost/_mmServerScripts/MMhTTPDB.php verify that the URL prefix maps to the root of the site.
    guy pls help me to solve this problem. I tried several times to connect my mysql database with dreamweaver but ended up having this error I reinstalled dreamweaver cs4 and XAMPP still the error is not rectified my both remote and local files are stored in XAMPP server location called in c:\xampp\htdocs\htdocs\myweb
    anybody who could give me a speedy solution for this issue will be highly appreciated thanks alot guys.

    c:\xampp\htdocs\htdocs\myweb
    MM serverscripts must be at the root level of the virtual server, that is directly in the htdocs folder.
    Mylenium

  • Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard

    Cannot connect from dreamweaver cs5.5 to mysql using the mysql connection wizard error Http error 403 or 500 internal server error. I am using ubuntu mysql.
    a manual php script work fine
    <?php
    // open connection to mysql server
    $dbc = mysql_connect('localhost','root','password');
    if (!$dbc) {
                die('Not Connected' . mysql_error ());
    //select database
    $db_selected = mysql_select_db ("msinventory",$dbc);
    if (!$db_selected)
            die('Cannot Connect' . mysql_error());
    echo "TEST DONE1";
    ?>
    but the database connection wizard fails with http error 403 or 500
    i also use the HeidiSQL client and it works, the only problem is in dreamweaver.

    OK.  Did you really mean to ask this question on a ColdFusion forum, if it's DreamWeaver you're having problems with?  You're probably better off raising this on a DreamWeaver forum.  "Using the correct tool for the job" 'n'all.
    Adam

  • Connection to MySQL via ODBC not working

    Hello all together,
    I've got a problem with the ODBC connection to MySQL. The connection via ODBC is established and things like tnsping are working.
    When I select some data within the SQL*Plus environment, I get no real result. For example "select table_name from all_tables@mysql;" returns nothing.
    My entry in listener.ora:
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME=odbc_mysql)
    (ORACLE_HOME=D:\oracle\product\11.0.1\db_1)
    (PROGRAM=dg4odbc)
    My entry in tnsnames.ora:
    MYSQL =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
    (CONNECT_DATA = (SID=odbc_mysql))
    (HS=OK)
    The initodbc_mysql.ora in ORACLE_HOME/hs/admin/:
    HS_FDS_CONNECT_INFO = odbc_mysql
    HS_AUTOREGISTER = TRUE
    HS_DB_NAME = hsodbc
    I tried some modifications but I still get no data from mysql database. When I try "select * from customer@mysql;" I get the correct number of records, the correct column names, but the content is always "¬¬¬¬". The odbc driver works, because with MS Access I can fetch the data. I'm using Oracle 11g Release 1 EE and MySQL ODBC 5.1.5.
    What could be the reason for this?
    Greetings,
    Joerg

    created in my UTF-8 Mysql DB your table and inserted a record; the select shows:
    SQL> select * from "movieclass"@mysql;
    idClass
    ClassName
    123
    H e l l o
    As you can see the content is there, the "space" between the letters is related to unicode. Each character is interpreted by 2 bytes and SQL*Plus wrongly displays both. Using iSQLPLus or SQLDeveloper does not show the "space" between the letters.
    Here the data type mapping:
    SQL> desc "movieclass"@mysql;
    Name Null? Type
    idClass NUMBER(3)
    ClassName NOT NULL NVARCHAR2(50)
    What's the exact version of DG4ODBC you're using? 11.1.0.7?
    According to the listener file you're using DG4ODBC on Windows. There was a high/low byte issue in DG4ODBC for Windows. This issue is fixed in 11.1.0.7 and a certain patch. So I recommend you to get first the 11.1.0.7 patchset (if you don't already have it installed):
    6890831 Oracle Database Family: Patchset
    11.1.0.7.0 PATCH SET FOR ORACLE DATABASE SERVER 11.1.0.7.0
    and then please apply also the latest patch:
    8689191 Oracle Database Family: Patch
    ORACLE 11G 11.1.0.7 PATCH 16 BUG FOR WINDOWS 32 BIT 11.1.0.7.0
    There was a high/low byte issue
    Edited by: kgronau on Aug 11, 2009 10:28 AM

  • Connecting a MYSQL database in Dreamweaver

    Hi All,
    I'm tryting to connect a mysql database based locally and am getting the error:
    HTTP Error Code 404 File Not Found. Here are some possible reasons for the problem:
    1) There is no testing server running on the server machine.
    2) The testing server specified for this site does not map to the http://localhost/_mmServerScripts/MMHTTPDB.php. Verify that
    the URL Prefix maps to the root of the site.
    What does this mean?
    How do I start the testing server? I'm unable to locate the folder where the database files are stored as the database has been created locally on my machine.  Everything hace been created locally so I know that point 2) could well be irrelavant.
    Please can somebody help?
    Many Thanks
    Gordon

    The functions for connecting to a database were mostly deprecated.  But if you enable them in CS6 Cloud/CC then they will be the same.

  • Error occured when connect to MySql Databse in Dreamweaver

    Hello! I met a problem when connect to Mysql Databse in
    Dreamweaver
    Details:
    My Php Environment: Php 5.2.2+ MySql 5.0.4 + IIS 6.0 + DW IDE
    + WinXP SP2,
    All necessary sevice started(Actually I have never stopped
    any Windows service).
    Php installed (IIS + CGI) and tested successfully in DW
    MySql Installtion(Typical Install with extensions ) and
    configuration are both OK.
    Configuration Details:
    For configuration type, select Detailed Configuration.
    For server type, select Developer Machine
    For database usage, select Non-Transactional Database Only.
    For the number of concurrent connections, select Decision
    Support(DSS)/OLAP.
    For networking options, accept the default settings.
    For the default character set, accept the default setting.
    For the Windows options, select both options – Install
    As Windows Service, and Include Bin Directory in Windows Path.
    For security options, enter a root password and confirmed.
    And then I Created a database "mydb" with 3 tables inside by
    "MySql Command Line Client",
    ...... (Approach Obmit here)
    Open "MySql Command Line Client":
    Type >mysql Show Database mydb;
    Show a list with 3 tables(Created Successfully)
    Then In DW,
    Open my Php webpage,
    Then from Database Panel>MySql Connection,
    Connect Name:myconn
    Mysql Server:localhost
    Username:root (Right)
    Password:111111(Right)
    Database:mydb
    Click "OK", but when DW tried to connect to MySql database,
    then DW popuped an alert dialog says "HTTP Error Code 502 Bad
    Gateway",
    I don't know what this mean and how to solve this problem,
    hope any PHP and DW expert can help me, thank you very much.

    Phoenix Wang wrote:
    > Click "OK", but when DW try to connect to MySql
    database, then popup an alert
    > dialog says "HTTP Error Code 502 Bad Gateway",
    > I don't know what this mean and how to solve this
    problem, hope any PHP and DW
    > expert can help me, thank you very much.
    How have you set up the Testing server in your site
    definition?
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • HELP!!!   Dreamweaver could not connect you to the remote server"

    Hi all,
    I have been struck by what seems a common problem with
    Dreamweaver/Contribute.
    I get this message when trying to “Enable Contribute
    compatibility” in Dreamweaver:
    “Dreamweaver could not connect you to the remote
    server. You cannot perform Contribute administration tasks without
    a connection to a remote server. Please fix the remote connection
    before continuing.”
    I have read that DW will try to write and delete a file to
    confirm the connection… When I look at the FTP log of DW, it
    confirms that the Temp file has been written and deleted.
    So, it has in fact connected to the remote server...!
    Things I have done to try to eliminate errors includes:
    • Ensure Contribute is not open on the PC.
    • Contacted my ISP to ensure that “/” is
    the “Host directory”
    • Modified the URL in each of the tabs listed below
     Including the Base web address
    Below are the settings I have selected in the Site definition
    window:
    Local info:
    Local root folder: v\website\
    Links relative to Document:
    Http address:
    http://www.website.com
    Remote Info:
    Access FTP
    FTP Host www.website.com
    Host directory /
    Contribute:
    Rollback enabled: Currently off
    CPS enable Currently off
    Site URL:
    http://www.website.com
    I have spoken to my ISP: www.webcentral.com.au
    • They have confirmed that Contribute is used on their
    products by other users.
    • They also stated that they sell Sharepoint as their
    CMS option
    What other things can I try to eliminate this problem?

    Hi,
    Can you please try adding the DNS in your machine where DW
    is running?
    Steps to add:
    1) In the Network Connections, right click Local Area
    Connection.
    2) Select Properties.
    3) Select Internet Protocal (TCP/IP) and click Properties
    button.
    4) Select the radio button Use the following DNS server
    addresses and provide your preferred DNS and Alternate DNS server
    addresses.
    5) Click Advanced button and select DNS tab in the Advanced
    PCT/IP setting dialog.
    6) Select the radio button "Append these DNS suffixes (in
    Order)" and add the values and also add DNS suffix for this
    connection.
    7) Click ok and close all the dialogs.
    Hope this helps.

  • Dreamweaver cs3 FTP Fault - Not connecting anymore

    Hi,
    I hope someone may know the cause of this wierd problem
    My dreamweaver cs3 has just stopped connecting to server for
    any of my sites
    (i got over 100 sites and tried quite a few).
    My other ftp program external to cwcs3 is fine and continues
    to work. This
    using the same connection settings as dwcs3 site profiles.
    Nothing has
    changed on my dwcs3 profiles but yestarday I had the daylight
    saving problem
    (and last year) where i had to delete the cache file as per
    adobe tech doc.
    DW no longer crashing but i think this ftp not connecting is
    only since
    yesterday.
    I have also installed the various windows updates that came
    out recently.
    The other machines in the office continue to work fine. All
    machines import
    the same saved profiles, but if i remove the site profile and
    reimport it
    still dosent connect, but repeating this on another machine
    works without a
    problem.
    All machines in this floor have Vista Business/ CS3 web suite
    connecting to
    a windows 2003 standard ed server running iis and
    iis/microsoft ftp server.
    Same result with windows firewall disabled. Only other
    security app is NOD
    anti-virus, again all machines are the same.
    All i get is an error telling me to try passive etc, but i
    know this isnt
    the fault as the other machines with the same settings are
    fine..
    here is a copy of the ftp log after trying to connect,
    selecting a file, and
    selecting put.
    < 220 Microsoft FTP Service
    > USER mmdftp
    < 331 Password required for mmdftp.
    > PASS
    < 230 User mmdftp logged in.
    > PWD
    < 257 "/mmdftp" is current directory.
    > PWD
    < 257 "/mmdftp" is current directory.
    > CWD /mmdftp/carrs-billington.com
    < 250 CWD command successful.
    > MKD MM_CASETEST4291
    < 257 "MM_CASETEST4291" directory created.
    > CWD /mmdftp/carrs-billington.com
    < 250 CWD command successful.
    > RMD mm_casetest4291
    < 250 RMD command successful.
    > CWD /mmdftp/carrs-billington.com
    < 250 CWD command successful.
    > PWD
    < 257 "/mmdftp/carrs-billington.com" is current
    directory.
    > QUIT
    < 221
    > CWD
    /mmdftp/carrs-billington.com/mmdftp/carrs-billington.com
    < 220 Microsoft FTP Service
    > USER mmdftp
    < 331 Password required for mmdftp.
    > PASS
    < 230 User mmdftp logged in.
    > PWD
    < 257 "/mmdftp" is current directory.
    > PWD
    < 257 "/mmdftp" is current directory.
    > CWD /mmdftp/carrs-billington.com
    < 250 CWD command successful.
    > PWD
    < 257 "/mmdftp/carrs-billington.com" is current
    directory.
    The file "/mmdftp/carrs-billington.com/Company.asp" was
    skipped because the
    old remote file could not be deleted.

    If i was that anal about cpu overhead, would i be using
    dreamweavers built
    in ftp with its feature 100%cpu usage. Even on my core 2
    extreme 9000 cpu!!
    Thanks for the links, but everything in them has been ruled
    out. The issue
    is clearly not a setting within dw. Its some sort of windows
    firewall
    corruption
    Even running wf.msc (advanced win firewall config) provides
    no clues
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    >> why on earth?? why on earth not!
    >
    > If you are connecting via a router, wherever you are,
    you do not need a
    > firewall. Firewalls add overhead to your CPU and can get
    in the way of
    > other things, unexpectedly.
    >
    >> What puzzles everyone is why is still happens even
    with windows firewall
    >> disabled (even not behind any firewall or router wen
    tested with usb
    >> broadband via vodaphone)
    >
    > Disabling a firewall is sometimes like disabling Norton
    AntiVirus.
    > Neither of those will ever see the light of day on my
    computers! 8)
    >
    > Anyhow, you may find this useful -
    >
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_14834&sliceId=2
    >
    http://kb.adobe.com/selfservice/viewContent.do?externalId=tn_19012&sliceId=2
    >
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "RyGa" <[email protected]> wrote in message
    > news:[email protected]...
    >> why on earth?? why on earth not!
    >>
    >> This is a laptop and only sped 60% of its life in
    the office. All
    >> machines in here are identical an this is the first
    problem with this
    >> setup in over 4 years out of 23machines. so i doubt
    its a security issue.
    >>
    >> I have also discover renamining the dreamweaver
    folder allows dream
    >> weaver.exe to function ok. whatever is causing the
    problem it is tied to
    >> the full path.
    >>
    >> Our it people have also copied renamed cuteftp to
    match the same path/
    >> exe name and it too fails to function but renaming
    the exe back to its
    >> proper cuteftp name allows it to work.
    >>
    >> What puzzles everyone is why is still happens even
    with windows firewall
    >> disabled (even not behind any firewall or router wen
    tested with usb
    >> broadband via vodaphone)
    >>
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>> So - you are running Windows Firewall AND a
    network firewall? Why on
    >>> earth?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>> ==================
    >>>
    >>>
    >>> "RyGa" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> Ok, im getting some where with this...
    >>>>
    >>>> I found this thread
    >>>>
    http://dreamweaverforum.info/dreamweaver-general/20168-dreamweaver-ftp-suddenly-stops-work ing.html
    >>>>
    >>>> which had this solution:
    >>>>
    >>>> The problem was in Windows Firewall, which
    did not recognized the
    >>>> Dreamweaver on some way even it was removed
    from the Windows Firewall
    >>>> exceptions.
    >>>>
    >>>> The solution is a bit tricky:
    >>>> 1. Remove the Dreamweaver from the Windows
    Firewall Exceptions
    >>>> 2. Copy & Paste Dreamweaver.exe on the
    Program
    >>>> Files\<Macromedia|Adobe>\Dreamweaver\
    directory to a new executable
    >>>> filename (e.g. Dreamweaver2.exe)
    >>>> 3. Run the renamed program. After the first
    FTP connection Windows
    >>>> Firewall will ask for permissions for
    connection
    >>>> 4. Close Dreamweaver and run original
    executable. SOLUTION: Windows
    >>>> Firewall will ask for the permision.
    >>>> 5. Remove Dreamweaver2.exe from WF
    Exceptions
    >>>> 6. Enjoy developing and uploading new sites
    >>>>
    >>>>
    >>>> Now as i said previously, I have tried
    disabling the windows firewall
    >>>> but to no avail. but however, renaming (and
    coping to a different exe
    >>>> name) the dreamweaver.exe file allows me to
    launch the newly named file
    >>>> and ftp works fine.
    >>>>
    >>>> But following the solution above makes no
    difference if i run the
    >>>> original exe, I dont get to re-add to
    firewall exceptions even though
    >>>> it isnt there anymore, and the dw still
    refuses to play ftp.
    >>>>
    >>>> I think this is a corruption of some sort
    with windows firewall.
    >>>>
    >>>> Id like to get to the bottom of it though,
    because after googling for a
    >>>> while i see lots of others are having the
    exact same issue. Even if the
    >>>> problem is windows firewall related and dw
    is innocent in all this, its
    >>>> still good to have a solution for anyone
    else to follow.
    >>>>
    >>>> I dont think leaving the dreamweaver.exe
    called dreamweaver2.exe is it
    >>>> as this breaks all the current registry
    references to the proper file
    >>>> name.
    >>>>
    >>>>
    >>>>
    >>>>
    >>>>
    >>>>
    HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Services\SharedAccess\Parameters\FirewallPolicy\F irewallRules
    >>>>
    >>>> "Dooza" <[email protected]> wrote
    in message
    >>>> news:[email protected]...
    >>>>> RyGa wrote:
    >>>>>> I should have mentioned. Last night
    i took my laptop home as i do
    >>>>>> quite frequesntly.
    >>>>>>
    >>>>>> The problem remains even though in a
    completely different
    >>>>>> environment, so that rules out
    network at work.. I even tried
    >>>>>> disabling all security apps (win
    firewall, nod and even that win
    >>>>>> defender)
    >>>>>>
    >>>>>> My cuteftp using the same login
    credentials (exactly the same)
    >>>>>> continues to work without a problem.
    >>>>>>
    >>>>>>
    >>>>>> I have this morning went through the
    site area of the dreamwaever
    >>>>>> options and double checked they are
    the same as the machine nearest
    >>>>>> me and they are.
    >>>>>>
    >>>>>> still no joy..
    >>>>>
    >>>>> Very odd indeed, maybe backup all the
    site files and re-install
    >>>>> Dreamweaver? Its a last ditch effort
    though, as its a very strange
    >>>>> problem.
    >>>>>
    >>>>> Dooza
    >>>>
    >>>
    >

Maybe you are looking for

  • Importing error - from iMovie to iMovie

    I have two iMovie projects. I want to import one of 5 clips from Project One into Project Two. But I get an error when I try to import Clip 01: "The file Clip 01 is the wrong video standard and cannot be imported in this project." I can import the ot

  • Problem starting a reggie service in jini

    Hi, I am trying to start a reggie service as follows. I set classpath and then start java -jar C:\jini2_1\lib\tools.jar -port 8083 -dir C:\jini2_1\lib -verbose The result is : Dec 8, 2005 10:11:16 AM com.sun.jini.tool.ClassServer run INFO: ClassServe

  • HTMLDocument.getText() issue: HTML tag br is translated to ' ' (space)??

    HTMLDocument.getText() issue: <br> (HTML.Tag.BR) is translated to ' ' (space), but I've expected the '\n'! I have the HTMLDocument that contains <html><body> <br> <br> <br> SOMETEXT <br> </body></html> The JTextPane is perfectly showing this formatti

  • No of RFC connections for a period of time

    Dear all, Is there any possibility to find the number of RFC connections hit to a server  over a certain period of time? I could not find any more details using AL08 since it gives the cumulative users rather than specific user type. Regards, Kumar E

  • WHY DOES SYNCING ALL DAY EVENTS WITH MOBILE ME ADDS EXTRA DAY?

    I have 3 computers and an iPad that I sync with MobileMe. Recently I made a calendar entry (All Day) and all of the calendars on my computers synced perfectly. The iPad, however, added an extra day so instead of having an All Day event that began on