Help w/FTP and manage site

I am trying to get to my Comcast personal web site and I am
trying to use Dreamweaver to create the site. When I login to the
site on IE/FireFox useing the FTP address ftp://upload.comcast.net/
I get in OK but in DW 8.0 I go to manage site and enter in all of
the same info I use in IE/Fire Fox or even Front Page and I get
that DW can not connect and the following Error:
AN FTP Error occured. Cannot make a connection to host. The
remote host cannot be found. If I try it on another commercial site
I maintain and I get the same results. Is there a way to check my
DW 8 to confirm it is working correctly?

Please go to SITES | Manage Sites..., select the site name,
and click on
Edit. Click on the Advanced tab at the top. Tell me the
following -
Under LOCAL INFO
The contents of "Local root folder:"
Under REMOTE INFO
What happens when you press Test?
The contents of "Host directory:"
Thanks!
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"tripleo" <[email protected]> wrote in
message
news:ej4vth$h0a$[email protected]..
> Hi I am having a problem with FTP and Dreamweaver MX.
>
> I can log in correctly, the ftp connects to my webhost
and everything is
> fine
> however when i want to upload a page or something for my
site. it gives me
> these errors:
>
> ERROR1
>
> dreamweaver cannot determine the remote server time.
> the select newer and synchronize commands will not be
available.
>
> ERROR2
>
> an FTP error occurred - cannot put FILENAME.
> 500 Unable to service PORT commands.
>
> Can anybody help?
>

