Help! html updates to html.1on remote server

Can you help with this? My html & jpeg files are on the
remote server OK. But when I save changes to any of the files they
are not change or updated instead a new file is made on the server
with an extension .html.1 I can then view both of these files in
the browser. Is it a problem with dreamweaver or my ISP FTP server?
Here's two of the files. Any suggestion greatly appreciated.
Thanks Jerry.
html test
link - the first file downloaded to the server that is not changed
/ deleted from server
html.1
test link - file that appears on the remote server

Try uploading some files using a different FTP client like
IE, WS_FTP,
FileZilla, to see if the problem is the server or DW:
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14834#otherclient
David Alcala
Adobe Product Support

Similar Messages

  • Help! Downloading a file from remote Server

    I am currently doing a program for downloading a specified file from the remote server i.e from any website. If the downloading process stops in between due to some problem in the internet connection, then my program needs to start the downloading the file again to the local directory from where it was left.
    My idea is that, getting the size of the remote file initially when the downloading process starts and if the connection is interrupted, i will check the size of the downloaded file in the local directory with the remote file size. If the remote file size is greater than the localfile size, i need to start downloading the file where it was left i.e start downloading the next bit from the remote file.
    Is there any way to get the contents of the remote file from the specified point say 50th byte from a total file size of 100 kb using java?
    which concept to use FtpClient or sockets?
    iam a little bit confused!!!!
    Please help me.
    Thanks in advance.

    For HTTP you can use this function to open the stream with offset:
    InputStream openStream(URL url, long offset) {
        try {
            URLConnection uc = url.openConnection();
            uc.setRequestProperty("Authorization", "Basic " + (new BASE64Encoder()).encode("username:password".getBytes()));
            if (offset != 0 && url.openConnection().getHeaderField(0).toUpperCase().startsWith("HTTP/1.1"))
                uc.setRequestProperty("Range", "bytes=" + offset + "-");
            return new BufferedInputStream(uc.getInputStream());              
        } catch (MalformedURLException mfURLe) {
            System.err.println("Malformed URL in Client Updater. Unable to receive update list: " + mfURLe.getMessage());
        } catch (IOException ioe) {
            System.err.println("Unable to open input stream: " + ioe.getMessage());
        return null;
    }

  • Since I switched to Dreamweaver CC I cannot upload my new or updated pages onto my remote server

    My operating system is Windows 8.1 and I work within Adobe Cloud withe Dreamweaver CC.
    Once the connection with my remote server is established and tested and the website's files: local and remote are visible on my screen I try to upload an updated page. At this moment the new folder is automatically created on the remote server with the same name as was specified and used for a whole web site and the updated page with its related files uploads into this folder and do not show on any browser after uploading is finished.
    I can see that my remote web site has only one subfolder (under the FTP number defining remote server):
    /ftp439......-.
         files
    while my local web site has two subfolders (generated automatically: when I open it)
    Site-Szaser-1 (L:L\Webs)
         Szaser-1
              files
    I've tried also get the files from remote and they download and are stored separfately within my local site. None is replaced in either way.
    My web site is online for already many years and I' ve never before had this kind og problems.
    Please help!

    I took your advice & called Earthlink, our web host.   They wanted to check my FTP settings but just like when they changed their system a month ago,  I could access the 'home page' for changing the FTP settings but I couldn't click on anything.  When this happened a month ago, the web host rep
    'took over' my computer & changed the FTP settings but after about 10 tries the web host rep I was speaking to this time failed to make the necessary connection so he could make the changes by taking over my computer.  Then yelled at me saying I shouldn't rely on them, I should figure it out myself. When I asked to speak to a supervisor, he hung up on me.  So I don't think I'll get anywhere by contacting them again.

  • Help: Software Update for OS X Lion Server

    After having a problem with my software update service for some time now, I thought I would implement the fix at
    http://support.apple.com/kb/TS3867
    entitled " Lion Server: Software Update Server may not provide Mac OS X v10.7 software updates after upgrade"
    Unfortunately it seems to have broken the service!
    I now get the error
    <Error>: Unable to retrieve catalog(s) from the Apple server
    and
    Syntax error on line 288 of /etc/swupd/swupd.conf:
    DocumentRoot must be a directory
    The offending script is in the apple support document which I copy and pasted.

    Just fixed this myself.
    SWUPD is expecting a directory within the one you chose, called "html".
    Example: /Volumes/XSAN/SWUPD/html
    It will not create "html" if the directory doesn't exist.
    Create the folder "html" then in terminal do this:
    sudo chown -R _softwareupdate:_softwareupdate /path/to/the/folder
    Example: sudo chown -R _softwareupdate:_softwareupate /Volumes/XSAN/SWUPD
    ##do not include/html. the -R means recursive and forces the same ownership on all contained directories.

  • [Solved] Help with conversion to systemd on remote server

    Hi everyone ,
    I've been trying to convert my server from initscripts to systemd using this wiki section: https://wiki.archlinux.org/index.php/Sy … nitscripts
    Unfortunately, it looks like I'm missing something. After a reboot, the server (according to my provider) requests login on-screen, yet will not connect to the network (does not respond to pings)
    This is my current DAEMONS array from rc.conf
    DAEMONS=(net-profiles crond)
    This is my previous array (from rc.conf.pacsave)
    DAEMONS=(syslog-ng sshd net-profiles crond named)
    I've added syslog-ng, sshd, and named using "systemctl enable .......service"
    net-profiles.service also seems to be acting strangely, so I've included it in the daemons array
    ~$ ls /usr/lib/systemd/system/ | grep net-profiles
    net-profiles.service
    ~$ systemctl enable $(ls /usr/lib/systemd/system/ | grep net-profiles)
    Operation failed: No such file or directory
    Is there a network service I'm forgetting?
    My provider is OVH, do they have any special init scripts?
    Extra info:
    ~$ ls /etc/systemd/system/multi-user.target.wants/
    httpd.service mysqld.service named.service remote-fs.target sshd.service syslog-ng.service vsftpd.service
    I have access to the machine through a provided rescue kernel and chroot. When I run systemctl alone, it produces the following message:
    ~$ systemctl
    Failed to get D-Bus connection: No connection to service manager.
    Last edited by tripple (2013-08-19 11:43:23)

    tomk wrote:
    Why do you think net-profiles.service exists? netcfg is no longer in use, but even when it was, it didn't include such a file.
    I suggest you (re-)read the wiki's network config pages. Depending on your requirenets, you could end up using network.service, dhcpcd, service, or netctl, netcfg' successor.
    It's in /usr/lib/systemd/system/, shouldn't I be able to enable it?
    tripple wrote:
    net-profiles.service also seems to be acting strangely, so I've included it in the daemons array
    ~$ ls /usr/lib/systemd/system/ | grep net-profiles
    net-profiles.service
    Which wiki page exactly? I'm not sure what information I'm looking for. Would I use only one of those services? Do I need a network service like dhcpcd or netctl?
    Edit: Oh, hey... I fixed it
    I enabling net-auto-wired.service, netcfg.service, and dhcpcd.service. Plus a grub-makeconfig for good measure (I had edited /etc/default/grub before the problem occurred to remove the "init=/usr/lib/systemd/systemd" line but I forgot to re-make the config.)
    Last edited by tripple (2013-08-19 11:43:09)

  • URGENT HELP - SWF in html doesnt connect to remote server

    Hi,
    I have an swf placed on a website which needs to connect to a
    remote server but it doesn't work. I'm using SWFObject to embed the
    swf file and i can see it no problems and the buttons are
    definitely active but it never connects to the server that's it's
    pointing to. I've tested with different servers and it's the same
    for all of them even one with absolutely no firewall or virus
    protection.
    It seems something is blocking the files as the correct
    requests are being made (i checked with trace statements)....I
    think it's the flash.....is there something i'm doing wrong in the
    publishing of the swf file?
    thanks for any suggestions!
    Greg
    ps. sorry for cross posting - this is urgent!

    Hi,
    If you have a swf living on one server and communicating with
    another, you need to have a crossdomain.xml file placed in the root
    of the remote server you are calling. This is a security
    restriction that started with Flash Player 6.
    You can read more about it here :
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_14213

  • WEBSITE NOT REFLECTING EDITS OF HTML FILE THAT WAYS SUCCESSFULLY "PUT" TO REMOTE SERVER

    Help!  I'm hoping there is a simple reason why I can't get my simple edits to reflect on the website.Here is what I have done/tried:
    1. opened and added one simple line of text (with one link to a pdf) to one page of the pre-exisitng site.
    2. checked both properties and code to make sure everything matched the preceding, similar line of text
    3. connected successfully to remote site through dreamweaver
    4. tried both "putting" and synchronizing the file (along with dependent files)
    5. the first time I did this I got the message that "no syncronization info is available" from  the remote site
    6. clicked ok (after going back and  unchecking "maintain synchronization information," and making sure there were no sync files in the _name folders)
    7. it took a long time to upload all of the files from the local site.  when it finished, the log stated that everything put successfully, but the website
    doesn't look any different.
    Our root folder is saved on our server.  We just recently changed web host providers.
    Also, for each webpage, there are two html files (one general and then one with a 1, 2 or 3 column descriptor).  I edited and put both to the site, but is there
    something I should know about these two files?
    ??  I just need to make some really simple edits and I don't understand why they are not showing up!!??
    Any help would be deeply appreciated!!!
    Thanks, Jessica

    I followed your instructions and was able to see the dummy page in the browser.  (no file not found error)
    OK - that's good.
    I only have one site defined (should I have two - one for local and one for remote?)
    Well, one site definition has the ability to contain local and multiple remote site specifications.  Under the basic Site category in the Site definition, you will see the path to the local root folder.  Under the Servers category, you will see each server that has been defined - usually a Remote server (that would be your web hosting account) and a Testing server (if you are coding a site with server scripting).  It's normally the case, with a simple, static HTML site, to have just Local and Remote details in your site definition.
    I called our host (Go Daddy) to ask what the name of the root directory was and they instructed me to just leave that blank. so right now it just appears as \
    Actually, it should be either blank or "/" (the regular slash).
    If you are able to see the dummy file that you browsed to but still do not see changes made to other files, then it must be that the host is caching files on your site.  You would have to ask them that question.  Otherwise, you should see changes that have been uploaded immediately.

  • How to solve this problem, pls help when I try to see remote camera system from home."Dual streaming is required for HTML viewing"

    How to solve this problem, pls help when, I try to see remote camera system(spec dvr) from home. The Error I get is "Dual streaming is required for HTML viewing"

    I had the same probelm and found that the problem lies with 64bit programs such as safari and microsoft internet explorer. I have resolved the issue on my PC based server by using a 32 bit ie and same on my mac by using the same running windows under parallels.
    So far the problem with the 64 bit side of it is still to be resolved.
    Hope this helps and gets you guys up and running until suchtime a 64 bit solution is found.
    Craig

  • HTML files uploading to remote server, not reflected on website.

    After minimal adjustments to an HTML file, I upload it to the remote server. The local and remote files reflect this in the "modified" line, both mirroring the same exact time. However, when I go to the actual site, the changes don't appear.
    Now, when I update the html file, say cv.html, it also makes the same changes to 2.html. When I click on the link on the website, it appears at 2.html. Somehow cv.html and 2.html are linked to each other. (I guess to keep the overall web address smaller)?
    I just took on this website to manage and I've already hit a million roadblocks trying to get it started on my end, so anyone that can solve this I would be SO grateful!

    Somehow cv.html and 2.html are linked to each other.
    Could be CV is being pulled into a framed parent page called 2.html.  Or maybe your previous web developer used server-side includes to populate page 2 with content from other site files. It's anybody's guess what may be going on until you provide us with more detailed information. A URL is preferred.  Copy & pasted code is a 2nd option but don't use e-mail, it won't come through to the web forum.
    Nancy O.

  • How to print HTML to a remote Server

    Ho guys my problem is only this
    how to print HTML to a remote Server
    i hav used JavaPrintService for it javax.print....
    The Doc Flavor i used is
    DocFlavor.INPUT_STREAM_TEXT_HTML_HOST;
    and with simple print attribute set but it doesnt locates
    the PrintSerivces.
    Plz try this code on your system(Jdk1.4 beta) and see whether it detects PrintServices or not
    import java.io.*;
    import javax.print.*;
    import javax.print.attribute.*;
    import javax.print.attribute.standard.*;
    import javax.print.event.*;
    public class PrintHTML {
    FileReader readfile;
    Doc doc;
         public static void main(String args[]) {
              PrintHTML ps = new PrintHTML();
         public PrintHTML() {
              DocFlavor flavor =DocFlavor.INPUT_STREAM_TEXT_HTML_HOST;
              PrintRequestAttributeSet aset =
                   new HashPrintRequestAttributeSet();
              aset.add(MediaSizeName.ISO_A4);
              // aset.add(OrientationRequested.LANDSCAPE);
              aset.add(new Copies(1));
    PrintService[] pservices =
                   PrintServiceLookup.lookupPrintServices(flavor, aset);
    if (pservices.length > 0) {
                   System.out.println("Available printer " + pservices[0].getName());
                   System.out.println("Available printer " + pservices[1].getName());     
                   System.out.println("Available printer " + pservices[2].getName());     

    The documentation is misleading. You cannot directly print HTML. See:
    http://developer.java.sun.com/developer/bugParade/bugs/4495770.html

  • Unable to update webpages onto remote server

      Whenever I upload my updated webpages onto remote FTP server, remote server does not update my webpages, even though I synchronize them and refresh webpage contents. Please, help me solve this problem ASAP!

    Have you set up the remote / transfer settings correctly, see -
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7f62a .html
    Also ensure the files are not cloaked in the preferences menu: edit - preferences - cloaking.
    PZ

  • Can't upload "put" files to remote server unless they are in a folder. Please help.

    I have done many searches on this and found no solutions. Here is the problem:
    When I upload a file from my local site to the remote server it works fine as long as that file is contained in a folder.
    Example:
    I can upload an image from my images folder, or a template page from my template folder with no problem.
    BUT, I can not upload any web/html pages, my CSS page, site map, or any file for that matter that is simply in the root directory but not in it's own folder.
    When I try to do that I get this error:
    index.html - error occurred - An FTP error occurred - cannot put index.html.  Access denied.  The file may not exist, or there could be a permission problem.   Make sure you have proper authorization on the server and the server is properly configured.
    File activity incomplete. 1 file(s) or folder(s) were not completed.
    Files with errors: 1
    index.html
    So every time I make a change to my index page I can't upload it to the server without getting that error unless I use a 2nd party program like Filezilla - which works fine. It is only Dreamweaver doing this.
    I have been using dreamweaver for a long time and had no problems with this site. This all started happening out of no where. and it is happening on my work and home computer.
    I made no changes to my server preferances or anythijng like that.
    I was just doing my thing - being happy - and then BAM, not happy any more....

    Hi there. First off thank you for your interest and your help.
    I have done what you suggest probably 30 times as I have obsessed over this crazy problem for a couple straight weeks before I finaly gave up on CS5.5
    I'm not sure what you mean by REMOTE server. The only server settings I am aware of are the ones in Dreamweaver. Here they are:
    5.0 Settings:
    Server Name = the same values on each
    Connect Using = FTP
    FTP Address = same numeric value on 5.0 & 5.5 port 21
    User name = same on both
    Password = same on both
    Root directory = is blank (I have tried it using / with no luck as well)
    web URL = http://ftp.westbrookadvertising.com/www/htdocs/
    Passive FTP is checked & Use FTP Peformance optimization is checked.
    5.5 Settings:
    Server Name = the same values on each
    Connect Using = FTP
    FTP Address = same numeric value on 5.0 & 5.5 port 21
    User name = same on both
    Password = same on both
    Root directory = is blank (I have tried it using / with no luck as well)
    web URL = http://ftp.westbrookadvertising.com/www/htdocs/
    Passive FTP is checked & Use FTP Peformance optimization is checked.

  • Help! Save to remote server has broken links to all images

    Okay, I (now) know this was a stupid thing to do - but surely there must be an easy way to rectify it...!?
    I usually 'PUT' the html files to the remote server, once they have been saved locally. But I keep getting frustrated with the uploading of all the dependency files, so... I 'discovered' the command 'SAVE TO REMOTE SERVER' and used this to save my html file directly to the server. I was asked if I wanted to update all the links - and I clicked YES (doh!)
    Now all my images and links are broken.
    I know it is just a single page - but it contains quite a number of links and images. Also, this page used a template and the image/links from the template within this one file are also broken. (The actual template file and all the other pages in the site are okay)
    'Undo' did not work
    Does anybody know a quick way to fix this?
    I am using Macromedia Dreamweaver MX 2004
    MANY thanks in advance,
    Rich

    I 'discovered' the command 'SAVE TO REMOTE SERVER' and used this to save my html file directly to the server. I was asked if I wanted to update all the links - and I clicked YES ...
    Sorry to say you've learn a valuable lesson the hard way.  Never, never save to remote server without first checking your work locally.
    You'll need to fix the links. Working locally and in code view, identify the path problem.  Do a Find & Replace (Ctrl+F) in the source code.  Test in browsers.  THEN when everything works properly upload to server.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • DB connection pooling to remote server, pls help!

    Hi guys,
    I really need help with this and I am not exactly the most experienced developer.
    I have a java application which connects to a remote MS SQL server using the connection pooling object model described in Sun docs at:
    http://java.sun.com/developer/onlineTraining/Programming/JDCBook/conpool.html
    I am Using the 'sun.jdbc.odbc.JdbcOdbcDriver' driver.
    In the client class (DAO) in a      static {  try{} } block I create the JDCConnectionDriver and JDCConnectionPool. Then in the constructor of this class I instantiate the connection object, which I use through out the class.
    This class is instantiated multiple times in the lifetime of the application( thus the static block for the connection pool).
    It all works great if the SQL server is on the same machine. But as soon as I change the ODBC connection to a remote server, my application does not seem to release the connections. After several hundred instantiations of the client DAO class there are so many ports taken (live connections) on my server that it affects other applications.
    Does the garbage collector fail or does it fail when it works with the MS ODBC driver with remote connection?
    I debuged and debuged both with local sql and remote -- the workflow seems the same.
    Has anybody out there faced the same problem? What am I doing wrong? How can I resolve this?
    You help is greatly appriciated!
    Stan

    I am using the datasource very heavely, but I am sure
    the closing/releasing is ok. If the sql server is on
    the same machine, it all works flawlessly. Only when
    sql is remote I see unclosed connections, which pile
    up as I am creating more and more.
    Any suggestion?Your description seems to indicate that you are not actually closing the connections by calling the close() method. Make sure that you close the connection when the task at hand is finished. Closing only makes the connection in the pool available again.
    Also, if you are using datasource heavily, you should be attempting to minimize the lookups. JNDI lookups are relatively slow.

  • Need help getting remote server directory correct

    I am ready to upload my site to my server. I have tested my FTP in Dreamweaver and it works fine. Now I want to put my index.html file up. When I try the site address is wrong. I want it to say "www.mysite.com/index.html" but it says "www.mysite.com/mysite.com/index.html.  I have looked and looked at all the help sites I can find and I can't figure this out. I have moved my site location on my local computer but that didn't work either. 
    Keep it simple please. I am really a newbe at all this.
    thanks
    gretchen

    Let's go back a step.
    In your original post you said
    "When I try the site address is wrong. I want it to say "www.mysite.com/index.html" but it says www.mysite.com/mysite.com/index.html"
    Is the "mysite.com" hypothetical or the actual address of your domain?
    The screenshot you posted from your remote server definition shows me that your domain is www.fullsailbooks.com
    At your FTP address (ftp.fullsailbooks.com) there may be several folders. In one of those folders is your website which the world can see.
    In the Host Directory box in the Remote Server definition, DW is asking you in which folder the website lives. This information is always supplied by your website host usually via a welcome email.
    It may be blank or "public_html" or "html" or "http" or something else.
    It doesn't seem to be www.fullsailbooks.com since you get an error using that.
    What does the original email sent to you by your website host say exactly?

Maybe you are looking for

  • Error: No valid packages (-9997)

    Does anyone know where I can download a copy of the BaseSystem.pkg file for 10.3.9? I accidentally deleted mine.

  • How to insert page numbers in word

    I know how to insert page numbers that appear 1, 2, 3 etc. But I want to display:    1 out of 6,   2 out of 6,  3 out of 6  or similar - i.e. to have the TOTAL number of pages shown.  I can do this in Excel - is it possible in Word?  Or Pages?? Thank

  • Namespace problem with HL7 schemas

    Hi there, I am using Oracle 11.1.1.5 with health care patch applied. I try to pass in a HL7 message and consume it with a health care adapter and pass it on to a SOA composite which is a BPEL. In BPEL I am trying to assign a few values from HL7 messa

  • Need help for  the message flow in sap xi system?

    Hello All, My requirement is some wat different............in the existing production system the message flow is 3500 per hour......... now we want to develop new scenario and the message flow will be 8500 message per hour. Client is not giving me th

  • Developper 2000 Report builder 3.0.5.8.0 bug

    In Report builder 3.0.5.8.0 I can't open some of my *.rdf files. When trying to open no error message is generated and the "open dialog" reappears. Some other files can be normally open. Does anyone know how to solve this? null