Why can't I successfully upload web pages using FTP?

I recently installed Adobe Dreamweaver and successfully connected to a remote server where the files on my existing website are stored. I was then able to call up web pages from my local site, make revisions and successfully upload them (using FTP) to the remote server.
Problem started occurring when I received a Dreamweaver prompt advising me to change the name of my website's root folder from Unnamed Web Folder 1 to the actual location of the files on my i-Mac hard drive. In doing so, I moved the path of the site and changed the name of the root fokder.
Since then, when I make revisions on a locally stored web page and try to upload it to my remote server (by clicking on the "put" upward arrow), the operation seems to be excuted correctly. But when I test the revised page on a separate browser (like Safari or MI Explorer), the un-revised web page is displayed.
In trying to remedy the situation. I fear that I've been digging a deeper and deeper hole and may have screwed things up even further.
Help!

I'm really confused.  So let's back up about 4 steps.
Local site files should be on your hard drive.  The same computer hard drive that Dreamweaver is installed on.  For sake of argument, let's put your site files into a folder called YourSiteName on your C: drive.  Do not use any spaces or special characters in your folder or filenames.
LocalSite = C:\YourSiteName
Then tell DW where to find that folder as in the screenshot I posted earlier.
Next, define your remote server settings and tell DW which root directory your hosting company told you to use for your site files.  Some hosts use public_html or htdocs or www.  And some hosts don't use one at all in which case you leave that field blank.
See screenshots.
Next hit More Options.
Hit the test button to confirm you can connect to the remote server.
Nancy O.