Similar Messages

  • DW CS5.5 "Put" cannot ftp but Manage Site Test can

    In DW CS 5.5 Build 11.5, clicking on "Put" or "Get" generates the error message "An FTP error occurred - cannot make connection to the host" but at Site>Manage Sites>Server>Test, I get "Adobe DW CS 5.5 connected to your Web server successfully". Is there more than one place in DW to configure FTP? Thank you.

    After not working for a week, suddenly today DW works. "Put" and "Get" both connect. The only thing I did in the interim was successfully run Site>Manage Sites>Server>Test several times over several days. I am grateful for whatever fixed the problem, but I cannot explain it.  I thank those of you here who read and considered my question. 

  • Help with local and remote site setups

    i've always use dreamweaver to point directly to the dev server files and edit them, save them, and run them. i was the only developer for some time but now we have other developers onboard and we started experimenting with using subversion.
    i need to understand how i can leverage the local site and remote sites with subversion so that we arent editing the remote files directly. ive played around with the setting and i think i need to GET the files and have it copy to my local site. however i cannot RUN the files since i dont have Coldfusion on my local machine its only on the DEV server. I used to make a change, press F12 to run the file and could see my changes. can anyone point me in the right direction?

    First, move the styles from the form generator to the <head> of your document.  Otherwise there is a possibility browsers could ignore the invalid code.
    Then move your form div inside the banner div and set the attribute float:right; in your CSS for the form div.  Then you should be good to go.

  • HT1351 Help! Syncing and managing problem

    My Ipod will literally not sync or allow me to play the music off of my playlist on one of my authorized computers; it won't even allow me to manage it, or automatically sync/ update new music on the computer I had originally synced it with. What is going on? I would like to be able to add new songs I have purchased from the itunes library to my Ipod! Help!

    Hello kdanos,
    It sounds like you are not able to add new music to your iPod nano.  If you have synced your iPod nano with another computer, you may need to enable manual mode:
    If you want to keep the music library on your device, but copy songs or playlists from the music library on the second computer, click Cancel when the dialog box appears, and then set your device to manual mode.
    When in manual mode, to add songs or playlists, drag them from iTunes to the device icon in the sidebar. To remove songs or playlists, select them on the device in iTunes and press the delete key. You can also create playlists directly on the device.
    You can find all the steps under the section titled "Manual Mode" in the following article:
    Using iPhone, iPad, or iPod with multiple computers
    http://support.apple.com/kb/ht1202
    If you are still having trouble with syncing content after enabling manual mode, I recommend following the steps in the troubleshooting assistant the iPod nano.  I wasn't sure what generation of iPod you have, so just click on the model you have in the following link to get the steps for your model:
    iPod Troubleshooting Assistants
    http://www.apple.com/support/ipod/five_rs/
    Thank you for posting in the Apple Support Communities.
    Best,
    Sheila M.

  • Using Search Help with ALV and Dynamic context node

    The topic subject already describes my situation.
    I have to create, populate and remove context nodes at runtime, and bind them to an ALV, to let user display the data or modify the data. The nodes I create are always typed with a table name, but the table name is of course, dynamic.
    This is all working: what's not working is help for entries inside the ALV; since the table has foreign keys and domains with check tables or fixed values, I expected that search helps were detected and managed by the framework.
    Instead, no help search is displayed except the input help based on data-type of the one "Date" input fields.
    I think I have to work on the dynamic node creation, and not on the ALV itself, since the latter only takes the node/attributes information, but i could be wrong. I tried with both the two following codings:
      CALL METHOD lo_nd_info_root->add_new_child_node
        EXPORTING
          static_element_type          = vs_tabname
          name                         = 'SAMPLE_NODE_NAME'
    *    is_mandatory                 = abap_false
    *    is_mandatory_selection       = abap_false
         is_multiple                  = abap_true
         is_multiple_selection        = abap_false
    *    is_singleton                 = abap_false
          is_initialize_lead_selection = abap_false
          is_static                    = abap_false
        RECEIVING
          child_node_info              = lo_nd_info_data .
    cl_wd_dynamic_tool=>create_nodeinfo_from_struct(
          parent_info = lo_nd_info_root
          node_name = 'SAMPLE_NODE_NAME'
          structure_name = vs_tabname
          is_multiple = abap_true ).
    The result is the same...is there any way to let the ALV know what search helps it has to use, and doesn't force me to manually build a VALUE_SET to be bound on the single attributes? There are many tables, with many fields, and maintaining this solution would be very costly.

    I have checked with method GET_ATTRIBUTE_VALUEHELP_TYPE of interface IF_WD_CONTEXT_NODE_INFO, on an attribute which i know to have a search help (Foreign key of a check table).
    The method returns 'N', that is the constant IF_WD_VALUE_HELP_HANDLER~CO_VH_TYPE_NO_HELP. So, the framework was not able to find a suitable search help.
    Using method GET_ATTRIBUTE_VALUE_HELP of the same interface, on the same attribute, returns me '111', which is constant C_VALUE_HELP_MODE-AUTOMATIC.
    Therefore, the WD framework knows it has to automatically detect a value help, but fails to find one.
    Also, this means in my opinion that the ALV and the dynamic external mapping are not the culprits: since node creation, no help is detected for any attribute but the date. Honestly, I don't have a clue on what's happening.

  • How can I find out the server port for a secured FTP site and creating a FTP Connection Manager

    I have to create a FTP Task to go out and get the files that our 3rd party vendor will be dropping on a secured FTP site. I have all the credentials to access that Secured FTP Site and have successfully done so through FileZilla.
    Now I need to set-up a FTP Task to go out and get their files and in so doing create a FTP Connection Manager. Is there any way I can determine the
    Server Port number from the Secured FTP site? I let it default to 21 and tried the Test Connect and it failed.
    Thanks for your review and am hopeful for a reply.

    Hi ITBobbyP,
    SSIS has a built in FTP task, while this only works for the FTP protocol, it doesn’t support SFTP. But there are some free clients like WinSCP and
    SSIS SFTP Task Control Flow Component
    available in the CodePlex which can invoked from SSIS.
    References:
    SSIS SFTP Task Control Flow Component approach
    WinSCP approach
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Manage Sites/FTP: Can't see site files in local view.

    Dreamweaver 5.5
    Mac OS X.6.8
    I have several sites set up in Dreamweaver. All are working correctly except one. This one site I moved files using Finder into a deeper directory and then moved them back up to the top level directory. I have been working with the site since and saving, so that's not the issue. I am mentioning it because that is the only unique thing about the site that isn't working.
    When I look at the site in the Files panel, I can see the directory I set up in Manage Sites but no files inside it. If I put all to my remote site, 0 bytes are transferred.
    So far I have
    1. removed the site and created a new one.
    2. Closed the app, blown away Drmwvr prefs, and reopened. The site is still there, so that prefs file doesn't cover it.
    Any ideas? I cannot FTP files to my host if Dreamweaver doesn't "see" the files I need to put.
    Thx
    Jacqueline

    2000sowell wrote:
    Dreamweaver 5.5
    Mac OS X.6.8
    I have several sites set up in Dreamweaver. All are working correctly except one. This one site I moved files using Finder into a deeper directory and then moved them back up to the top level directory. I have been working with the site since and saving, so that's not the issue. I am mentioning it because that is the only unique thing about the site that isn't working.
    When I look at the site in the Files panel, I can see the directory I set up in Manage Sites but no files inside it. If I put all to my remote site, 0 bytes are transferred.
    So far I have
    1. removed the site and created a new one.
    2. Closed the app, blown away Drmwvr prefs, and reopened. The site is still there, so that prefs file doesn't cover it.
    Any ideas? I cannot FTP files to my host if Dreamweaver doesn't "see" the files I need to put.
    Thx
    Jacqueline
    Moving files in Finder is fine as long as you can follow the moves in your files panel. Troubles start when you move files outside of DW and then can't keep up with them. Broken links, orphaned pages, etc.
    In Sites>Manage Sites you need to Edit the site in question and browse to the new root folder location. Then browse to the images folder and SpryAssets folder if you have one. Once you have redefined the site with the proper locations, the files will appear in the panel in DW.
    As long as you haven't deviated from the correct structure on the server, you should be able to put files and they will upload.
    As a rule, when moving or renaming files in a defined site, do it from within the Files Panel in DW, not in Finder. DW will update links and pages when you do and things will go much more smoothly.

  • Updated DW CS6 and now I can't FTP to any site

    Good morning,
    I have been using DW CS6 for a long time without problems accessing multiple sites with FTP. I just downloaded the latest DW CS6 update version 12.0 build 5861 and the update appeared to go OK. Now I find I'm unable to FTP to multiple sites, it fails with an error message "An FTP error occurred - cannot make connection to host". I contacted one of the hosts and their tech support said my params were correct and they were able to access my site using filezilla.
    I tried deleting my cache - no luck and also my configuration folder - same failure message. This happens on multiple sites with multiple hosts so I think the problem is with DW. Could anyone suggest how I can fix this?
    Thanks,
    Tony

    Thanks Ben,
    Nice to hear from you again.
    I reviewed the suggestions and have tried them all - I didn't delete the site from Site Manager but tried creating a new site with a different name and nothing worked. I also tried downloading filezilla and connecting using that and had a similar message
    Status: Connection attempt failed with "EACCES - Permission denied". So, two different programs can't connect to the site with FTP. DW also can't connect to several other sites hosted by two different firms.
    The site is hosted by GoDaddy so I went to the GoDaddy Control Panel and tried uploading a couple of files using their file manager and that worked. So it seems like the site is OK - GoDaddy tech support said they could connect using filezilla. Looks like the problem is in my PC somewhere as two programs can't connect using FTP. I have no idea where to look next. All I can think of is to uninstall DW then re-install from the original CD and not update it - ever as I'm pretty sure the update caused these problems. Do you have any other thoughts?
    If you'd like to try I can PM you the ftp info.

  • Sites (in manage sites) missing AND folder unreadable?

    All right, so I finally had the dreaded disappearance of all my sites in the "Manage Sites" section of Dreamweaver (CS4/Mac). I've read the notices and see now that it's a bug that's never going to be fixed . . . and, of course, I didn't back up the .ste file 'cause I just didn't see it coming.
    That said, I went to start redoing the sites and started by opening the "Files/Assets" window in DW . . . then ran into a strange problem.
    All our web sites are stored in the "WEB SITES" folder in the "GRAPHICS" folder on our "BIG HARD DRIVE."
    However, when I went to open up some pages in our stored sites, the "GRAPHICS" folder, in the Dreamweaver menu, doesn't show up as a Folder . . it's shows up as a 0k file.  I can go to "file open" and navigate to the GRAPHICS folder, no problem . . .and all the files are there and open up. However, I can't access it through the manage sites part of the "files" window.
    Is this making sense?  I've attached a screen capture . . .
    Any help would be greatly appreciated.
    Stu

    I'm pretty sure that they are all lost if you hadn't backed
    up all sites
    previously.....
    it's all kept in the registry somewhere, but difficult to
    retrieve I
    believe.
    You may find this tool very useful from now on -
    Backup everything using the MM Exporter:
    http://mm-exporter.joexx.de/
    Nadia
    Adobe� Community Expert : Dreamweaver
    http://www.DreamweaverResources.com
    - CSS Templates|Tutorials
    http://www.csstemplates.com.au
    http://www.perrelink.com.au
    - Web Dev
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    "nosummers" <[email protected]> wrote in
    message
    news:e928cg$11b$[email protected]..
    > Hi, I hope someone can help...
    >
    > A few days ago I could see all my defined sites listed.
    > Now only 6 of about 16 are there.
    > I have looked in... C:\Documents and
    Settings\Richard\Application
    > Data\Macromedia\Dreamweaver MX 2004\Configuration
    > ...and they are all there as folders with corresponding
    .dws files but as
    > I
    > didn't back them up before I do not have .ste files to
    import back in.
    >
    > Does anyone know of a fix for this, please?
    >
    > If not is there a way I can extract the passwords from
    the .dws files?
    >

  • Moving pages using Manage Site content and structure is corrupting the version history

    Hi,
    I am using share point 2010 manage site content and structure feature to move pages from one sub site to other. After doing several edits and check ins of a page and if I try to move the page using manage site content and structure , the version history
    is corrupted in the destination site (i.e., all the versions are not showing).
    Note: Sometimes content is also getting replicated after performing move operation.
    Is it a Bug/ Known issue in SharePoint?
    Any info on this issue is very helpful to us.
    Thanks in advance!!

    Hi,
    Using Site Content and Structure unable to move documents,pages and getting weird error message
    We are getting Below error:
    When Moving Document items from one site to another site in the same site collection using Site content and structure(But it's working in same site,we can move documents from one library to another library)
    1576|/wEWwwECuLLErw0Cy+nFYwK84baBAgK6zNqsAgLs0Le0BQK1s8uaCAL5qrm3CAKk7K6pDwKo9a0GArm+xr4NApKe9KUKAoajpK4CAqqU/2sChJXBtAIC052rYQKS+LTPAgLe+7uQAwLO0re/BwLgoaw2AojAlIMOApSO4JoNAuvW7MoKAojz2P4OAuOMt9EGAv/ns1wC64qI7gEC0LymmAcCro3lnQkCj7viwAsC8Met9QEC3a/DHALg4ZO6AQKAn8ebCALvr72DAwKm/NGmAgKN4aayCQLmmczsCgL+46qSAQKH7paCDgLouOHjDwKGuNCBCQKwuob2CQKP78n3BwLQ7vSYCALxlcvIBALRuajXAwK6/vr4AwKx8YasCQLti5igAQKay7JZAta625IFAuTy6rUKAvnC7eQKApvB3ugPAoTBua8BAoyajvgMAsGdloEJAvH+2KECAua7k9AGAv3Lzd8HAtPD3ocOAuX7hM4GAqO1g9sIAtn65sgFAuDkr9QEAt7I1KkMAryhltsIAtizx/kBAvzS7IcBAr+YhK4PAsO3rtADAvea+sADAsvc4IgKAp/1vIoMApelp3ICl+PqiwwC/KX1gwUC3fv58gIC7ZG/pwIC4cnupQgCq7mdlgYCjciR+AwC8/ue4gkC4YWJywUCs+rviAECpuyJigECkfr5rgkC08rHoQ0C+erayQUCjMqStQkCpIuKtwEC+dG5ngICoZ3/og0CspXoxwwC+pzgmwwCkoD5mAYCn/qH2AcC/N/pvAcCv5OtwAICuZquqgcC0/OFnwkC2/2wzQMCrJrO9woC69G52ggC64nunggCtLOIsQEC9LyC7gUC0ry/zgIC1ZDvgQ0C98OfMgL4kaj3CQKXhebCCwKi3bjPBQKYuojTCAKc4+fxCAKyjLfoBALVxO8SAsXSyuQLAqyvkNIPApDV5PgDAtufwJwEAu2BsoYLAs3Oqd8PAo6i+YMDAsy706oCAsLjx7kLApu3+9gKAuLnvMoIAtWywo8OAv6MjvIHAtSDhJwNArXRmL0LAraZvUcC5cGygQoCz5HN7A0C+YzY9AMCmtWQ6AUC/oHF8w4CxeTgmg8CgszujQECss22vgYCp6HBuggCkfm+FAKngqb5BgKkuIzAAQKPspKCCQLu+eDvCwKf5YrEBQKl0M3ACgKm85DvDALCu/nfCwLbwO38DgLoz5eyDQLfr9XLCwL20/eUDgL7hpr3DAKh1tfbCgL48OuNBwK4tuKaCALpgbn5CgLC4dKvBgKKlu76CwKfhKLJAQLurPTIAwLG0o+hAgKI5Y6dDALq+OOlCQKxjuuICAK8yrLHBwLcrOSSAwLoiJfQCwKKyvrtBALXkbCBCgKt4bG9BQLr6qnxCwLC2pz2DQKQ7OuZBALt7t+DDAKR47b8CAKi6pPGCQKLl4r3CQK5yfj+AwLgzYvjDwKUjerODQK7mOPTCQL9qP3qBgKYiOL9AgLA8pSaBwKay8fBDQLqw93DCgKkjpf/CwLsyquQCwKtpbGsDALMtKmxBwKPpvCmBOAFHtmBuG3iNmIT9fQ8Z1TWMpjZ122|cccccccccnncnnnnn|

  • I have been connecting my external HD to my Mac for 2 years, no problem at all. Yesterday, I could not connect it and appeared the message: USB ports disconnect due to energy. I already checked many blogs and this site for answer. Can someone help me

    I have been connecting my external HD to my Mac for 2 years, no problem at all. Yesterday, I could not connect it and appeared the message: USB ports disconnect due to energy. I already checked many blogs and this site for answer. Can someone help me? How can I fix it?

    Hi, clara_from_brazi.
    Thank you for visiting Apple Support Communities.
    Here are some troubleshooting steps that I would recommend when experiencing this issue.  Also, test connecting the external storage device to the computer with another cable as this can be the issue.  
    OS X Mavericks: Reset your computer’s PRAM
    http://support.apple.com/kb/ph14222
    Intel-based Macs: Resetting the System Management Controller (SMC)
    http://support.apple.com/kb/ht3964
    Apple Computers and Displays: Powering peripherals through USB
    http://support.apple.com/kb/HT4049 
    Cheers,
    Jason H.

  • I turned off my iPod touch and when I tried to turn it back on, it won't load and just sits on the black screen with the Apple logo.... HELP!!!):

    I turned off my iPod touch and when I tried to turn it back on, it won't load and just sits on the black screen with the Apple logo.... HELP!!!):

    Try a Reset...
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    Restart / Reset
    http://support.apple.com/kb/ht1430

  • Hi, I connected to the internet in a different location using ethernet cable and when I got home websites like yahoo wont get to the sign in page and other sites too...weirdly facebook and google works ...please help...tearing my hair out!!!

    Question
    Hi, I connected to the internet in a different location using ethernet cable and when I got home websites like yahoo wont get to the sign in page and other sites too...weirdly facebook and google works ...please help...tearing my hair out!!!

    and now, when i tried to check again my network preference below the airport tab is showing a message that
    "my airport does not have an IP address and cannot connect to the internet!"
    then after seconds it will goes back to the first message that
    "airport has the self assigned IP address etc....."
    i don't know whats going on now!
    airport tab is not showing green color anyway! i'ts always in yellow!
    i tried turning it on and off but nothing happen! HEEELLLLPP!!!!

  • How do I install creative cloud when application manager opens and just sits there?

    I have downloaded creative cloud but when I double click on the icon, application manager opens and just sits there, advising me what apps can be installed or try; how do I get creative cloud installed

    attach a screenshot of your cc app if you are unable to click an install button, http://forums.adobe.com/message/4209263#4209263

  • HELP!!! My site freeze  and show alarm

    HELP!!! My site freeze when you press link and show messenge
    "a script in this movie is causing flash player to run slowly. if
    it continues to run, your computer may become unresponsive. Do you
    want to abort this script?". After I say yes or no site become
    crazy and running all movings. I'm 1 week in this. And its
    published in internet already. Please, help.

    "yelyzaveta" <[email protected]> wrote in
    message
    news:eo0g30$nb4$[email protected]..
    > HELP!!! My site freeze when you press link and show
    messenge "a script in
    > this
    > movie is causing flash player to run slowly. if it
    continues to run, your
    > computer may become unresponsive. Do you want to abort
    this script?".
    > After I
    > say yes or no site become crazy and running all movings.
    I'm 1 week in
    > this.
    > And its published in internet already. Please, help.
    >
    Post a link to your site where the swf is running and the
    actionscript code
    on your "link" would help.

Maybe you are looking for

  • Error Messages in FMMC

    We are running Funds Management & Former Budgeting on version 4.7/2.00.  When FMMC is executed the following error messages occur on some of the Value Type 65 documents: Message no. FI057 System error: Funds management update (LFMOIF01,ORGVG) Message

  • My ipod touch changes date & time by itself

    I've noticed that my ipod touch sometimes changes the date and the time by itself. What could cause it to do that? The time on my computer is correct and it doesn't happen when I am syncing the ipod. Could using certain applications do this? It's qui

  • No link between Sg200-26 switch and netgear gs1081 v2switch

    Hi everyone, Would someone be kind enough to guide me through my problem. I am a newbie and dont know much about networking more so other technical stuff like trunking, vlans etc.... there is no connection (no link activity) betwen my cisco sg200-26 

  • Timer, movieclip confusion in actionscript?

    I have a movieclip containing a drop down menu and when I try to remove a glitch by disabling the movieclip while the animation is running I get this error. ReferenceError: Error #1056: Cannot create property enabled on flash.utils.Timer. at july09_f

  • Premiere Sequencing Troubleshoot

    Hello, I am trying to use CS5 Premiere on a Mac (Snow Leopard version). I've used Premiere before on this computer with no problem, but I'm working on a project now, and for some reason, the sequencing area will not let me playback and view the rough