Old web page always appears

Hello

I just started working on a web server, to make changes to the web site up-to-date. I went into Dreamweaver CS5.5 and removed links to a photo and the verbiage accompanying. Then I saved the file changed on the web server, restart the IIS service, but when I go to the web site of the old web page is still there. I emptied the cache on my IE, but no luck. Is there something else I need to do to get the new page to display?

Usually, this is because simply downloading some is not to the correct location. Most of the time when these questions come to the top, the root directory is incorrect in your Site definition or a redundant root directory exist locally.

Your directories between your server and the local files structures should be almost identical (waiters usually a few extra folders) and root folder name of your server does NOT appear in your local files at all. You should only move the contents of your local root folder for the folder root of the server.

Take a look at your files window when it is connected to the server. Hit the expand button in the files window toolbar to view a side-by-side of your directories. You should not see whatever it is above your remote root folder (usually www, htdocs or public_html but might be anything) on the server side and you should not see this folder name root on the local side.

If you don't see something 'above' your remote root folder, you must change the setting for the root directory of the server under Site > Manage Sites > click your site > change > servers > click the server > change > root directory (make sure that your real root folder is set).

If you see locally the root directory of the server, which now probably will also appear in the directory root on the server (a redundant root folder), you can click and drag all the files the in the folder of the root in duplicate and on the local name of root files and release them. DW will update all your file names.

If none of the above applies, it is possible to you server active cache and it is your server to hang the old information.

Tags: Dreamweaver