Similar Messages

  • Why can't i print a web page,

    why can't i print a web page, using windows vista 64, HP photosmart 8250?

    This software can help print from the web:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01812475&cc=us&dlc=en&lc=en&product=443024&tmp_​...
    This utility can help determine if things may not be setup correctly:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?cc=us&lc=en&jumpid=ex_r4155/hho/ipg/ccdoc/p​...
    007OHMSS
    I was a support engineer for HP.
    If the advice resolved the situation, please mark it as a solution. Thank you.

  • Why can't I print a web page from my Android 4.1 phone to my 8500a printer? e-print is working.

    Why can't I print a web page from my Samsung Android 4.1 to my Officejet Pro 8500A. eprint is working, so I can send e-mails to my e-print address, but when I try to print a web page, it says that I don't have a printer. Can someone help me with this? 
    This question was solved.
    View Solution.

    Just received an update to the Android version of HP ePrint.
    It now has the ability to print web pages!  Thanks HP!  
    WyreNut
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • Why can't I print a web page on my HP 1600 with FF4 but is works just fine with FF3?

    For example a web page that shows a recipe. It won't print. I select print and nothing. Works just fine on Firefox 3

    {Ctrl + P} or File > Print will bring up the "native print dialog" box.
    Is your printer selected in the '''Printer - Name''' box at the top? <br />Is '''Print to File''' selected in the mid-point on the right-side of that dialog? (should not be check-marked)

  • Can't convert certain IE Web Pages using Acrobat 9 Pro

    http://mediasolveconnect.com/demo/?scene=test1#Endcap-Sponsorship
    I am able to successfully convert various web pages in IE to pdf however when I try to convert the pages on this site I only get a solid black page.

    This page is a Flash site, while Acrobat supports importing Flash content, entire sites built in Flash often have issues displayed as a PDF page.

  • I am on v6.0.2 with a Vista O/S, why can I not scroll the Web page with my mouse ball?

    I am on the latest version of Firefox and I run Vista OS on my desktop. Why does the mouse ball function for scrolling not work with Firefox?

    Hello jaybearden,
    Thanks for the question. After reviewing your post, it sounds like you are not able to restore the iOS device since you get an error 9. I would recommend that you read this article, it may be able to help the issue.
    Resolve iOS update and restore errors - Apple Support
    Check your security software
    Related errors: 2, 4, 6, 9, 1000, 1611, 9006. Sometimes security software can prevent your device from communicating with either the Apple update server or with your device.
    Check your security software and settings to make sure that they aren't preventing a connection to the Apple servers.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • Why can"t I enlarge some web pages on my Ipad?

    Sometimes I can enlarge the screen &amp; other times it won't allow me. For example when checking my bank statements. Thanks!

    Without you giving us a specific example all we can do is speculate. Some sites are coded using absolute layout and formatting. Some sites are coded using relative layout and formatting. I speculate that the site you are posting about uses absolute layout and formatting so that the size and format can not be changed. This ensures that the page always displays like the owner wants it displayed.

  • Can't fully download long web-pages using HttpURLConnection

    I'm using these two methods:
    /**keeps document encoding or sets Cp1251 as default
          * @param uri is uri to document
          * @return {@link InputStreamReader} with encoding
         public static InputStreamReader getInputStreamReader(String uri) throws IOException{
              URL url = new URL(uri);
              HttpURLConnection urlConn = (HttpURLConnection)url.openConnection();
              urlConn.setConnectTimeout(timeout);
              urlConn.setDefaultUseCaches( false );
            urlConn.setUseCaches( false );
            urlConn.setRequestProperty( "Cache-Control", "max-age=0,no-cache" );
            urlConn.setRequestProperty( "Pragma", "no-cache" );
            String encoding = urlConn.getContentEncoding();
            if(encoding == null || encoding.equals("") ){
                 String Content_Type = urlConn.getHeaderField("Content-Type");
                 if(Content_Type.contains("charset=")){
                     String[] t = Content_Type.split("charset=");
                     if(t != null && t.length>0){
                          encoding = t[t.length-1];
            if(encoding == null || encoding.equals("")){
                 encoding = "windows-1251";
            InputStreamReader isr = new InputStreamReader(urlConn.getInputStream(), encoding);
            return isr;
         /**Returns content in default charset
          * @param uri is uri to document you want to get
          * @return String with encoding equal to {@link Charset.defaultCharset()}
         public static String fetchEncodedURI(String uri) throws IOException{
              InputStreamReader isr = getInputStreamReader(uri);
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              OutputStreamWriter osw = new OutputStreamWriter( baos, Charset.defaultCharset());
              char[] buffer = new char[256];
              int n = -1;
              while ( (n = isr.read(buffer))!= -1 ){
                   osw.write(buffer, 0, n);
            String outputString = new String(baos.toByteArray());
            osw.flush();
            osw.close();
            baos.flush();
            baos.close();
            return outputString;
         }The problem is that some pages are cut! I make output of result string (outputString) ans see for example just 2/3 of the real page content.
    Is it possible to overcome this difficulty?
    Edited by: Holod on 01.10.2008 11:31

    ejp wrote:
    Personally, I'd suggest reading the whole page as bytes into baos and covert to string with one call to boas.toString(encoding)Or use a StringWriter. The way you're doing it is the worst of both worlds.Can you help me please with a sample link?
    Or please tell, is it right solution?
             /**Returns content in default charset
          * @param uri is uri to document you want to get
          * @return String with encoding equal to {@link Charset.defaultCharset()}
         public static String fetchEncodedURI(String uri) throws IOException{
              InputStreamReader isr = getInputStreamReader(uri);
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              //OutputStreamWriter osw = new OutputStreamWriter( baos, Charset.defaultCharset());
              StringWriter sw = new StringWriter();
              char[] buffer = new char[256];
              int n = -1;
              int previousPosititon = 0;
              while ( (n = isr.read(buffer))!= -1 ){
                   sw.write(buffer,previousPosititon,n);
                   previousPosititon+=n;
                   //osw.write(buffer, 0, n);
            //osw.flush();
         //String outputString = new String(baos.toByteArray());
            String outputString = sw.toString();
            //osw.close();
            baos.flush();
            baos.close();
            return outputString;
         }Edited by: Holod on 03.10.2008 5:41

  • Can not start Enterprise Manager web page

    I can not start Enterprise Manager web page.
    Here is my steps:
    1. Start enterprise manager
    emctl start
    Waiting for EM to initialize ...Started
    2. Check status:
    emctl status
    EMD is up and running : 200 OK
    3. Start the web page
    http://myhost:1810/
    4. get following error
    "There was no response. The server could be down or is not responding"
    System info:
    Database: 8.1.7.2
    OAS: 9.2.0.2
    JDK: 1.3.0_02
    Server OS: SunOS 5.8
    My question is where is the log file of enterprise manager and what the problem is.
    Thanks in advance
    Don

    diego,
    Thank you for your help. when I try your command I get following error:
    emctl start iasconsole
    Unknown command option
    Usage::
    emctl start|stop|status
    emctl reload | upload
    emctl set credentials [<Target_name>[:<Target_Type>]]
    emctl gencertrequest
    emctl installcert [-ca|-cert] <certificate base64 text file>
    emctl set ssl test|on|off|password [<old password> <new password>]
    emctl set password <new pwd>
    emctl authenticate <pwd>
    emctl switch home [-silent <new_home>]
    emctl config <options>
    emctl config options can be listed by typing "emctl config"

  • How can I add a podcast episode to an existing web page using iWeb?

    How can I add an episode to an existing web page using iWeb?
    I could probably figure this out but I am afraid if I make changes to the site and re-upload it to the podcast area I will have just doubled it. I see them repeated from time to time.
    What is the proper protocal? Thanks
    Mac G4   Mac OS X (10.4.3)  

    Hi apple-owner,
    Method 1.
    To create this scatter-plot, I selected the whole of Columns A and B. (Shift click on the Column reference tabs).
    The plot ignores blank rows, but they are "ready" for new data:
    Method 2
    If you did not select whole columns, you can extend the "active" rows. Rows 1-5 selected:
    Add more data rows and drag the fill handle (small white circle, bottom right) down
    Regards,
    Ian.

  • Redirect to "can't find the i-web page"/file name change

    i published a website thru mobileme (http://www.hale-o-lani-aloha.com). when i type my website address in e-mails and check the link, i sometimes got directed to a page that said "we're sorry but we can't find the i-web page you've requested..." (yes, i've checked my typing!)
    when i created my sitemap (with rage sitemap automator), i was told that the apostrophe in the file name for my first page was probably causing the problem. my file name was"hale o'lani aloha". i changed the file name for the webpage to "hale o lani aloha" and republished, redid the sitemap, etc. i now have 2 sets of files on my i-disk: one for Haleo'LaniAloha and the other for HaleoLaniAloha (i don't know why it's not "HaleoLani"). both sets of files have folders with the individual components of the site, css style sheet, java script and html files. the bad redirect site address has "/Site/HaleoLaniAloha" in the address. (when i checked the "oLani" html file on my i-disk, it opens an incomplete version of my first webpage. however, the "o'Lani" html file opens the fully functioning page). when the links work, the address has "/Site/Haleo_LaniAloha" (the new file name). so that long explanation brings me to my questions:
    - did the apostrophe in my file name truly mess things up?
    - since my fully functioning html file on i-disk has the apostrophe in it, should i rename my file with the apostrophe and delete the non-apostrophe files from my i-disk (even tho the working website has "oLani")?
    thanks for any info that can help clear up this mess!

    You can find import now in the Library:
    *Bookmarks > Show All Bookmarks > Import & Backup > Import Data from Another Browser

  • Can't delete/remove Aperture Web Page

    I just published a web page using "Publish to MobileMe" and now can't get rid of it they way they describe in the manual.
    From the manual, it says:
    "To stop publishing an album in your .Mac account:
    1 Select the album that you want to remove from your .Mac account in the “Albums you
    published as” list.
    2 Click Stop Publishing."
    The only problem is that, when I got to preferences>MobileMe, my page does not show up. It's like it doesn't exist.
    So why it's not showing up is beyond me. So, I can't delete it that way. Can anyone tell me why this might be happening? I went and deleted it by just deleting the files on my iDisk, but that doesn't explain why this is happening. Anyone come across this? Thanks.

    Figured this out on my own.

  • How can I delete an old web page ??

    How can I delete an old web page ?? I have created a web page some time ago and now I want to delete it but i do not know how to do it: can anyone help me ?

    Delete the web page where it is published.
    If it is published to MobileMe, then you need to log into MobileMe and go to your iDisk or mount it on your desktop and then delete it from your Web/sites folder.
    If you have published to a server, then you'll need to download Cyberduck, Filezilla or Transmit - all dedicated ftp programmes to connect with your host/server and then delete your old files from the server.
    It really is not hard.

  • Why can't I print a full page photo in Photoshop Elements 10???

    Why can't I print a FULL PAGE PHOTO IN PHOTOSHOP ELEMENTS VERSION 10, (letter size 8.5 x 11?)  I have tried resizing, cropping and anything else I can possibly think of to no avail!!! VERSION 7 was so easy just print (fit to page)! I'am pulling my hair out trying to accomplish this! If anyone can tell me how to do it I would be eternally grateful! Thanks Julie
    P.S. I can't even print a 8 x 10 properly!

    Sarah, my printer drivers are updated! This problem seems SO COMPLICATED when it should be so easy!  It's like the more advanced these programs get the less you can figure them out!!!!  I'am ready to offer a reward to fix this!!! The stress of trying to figure this out is making me crazy!
      From: saurabh288<mailto:[email protected]>
      To: JULIE HIGH<mailto:[email protected]>
      Sent: Thursday, February 14, 2013 11:10 PM
      Subject: Why can't I print a full page photo in Photoshop Elements 10???
            Re: Why can't I print a full page photo in Photoshop Elements 10???
            created by saurabh288<http://forums.adobe.com/people/saurabh288> in Photoshop Elements - View the full discussion<http://forums.adobe.com/message/5074854#5074854

  • I can no longer print a web page. I get an error code 20 message

    I can no longer print a web page. When I do I get an error code 20, unspecified problem.

    Try a battery pull, wait a couple of minutes and pop it back in..

Maybe you are looking for