Dreamweaver CS5.5 Can't update my site!

I just switched from a PC to a Mac.  I exported one of my sites from the Windows PC and copied it over to the Mac.  When I 'test' the connection it connects sucessfully, but when I try to upload using Dreamweaver it gives me a error related to permissions.  Since it tested ok I know the password is correct - I even retyped it and retested it to be sure - but it still won't upload to the site via DW. (BTW using a Filezilla I can access and upload files to the site).
Any help appreciated!

I found the answer!  It seems that with DW 5.5 there is a known issue that affects 'some' (according to Adobe) users.  The solution is to delete the webformmailer.php file in the root directory of the site on the server.  I have no idea why that works, but it seems to have fixed the problem for me.
See this note from the Dreamweaver team blog
http://blogs.adobe.com/dreamweaver/2011/07/late-breaking-issue-putget-not-working-for-some -dreamweaver-cs5-5-users.html

Similar Messages

  • Dreamweaver CS5 - Can't create new site ( SpryAssets)

    Hi guys,
    i tried starting a new site in Dreamweaver CS 5 but it's not possible because of needing a SpryAssets folder. No, i know how to create a site, but since Dreamweaver is installed on OS X Lion, i can't get it to work. I do every thing like I am supposed to do, but nothing helps. I've seen many people with that problem so there must be any help. Please dont just post links on how to create a site, i know that but my problem looks more like a bug and not like a problem because of myself.
    Sorry for my bad english,
    greetings
    Peter Zwegat2

    Hello Peter,
    hope I understood you correctly: Please let's first talk about your directory structure. I for my part use something like that:
    Now MY DW has no problems in finding my "SpryAssets" folder. Please control your pathes. In DW source code sometimes these ../ or ../../ can be helpful too.
    ... and better, please send a link to your webite in question, no matter how it looks like.
    Hans-Günter

  • Moving from MX2004 to CS5 -can't update library items

    I have upgraded from MX2004 to CS5 and at the same time upgraded laptops from a macbook to a macbook pro. Not sure how it happened, but the source for the two local views is diferent now (both files have the same name, but one is in lower case -so I know they are different). I think I 'loaded' the new one from a memory stick where I stored the site in case anything went wrong, but had named it differently.
    This is causing me real problems trying to update library items on the new laptop, as I can only seem to do it on the old one (which means moving the whole site backwards and forwards).
    On the old laptop I am asked if I want to update all files, but on the new one I get the message:
    "Making this change would require chaging code that is locked by a template or a translator. The change will be discarded"
    How can right things or synchronize them so that I can ditch the MX2004 and old laptop?

    Perhaps I have not been specific enough, it's not a single file, its the whole site that is drawn from different sources on the two different laptops.
    Apologies if I have given an answer to the wrong question Murray and caused you to shout 'doh!'

  • Dreamweaver FTP error when updating BC site

    Hi,
    I recently changed by Adobe ID password due a possible security breach.
    When trying to "put" some local  Dreamweaver folders to update my test BC site i got the error message;
    " An FTP error has occurred. Cannot make connection to the host your login or password is incorrect. Please check your connection information".
    I know this must be straightforward to sort but I can't seem to work it out.
    Can anyone remind me how to update connection information to reflect my new password ?
    Kind Regards, Matt.

    Hi Matt,
    You have changed your password online but if this is a saved project in Dreamweaver you also need to go in and update your details in that saved project with your new password as well. Have you done this or entering your new password in DW?

  • How can I update a Site Column with the content of an array with javascript CSOM?

    I'm relative new to Sharepoint 2013, I'm trying to update the content of a Site column with the content of an array, I can retrieve and visualize the content of my site column, the user is able to change and save the necessary part and the changes are
    saved into an array, now I have to update the content of the site column with the content of the array, but for some kind of reasons I can't accomplish that, any suggestion/example? This is my code so far to retrieve, visualize the site column and store the
    mofication into my array.
        <body>
                <select id="dropdown" name="dropdown" onchange="optSelect()">
                    <option value="EngineType_Cylinders">EngineType_Cylinders</option>
                    <option value="EngineType_EngineCycle">EngineType_EngineCycle</option>
                    <option value="EngineType_EngineFamily">EngineType_EngineFamily</option>
                    <option value="EngineType_Euro">EngineType_Euro</option>
                    <option value="EngineType_FamilyEvolution">EngineType_FamilyEvolution</option>
                    <option value="EngineType_GasEmissionLevel">EngineType_GasEmissionLevel</option>
                    <option value="EngineType_Power">EngineType_Power</option>
                    <option value="EngineType_PowerSupply">EngineType_PowerSupply</option>
                    <option value="EngineType_Use">EngineType_Use</option>
                </select><br />
                <textarea id="textareadisplay" rows="25" cols="23"></textarea><br />
                <input type ="button" value="Update values" onclick="addItemsToColumns()" />
            </body>
    My Javascript
        $(function () {
            SP.SOD.executeOrDelayUntilScriptLoaded(Function.createDelegate(this, function () {
               var select = document.getElementById('dropdown').value;
                console.log(select);
                getSiteColumns(select);
            }), 'SP.js');
        var fieldChoice;
        var choices;
        var addFields = [];
        var slc;
        var clientContext;
        function optSelect() {
            slc = document.getElementById('dropdown').value;
            getSiteColumns(slc);
        function getSiteColumns(selection) {
           clientContext = SP.ClientContext.get_current();
            if (clientContext != undefined && clientContext != null) {
                var web = clientContext.get_web();
                fieldChoice = clientContext.castTo(web.get_availableFields().getByTitle(selection), SP.FieldChoice);
                clientContext.load(this.fieldChoice);
                clientContext.executeQueryAsync(Function.createDelegate(this, this.OnLoadSuccess), Function.createDelegate(this, this.OnLoadFailed));
        function OnLoadSuccess(sender, args) {
            choices = fieldChoice.get_choices();
            var textarea = document.getElementById("textareadisplay");
            textarea.value = choices.join("\n");
        function OnLoadFailed(sender, args) {
            alert('Request failed. ' + args.get_message() + '\n' + args.get_stackTrace());
        function addItemsToColumns() {
            clientC = SP.ClientContext.get_current();
            var arrayForUpdate = $('#textareadisplay').val().split('\n');
            fieldChoice.set_item(, arrayForUpdate);
            fieldChoice.update();
            clientContext.executeQueryAsync(function () { }, function () { });
        function OnUpdateSuccess(sender, args) {
            var newchoices = fieldChoice.get_choices();
    My problem is on the function addItemsToColumns() please help! Thanks in advance.

    Let's look at your stylesheet -
    <style type="text/css">
    body {
    background-image: url(assets/images/Business%20Men%20In%20Reception%20Col.2.jpg);
    background-repeat: no-repeat;
    background-color: #003;
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    It's a good idea not to use spaces or any punctuation in your filenames when working for the web.
    #header {
    margin-left:auto;
    margin-right:auto;
    position: relative;
    width: 960px;
    #heading {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 36px;
    font-style: italic;
    font-variant: normal;
    margin-left:auto;
    margin-right:auto;
    There's no need to specify the default values (font-variant:normal) or to specify auto margins for any block element without an explicitly defined width. And wouldn't it make more sense to put the font style on the body tag, where it will inherit into the rest of the page than to restate it as you have done in the next rule?
    #bodytext {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 18px;
    line-height: 25px;
    font-variant: normal;
    width: 300px;
    #container {
    width: 960px;
    position: relative;
    margin-left:auto;
    margin-right:auto;
    .rightimg {
    float: right;
    margin-left: auto;
    padding-right: 40px;
    #heading #navbar ul li {
    padding: 30px;
    </style>
    Margin-left:auto can't work without knowing what the width of the element is....  Keep your CSS lean and targeted - it will help you to debug your layouts.

  • Updated a page and now the "Publish Site" stays gray and can't update the site. What's up?

    Updated my iWeb page and now it won't publish. "Publish Site" stays gray. What to do now? I'm not using Mobil Me. FTP published. Workd before. Haven't a clue now.

    Try making a minor change to that same page, like moving an object a couple of pixels one way or the other, and see if the File ➙ Publish Site Changes menu option will work for you.
    OT

  • I have OSX 10.7.4 but can't update "Google Sites"?

    I was given permission to update my groups google site, but I cannot get my MAC to even show the edit screens on google.  It works on my Iphone (runs IOS) but I don't know what to do to get my MAC to work with google sites????

    Scrap it and re-download it. Be sure you have a fast Ethernet connection.

  • IWeb8 - can I update 1 site with 2 computers (desktop & laptop)

    I am up and running OK but more by good luck than judgement. I don't begin to understand the 'domain' concept.
    I have iWeb on 2 machines and assumed that I could use either to update my website on the assumption that iWeb is making use of the same iDisk.
    I'm probably trying the impossible - it would be helpful to learn a little about why.
    Ta

    It's not impossible:
    You can store your domain file in a remote location, such as a file on your iDisk, so that iWeb accesses that domain file from each computer that you use. The secret is to double-click the domain file from each computer, so that the iWeb software then looks to that location. I haven't tried it, but here's the scoop from the experts:
    http://docs.info.apple.com/article.html?artnum=303045

  • Dreamweaver CS5: Impossible d'enregistrer un site

    J'ai SpryAssets dans le dossier local du site et lorsque j'enregistre le site il m'est répondu que le dossier des actifs spry ne s'y trouve pas, ce qui est manifestement faux. Comment résoudre ce problème?
    Denis Lieutier

    Bonjour Denis,
    veux-tu s'il vous plaît transfére toutes vos fichiers sur le serveur (peu importe dans quel état ils sont) et donne moi le lien, puis je pourrais certainement analyser plus facile cette chose.
    Hans-G.

  • Menu behind spry slideshow dreamweaver cs5?

    Using Dreamweaver CS5
    Hi.  I have a site with a css3 dropdown menu that seems to work fine on all of my pages except my photo gallery page. The menu appears behind the Spry Slideshow with Filmstrip that I got from the Widget Browser.
    The site is not live and only on my local machine but here is the page html in a text doc: http://www.210usa.com/index.txt
    Here is the main css: http://www.210usa.com/css_prob.txt
    Here is the slideshow css: http://www.210usa.com/css_slideshow.txt
    I have changed the z index but that is not helping at all.  I found this for problems with flash docs but I am a real novice and do not know how to even put these tags in my code.  Any help would be greatly appreciated.
    Thanks

    Grüss Dich sailor,
    in my opinion "SpryTabbedPanels" actually only do what they should to do and so it inevitably leads to the covered menu items. I played a little bit around with the width from your "css3menu1/style.css"
    height:22px;line-height:22px;border-width:0 0 3px 0;border-style:none;border-color:#009900;border-radius:10px;-moz-border-radius:10px;-webk it-border-radius:10px;padding:3px 10px; width: 650px;}
    and I got this:
    so you can see what I mean. To correct this you had to put down your "photo gallery for Mystic Pizza II" so far, till there is enough space for the panel. And therefore I would prefer a solution by using a "SpryMenuBarVertical" leftmost on your page (if you mean it's necessary so too on the right).
    Glück auf!
    Hans-Günter

  • Dreamweaver cs6 does not update links when moving files.

    Dreamweaver cs6 does not update links when moving files. I've tried changing my general > settings for "Update links when moving files" to "prompt", and Ive tried "always". Neither work for me. The files are moved fine, but the links don't change. When it's set to "prompt" - I'm never prompted. Is this a bug or is there another setting somewhere?

    MadelineCACA wrote:
    I haven't define a site. I've opened an index.htm file within a folder structure that I have on my MAC. When I moved a  file called art.htm (within the files tab) from a subfolder into the root folder with the index.htm file, it didn't update the image links in art.htm.
    In order for DW to manage links, you absolutely MUST Define a Site...
    http://tv.adobe.com/watch/learn-dreamweaver-cs5/gs01-defining-a-new-site/
    Also, you MUST use the Files tab within DW to move files around within your Defined Site in order for DW to know it needs to update links.

  • Advice on Dreamweaver CS5.5

    I have spent 35 minutes attempting to purchase Dreamweaver CS5.5 from the Adobe site. The main page would not allow a change of country from USA and when I found an Australian download page Dreamweaver CS5.5 was not listed. I used the 'Send an email" option without success.
    Please advise my best next move.
    Many thanks,
    Robin Chapple

    Hi
    Adobe has never allowed the correct exchange rate to be applied to product purchases outside the US, and it is one of the major reason that many people outside the US look for alternatives, (even microsoft stopped this type of policy years ago), and if you look at the UK purchase site, downloads cost more than the boxed version!
    Macromedia did allow the correct exchange rate to be applied when one purchase from their site, so in my opinion this is just an Adobe profiteering scam, But that's just my opinion.
    PZ

  • I am a teacher of IT Information Technology for high school students of a public school in the state of Minas My Brazil, and would like to know if you guys have dreamweaver cs5 for students and flash, so I can teach students the construction of these site

    I am a teacher of IT Information Technology for high school students of a public school in the state of Minas My Brazil, and would like to know if you guys have dreamweaver cs5 for students and flash, so I can teach students the construction of these sites trough applications

    Hi,
    In addition to what Ken said, I would suggest that you give Edge Animate a shot as well.
    Creative Cloud is available as trial version for 30 days and almost all creative software is bundled with the Creative Cloud. Tutorials are included for each of the products on the respective sections of the website. For instance, this site Website builder | Download free Adobe Dreamweaver CC trial gives you access to the trial version as well as tutorials.
    I suggest that you go to http://creative.adobe.com and explore the various options available.
    For any purchase related information, feel free to send me a private message if you need further clarification. Click on my picture and use the message option. The experts on this forum can help you with other questions you have on using Creative Cloud.
    Thanks,
    Preran

  • Where can I find this download...I just updated to Yomesite and I got this message:What is says is To open "Adobe Dreamweaver CS5.app" you need to install the legacy Java SE 6 runtine.

    Where can I find this download...I just updated to Yomesite and I got this message:What is says is To open "Adobe Dreamweaver CS5.app" you need to install the legacy Java SE 6 runtine.

    Hi zimieh. Do you get it by going to the app store and run update,. If not here is a link for the only java update I find for Yosemite.  http://support.apple.com/kb/DL1572?viewlocale=en_US&locale=en_US

  • Downloading and editing an existing WordPress site in Dreamweaver CS5.

    Hello! New to the forums, here.
    I'll try to be brief. I've got a WordPress site in-place at metalmeter.com that is hosted through HostGator. Basically, what I'm looking to do is get the site from the remote server and edit it in Dreamweaver CS5, previewing all changes on a local testing server before putting the updated contents back on the remote server.
    Now, let me be clear: I've tried plenty of the tutorials. I've watched hours of videos. I still can't get it configured properly. I've got the FTP connection to the remote server running smoothly. I've got XAMPP installed. I'm having difficulties (and I apologize for being vague), and I just don't know where the problem is located. In my htdocs folder for XAMPP, I've got two subfolders 'metalmeter' for the remote server's downloaded contents, and 'wordpress' for the wordpress installation that every page seems to be pointing me toward. What confuses me is that when I try and open the uppermost index.php file on the remote server, the dynamically discovered content is not being displayed in the live view with my local testing server. I want to be viewing my existing WordPress site in its entirety exactly as I see it online while I'm editing it, and then pushing back updated files to the /public_html/ root directory of the remote server so that I can edit the site from my local client. I'm extremely new to Dreamweaver, so any help you could offer would be greatly appreciated.
    If you know how to do exactly what I'm trying to do and have been successfully viewing and editing your existing WordPress site in Dreamweaver for upload, please take some time to explain the set-up. I'd be forever in your debt!

    Nancy O. wrote:
    I've been following this discussion for a while now and I don't understand why you hope to edit articles from DW.  That's what the WP Admin panel is specifically designed for.  Besides, you won't find your articles in any of the site files because they don't exist there.
    I agree I don't see any reason to want to edit a Wordpress site in Dreamweaver. If you are using Wordpress then you may as well put Dreamweaver in the bin. Although people do actually want to edit and manipulate the design in Dreamweaver (including myself) and from what I've read its possible but I've never found a source which explains fully how to achieve this and those that I have it seems too much effort to even bother about.
    I guess the Dreamweaver environment feels more like home and is more user friendly.
    To put it another way, a typical WordPress installation contains around 800 files in some 80 folders.  Those files don't contain any content, just a whole lot of PHP code.   In fact, the only page most people ever see on your site is the index.php page which is dynamically created over & over by the server with content from the MySql and various include files.
    For sure and that's why people who use Dreamweaver and feel the need to manipulate a Wordpress site in Dreamweaver because Wordpress is 'in vogue' get lost. Wordpress just containes a lot of pages with nothing to see apart from some php, many of who will not understand one jot.
    Unless you're a coding guru, you should definitely NOT touch any of the core WP files as this could cripple your site.  If you want to customize your Theme, look at the CSS and include files in your Themes folder.   See Anatomy of a WordPress Theme:http://yoast.com/wordpress-theme-anatomy/
    lol your not wrong there!
    For a quick tip on Theming, open your remote site in Firefox equipped with the 'Web Developer Toolbar'.  Edit CSS on screen.  Save changes to your local site and upload it to the remote server.  No testing server required. 
    Wordpress is Wordpress and Dreamweaver is Dreameaver. As far as I can make out the two don't mix.
    Ideally you would just choose a Wordpress theme which most relates to the nice site you have designed in Fireworks of which you won't find any however goodthe themes are. Then manipulate the themes css that's if you can understand it. Even for a seasoned css expert its heavy going because everyone produces css differently to achieve the same results.
    Leave Wordpress well anlone unles you're going to use it out of the box so to speak or as a web-developer don't mind a bit of reverse engineering.

Maybe you are looking for

  • Video Chat Communication Error

    I am trying to video chat with my friends and when we send the invite, the person will accept and it will say that she declined the invite, and then a comunication error message will come up, I see that other people have been having the same problem,

  • Need help selling a broken old Macbook Pro

    Hi can anyone help me? I'm new to this forum, so I hope I'm in the right place. Also please forgive my lack of Mac techie knowledge... I have an old macbook pro 15.5" (2008ish) that I'd like to sell. It was in perfect working condition until I tried

  • Problem when file download is canceled

    I have been using the following code to download files in a JSP and it works fine, except if the user cancels the download once it has started. Then my application seems to be locked up and the user has to start over. I added some println statements

  • How do i share work calendar with collegues?

    How do i share my ical with work collegues?

  • Create WEB PAGE using PL/SQL

    Does anyone have explicit example of how to generate web page by invoking a PL/SQL stored procedure from Windows desktop?