Similar Questions

  • WNR2020 - setting up the Web page that appears when you can access the guest network

    Someone knows how to set the Web page that appears when you access the network of comments? I use the WNR2020 router. Thank you very much.

    It can be done by using a different material.

    Above all, you will be able to find this feature in our product business and it's called the HTTP redirect.

    You can check some Points of access such as WAC720, WAC730.

  • Changes to the web page only appear not

    I use Dreamweaver CS3, I've made a few changes text to one of my web pages, I clicked on save, went to check on preview browser and it isn't here. What I am doing wrong?

    Thank you

    If you downloaded files to the server and then surfed on your web page online, and changes are not displayed, your browser may have just cached the old version of the web page.

    Web browsers cache things like html, javascript, css, images, framesets, and so on so that your browsing experience is faster you never see again the page.

    Press and hold the 'SHIFT' on your keyboard while at the same time a left click on the button "Reload" in your browser to get the freshest version of the web page you just downloaded.

    Please note that this technique does not always work if your web page uses frames.  If such is the case, do a right click in each picture and select reload from the context menu.

  • After updating a Web site always appear the old file

    I have a site for my bowling club. When I update for instanse a result file it seems wrong - it's the old file that appears. It does not help to restart Firefox or delete the file (yes I try to open it and then I got the usual error message) BUT if I download the file again and then try to open Firefox still displays the old. There is no problem in Internet EXPLORER or Chrome.
    ??? of ganitaa

    Please update Firefox 19.0.2 Firefox updated to the latest version

    So please clear your cache and cookies, How to clear the cache of Firefox

  • unwanted Web page keeps appearing in the history

    For some reason, the same page reappears even when I clear the history. In fact, I pressed shift key at the same time, and while it worked for a few days, it is more the fact. Can someone enlighten me please? Should I buy ClamXav and use it?

    My first reaction to the purchase of Clamxav is don't do it. Instead, I would suggest that you please download and install EtreCheck from http://etrecheck.com/

    Run it and post the report here.

  • Web pages are appearing in only the quarter left of my screen, why?

    See the above title

    Hello

    1. what web browser do you use?

    2. you remember to make changes to the computer before this problem?

    3. are you not able to maximize the browser window?

    Please provide us with more information to help you further on this issue.

    If you are using Internet Explorer, follow these steps:

    Use Internet Explorer in no add-on mode and check the status.

    (a) click Start.

    (b) click on all the programs.

    (c) click on Accessories.

    (d) click on System Tools.

    (e) click on Internet Explorer (No Add-ons).

    If this resolves the problem, follow these steps to isolate the browser add-on that is causing the problem:

    (a) click on Tools, then Internet Options.

    (b) click the programs tab, and then click Manage Add-ons.

    (c) click an add-on in the name list, and then click disable.

    (d) repeat step c until you identify the add-on that is causing the problem.

    If this solves the problem, this could be caused by an adware installed as add-on.

  • Strange behavior on the web page of preloading in WebView

    I have the following problem: in my Swing application, I want to display a web page. To do this, I use a JFXPanel that contains a WebView. The web page must be loaded in the background, and only if the loading process is totally finished I want to make the JFXPanel visible. I use thegetLoadWorker().workDoneProperty() method of the corresponding WebEngine to determine if the page is totally loaded.

    The problem is, now that the JFXPanel gets visible, I see initially a totally empty Board, and after a short period, the web page in Web view is visible. I made a simple Application demo that reproduces this behavior. If the page is loaded, a button is enabled and clicking on this button adds the WebView Panel below. In addition the link following points to an animated gif that shows the behavior: http://tinypic.com/view.php?pic=oh66bl & s = 5 #. Ujv2IhddWKl

    Here is the code of the demo application:

    import java.awt.BorderLayout;
    import java.awt.Dimension;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Platform;
    import javafx.beans.value.ChangeListener;
    import javafx.beans.value.ObservableValue;
    import javafx.embed.swing.JFXPanel;
    import javafx.scene.Scene;
    import javafx.scene.web.WebEngine;
    import javafx.scene.web.WebView;
    import javax.swing.JFrame;
    import javax.swing.SwingUtilities;
    public class WebViewTest extends javax.swing.JPanel {
    
       private static JFXPanel browserFxPanel;
       private WebView webView;
       private WebEngine eng;
    
       /**
      * Creates new form WebViewTest
      */
       public WebViewTest() {
      initComponents();
       Platform.setImplicitExit(false);
      browserFxPanel = new JFXPanel();
       Platform.runLater(new Runnable() {
       public void run() {
      webView = createBrowser();
       Scene scene = new Scene(webView);
      scene.setFill(null);
      browserFxPanel.setScene(
      scene);
       }
       });
       }
    
       /**
      * This method is called from within the constructor to initialize the form. WARNING: Do NOT modify this code. The
      * content of this method is always regenerated by the Form Editor.
      */
       @SuppressWarnings("unchecked")
       // <editor-fold defaultstate="collapsed" desc="Generated Code">  
       private void initComponents() {
      java.awt.GridBagConstraints gridBagConstraints;
    
      pnlMain = new javax.swing.JPanel();
      showWebpageButton = new javax.swing.JButton();
    
      setLayout(new java.awt.GridBagLayout());
    
      pnlMain.setLayout(new java.awt.BorderLayout());
      gridBagConstraints = new java.awt.GridBagConstraints();
      gridBagConstraints.gridx = 0;
      gridBagConstraints.gridy = 1;
      gridBagConstraints.gridwidth = 3;
      gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
      gridBagConstraints.weightx = 1.0;
      gridBagConstraints.weighty = 1.0;
      add(pnlMain, gridBagConstraints);
    
      showWebpageButton.setText("show web page");
      showWebpageButton.setEnabled(false);
      showWebpageButton.addActionListener(new java.awt.event.ActionListener() {
       public void actionPerformed(java.awt.event.ActionEvent evt) {
      showWebpageButtonActionPerformed(evt);
       }
       });
      gridBagConstraints = new java.awt.GridBagConstraints();
      gridBagConstraints.gridx = 1;
      gridBagConstraints.gridy = 0;
      gridBagConstraints.insets = new java.awt.Insets(10, 10, 10, 10);
      add(showWebpageButton, gridBagConstraints);
       }// </editor-fold>  
    
       private void showWebpageButtonActionPerformed(java.awt.event.ActionEvent evt) {   
      pnlMain.removeAll();
      pnlMain.add(browserFxPanel, BorderLayout.CENTER);
       WebViewTest.this.invalidate();
       WebViewTest.this.revalidate();
       }   
       // Variables declaration - do not modify  
       private javax.swing.JPanel pnlMain;
       private javax.swing.JButton showWebpageButton;
       // End of variables declaration  
    
       private WebView createBrowser() {
       Double widthDouble = pnlMain.getSize().getWidth();
       Double heightDouble = pnlMain.getSize().getHeight();
       final WebView view = new WebView();
      view.setMinSize(widthDouble, heightDouble);
      view.setPrefSize(widthDouble, heightDouble);
      eng = view.getEngine();
      eng.load("http://todomvc.com/architecture-examples/angularjs/#/");
      eng.getLoadWorker().workDoneProperty().addListener(new ChangeListener<Number>() {
       public void changed(ObservableValue<? extends Number> ov, Number t, Number t1) {
       final double workDone = eng.getLoadWorker().getWorkDone();
       final double totalWork = eng.getLoadWorker().getTotalWork();
       if (workDone == totalWork) {
      showWebpageButton.setEnabled(true);
       }
       }
       });
       return view;
       }
    
       public static void main(String[] args) {
       SwingUtilities.invokeLater(new Runnable() {
       public void run() {
       final JFrame f = new JFrame("Navigator Dummy");
      f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
      f.setSize(new Dimension(1024, 800));
       final WebViewTest navDummy = new WebViewTest();
      f.getContentPane().add(navDummy);
      f.setVisible(true);
       }
       });
       }
    }
    
    
    

    I don "t understand this behavior, in fact the page has already been loaded. To me, it seems that the WebView starts to render the site just to the point where it becomes visible. What can I do to get the WebView already shows the web page is loaded right now that it becomes Visible (to avoid this effect of flickr)?

    I already posted this question on StackOverflow (see http://stackoverflow.com/questions/18873315/javafx-webview-loading-page-in-background ) but didn't get an answer and found this forum today.

    Thanks in advance!

    Try the updated version in this post.

    It requires a snapshot offscreen before displaying the Web mode to make sure all is rendered before the Web is displayed.

    The code is kind of ugly and the 'solution' is a bit of a hack, you would probably want to clean it up a bit before using it anywhere (for example, there is no need to create a new WebView and snapshot, web page on each load - I did it just to get a feel for the worst-case scenario and try to pinpoint where are produce slowdowns).

    A small rectangle moves back on the top of the screen so that the fluidity of the animation can be monitored.

    On the first charge, there will be a slight stutter in the animation, but the rendered web page instantly appears when click the show page"" button.

    As you say, the stuttering occurs only the first time the page is loaded, then everything is smooth.  If you use a progress bar regular instead of an animation, the initial stuttering is probably fine, because people expect to see breaks in the progress bars from time to time (more progress reported by progress bars is not a smooth linear progression).  My guess is that if you use a regular progress bar, the behavior seen with this example is probably acceptable for almost all users.

    As for the differences between the rendering between 2.2 JavaFX and JavaFX 8, there was a lot of changes to the internal architecture of JavaFX for JavaFX 8 that have improved rendering performance, as well as probably represents the delta.

    import javafx.animation.*;
    import javafx.application.Application;
    import javafx.concurrent.Worker;
    import javafx.geometry.*;
    import javafx.scene.Scene;
    import javafx.scene.control.*;
    import javafx.scene.layout.*;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.web.WebView;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    
    public class WebViewJavaFXTest extends Application {
        public static final String PAGE_URL = "http://todomvc.com/architecture-examples/angularjs/#/";
        private Rectangle distractor;
    
        @Override
        public void start(Stage stage) throws Exception {
            distractor = new Rectangle(20, 20, Color.CORAL);
            TranslateTransition r = new TranslateTransition(Duration.seconds(10), distractor);
            r.setFromX(0);
            r.setToX(800);
            r.setInterpolator(Interpolator.LINEAR);
            r.setCycleCount(RotateTransition.INDEFINITE);
            r.setAutoReverse(true);
            r.play();
    
            VBox layout = initView();
            stage.setScene(new Scene(layout));
            stage.show();
        }
    
        private VBox initView() {
            final ProgressBar progress = new ProgressBar();
            final Button showWebView = new Button("Show Page");
            showWebView.setDisable(true);
            HBox controls = new HBox(
                    10,
                    progress,
                    showWebView
            );
            controls.setAlignment(Pos.CENTER_LEFT);
            Button tryAgain = new Button("Try Again");
            tryAgain.setOnAction(actionEvent ->
                    tryAgain.getScene().setRoot(
                            initView()
                    )
            );
    
            StackPane webViewHolder = new StackPane();
            webViewHolder.setPrefSize(1024, 700);
    
            final WebView webView = new WebView();
            progress.progressProperty().bind(
                    webView.getEngine().getLoadWorker().progressProperty()
            );
            webView.setPrefSize(1024, 700);
            webView.getEngine().load(PAGE_URL);
            webView.getEngine().getLoadWorker().stateProperty().addListener(
                    (o, old, state) -> {
                        if (state == Worker.State.SUCCEEDED) {
                            webView.snapshot(
                                    snapshotResult -> {
                                        showWebView.setDisable(false);
                                        return null;
                                    },
                                    null,
                                    null
                            );
                        } else {
                            showWebView.setDisable(true);
                        }
                    }
            );
    
            showWebView.setOnAction(actionEvent -> {
                controls.getChildren().setAll(
                        tryAgain
                );
                webViewHolder.getChildren().setAll(webView);
            });
            VBox layout = new VBox(
                    10,
                    distractor,
                    controls,
                    webViewHolder
            );
            layout.setPadding(new Insets(10));
    
            return layout;
        }
    
        public static void main(String[] args) {
            launch();
        }
    
    }
    
  • on a computer specific firefox opens a Web page expired

    At home, we have several computers. One of them is opening an old web page which has been changed since. Other computers open the appropriate web page. I tried to reset FF, clear the cache and history, created a new profile, but no correction of the problem.
    Does anyone have an idea what to do?

    Thank you

    Philipp,

    Good suggestion! That's all. I changed the DNS and be it resolved the problem.
    Thank you very much for your help!

  • get rid of the bright white background on web pages

    I need to change the background color behind the text other than bright white to reduce eye fatigue, I have am experiencing. While I can change the color in Windows 7, when I'm online web pages always have this white background, and for older eyes, this is a problem.

    non-strabisme is better colours then customized Firefox, but it still a few buttons (hidden in the background color that can be read by hovering by balloons), it also lacks disabled photos on Facebook albums (see single color background instead of the photo, for a few Tags pictures it shows dark square what part of picture boxes in the label box).

  • When you start firefox, my home page always looks bad until I update

    When Firefox is started for the first time a Web page always seems bad until I update. Target any new page navigation, the window or tab open will look fine until I have re - open and close the program. It happens to the first navigation

    example image

    As shown in the linked image, it will happen even to several pages if I have a plugin update at startup

    "Clear the Cache": Tools > Options > advanced > network > storage (Cache) offline: 'clear now '.

    'Delete Cookies' of sites that cause problems: Tools > Options > privacy > Cookies: "show the Cookies".

    Start Firefox in Firefox to solve the issues in Safe Mode to check if one of your modules is causing your problem (switch to the DEFAULT theme: Tools > Modules > themes).

    See the extensions, themes and problems of hardware acceleration to resolve common troubleshooting Firefox problems and troubleshooting questions with plugins like Flash or Java to solve common Firefox problems

  • This Web page could not be saved.

    Lately, I noticed that I could record is no longer a webpage via Internet Explorer 7. I thought it had something to do with the release of the new version, IE 8. Finally, I installed IE 8, thinking that the problem could be solved, but whenever I try to save a Web page, still appears the message "this Web page could not be saved.". I also remember that it used to be something like "this webpage could not be saved because one of the files is missing" or similar, when I still had IE 7. I tried to save .mhtml using another browser, and there was no problem.

    What could be the problem then? If my computer has been infected by a virus/malware, etc.? Or only what setting I need to change (but I doubt it)?

    How can I solve this problem? (I really prefer IE 7 or 8 on other browsers).

    Help me please... Thanks ^_^

    Hello D30.

    Thanks for posting your question on the Microsoft answers Forum.

    (1) uninstall IE8 since you were still presenting the same issue with IE7.

    (2) check if you have active modules. If you do, then try with disabled modules.
    Go to IE, click on tools, then click on Manage Add-ons, this will show if the modules are on or off. To temporarily disable all add-ons:
    Click the Start button, click principally made programs, accessories, click System Tools, and then click Internet Explorer (No Add-ons).

    (3) If you are still not able to save, you have User Account Control (UAC) turned on?
    If you disable UAC, you are able to save a web page?
    To disable UAC, go to start, Control Panel, Security Center, choose other security settings.
    Expand the arrow to the right and you see the user account control. If it is selected, clear and
    try to save a page again.

    4) go in Mode safe mode with networking and see if you can save a page. If Yes, then another program or software is interfering and not allowing you to save a page IE.

    -Restart your computer and start pressing F8 on your keyboard. On a computer that is configured to start to multiple operating systems, you can press the F8 key when you see the boot menu.
    -When the Windows Advanced Options menu appears, select Safe Mode, and then press ENTER.
    -Log on to Windows by using the administrator account or any account of a user with administrator privileges.

    NOTE: In Safe Mode, your display system and the Bureau will look and perform differently than in Normal Mode. This is only temporary. To return the system to Normal mode, we can simply restart the computer.

    If please reply back and let us know if these measures have helped with your question or if you need further assistance.

    Thank you

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • WMP110v2 network connection, but do not open web pages

    I have a Dell 2 GB of Ram and XP PC with the latest service packs and updates. No apparent reason, I had a little difficulty with the installation but after only two tests, but I the WMP110 to properly install and connect to my wireless connection. I use a D - Link Wireless Router N DIR-615 and my other wireless devices are running smooth.

    My problem is that my wireless connection will not go to the internet and I tried to use the Linksys monitor, but also Windows network utilities to check the problem and run the wireless but not connect me. The Web page tries to load, but then ends with the screen 'diagnose connection '.

    I think it will be easy but don't have yet to see a post explaining this problem and I don't know what to try next. Any help would be appreciated.

    Thank you for your interest in Klatch - I got it working well. As the biggest computer frustration usually boils down to a few clicks. For those who have the same problem, here is what has held back me.

    Until I'm able to get a connection I had to find some time to figure out how. Until I went in: WIFI - right click on the wireless connection, and then select PROPERTIES - click on the tab that says WIRELESS NETWORK -, PROPERTY - and then, AUTHENTICATION - once you see a checkbox indicating "authentication enable 802. 1 x for this computer"- UNCHECK this box. You will be able to connect to the wireless network.

    Then, my next problem and the reason for this post was that my network is connected, but I could not display web pages. This solution is buried in the manual on the CD itself. To resolve this issue, you must go into the DEVICE MANAGER to view the Linksys WMP110 under network adapters. Click on in the driver, then go to the ADVANCED tab. Here, you will see a list. You will need to click on the NETWORK TYPE. You should see two types of networks that you can select. The default value for mine was INFRASTRUCTURE. I had deselect this and select AD-HOC instead. My web pages now appear quickly, and I can browse the internet with wireless only!

    My setup is a N D - Link DIR-615 wireless router. I run Windows XP Home Edition on a Dell system. My type of security is WEP.

    Hope this info may help others.

  • I have some videos .wmv on a Web page that work in all the

    major browsers (including Safari on a Mac), but not Safari on Windows. I downloaded and installed (as I know), Quick Time and Flash plug-ins for Safari (Windows), but the Web page always videos and, in fact, is always asking me to plug-ins.

    I use Windows Media Player 12 and on my desk that's what the .wmv files will open in. Now, if I open Safari, then look for the folder on my desktop and open the same .wmv file that I have on the Web page, the film plays in Safari.

    Someone has an idea of what may be the problem?

    Thank you.

    Blue

    Hi blue,

    The question you posted would be better suited in the Apple Support Forums. View the query in the Apple forums for assistance. Please see the links below.

    http://www.Apple.com/support/

    https://discussions.Apple.com/index.jspa

    I hope this helps.

    Back to us for any problem related to Windows. We will be happy to help you.

  • Windows 7: some web pages display words on each other!

    I have a HP Pavilion dv7-4083 Entertainment notebook it came pre-installed with Windows 7. On some web pages, certain words or phrases are superimposed makes it very difficult to view the content. I tried to click on the page icon broken located on the address bar of web page at the top of the screen without change. Help, please! I have

    Hello

    1. what version of Internet explore is installed on the computer?
    2 is this problem specific to one Web site?
    3. did you of recent changes on the computer before this problem?

    If the problem is only with Internet Explorer, then return the help link and check if that helps.

    Why a few blank pages or incorrectly displayed in Internet Explorer?
    http://Windows.Microsoft.com/en-us/Windows7/webpages-look-incorrect-in-Internet-Explorer

    If you use Internet Explorer 9, see the article:

    Web pages can appear deformed or distorted and colors will not display correctly in Internet Explorer 9

    http://support.Microsoft.com/kb/2396576

    It will be useful.

  • Photo would not publish it on the Web page

    New to dreamweaver. Added a poem and a picture to the existing web page. Appeared in design, alive and overview of web browser. Photo comes with an x on my website. I tried different jpeg, size, etc. renamed. Same result. What I am doing wrong?

    Thank you, I just had to save the image on my www. file in my website in the documents of the CP and it worked. Thanks for the quick response.  I'm code challenged and Dream Weaver... Having lost my easy editing in Contribute, you will hear from me again.

Maybe you are looking for

  • Not found driver software CD.

    I'm unable to copy or burn CDs more. My I Tunes tells me not found driver CD. What should I do?

  • probook450G2: biometric lock

    I've been good a new probook450G2. I can not activate to activate the fingerprint lock. I already intall validity fingerprint sensor driver.but I can't lock. What is action for that fingerprinting lock.advance thnx...

  • Using JL_CMDER blackBerry Smartphones

    I'm planning to use JL_CMDER to try to treat a newly developed battery drain problem. I have a few questions first: 1. I know this erases EVERYTHING, but when I reload the blackberry is all the 'software' OEM be reinstalled (IE word go, flickr, faceb

  • Failed to remove unused footage MXF with function "make offline".

    When I arrive at the end of the major projects, I want to sort the images by usage and delete unused items.It has always worked well, until I started to edit my Canon XF305 MXF files.Now when I go on > make offline > Media files are deleted, I get th

  • doing bij voorvertoningscache

    Bij het opstarten meld LR 'foutvbij voorvertoningscache' LR zal said proberen you verhelpen bij nieuwe beginning.Says 6 maal geprobeerd, elke keer connection fusion. NET nu ik een heel een neef moet fotograferen van morgen.Hell of development na 10,