Getting the "Page Has Changed" error.

I'm using InContext Editing and am getting this error:
Page Has Changed
The page you are trying to edit or duplicate could not be found on the server. You can check if the page was deleted or moved in the meantime.
The page does exist, I can view it in the browser and thru includes/ice/ide.html. I can Duplicate the page, and the page gets duplicated on the server, but  I can't edit the duplicated page either.
My pages are pretty simple, but do have a few include files in them. So I deleted the includes, uploaded a straight .html file, and I still get the error.
In the "Configure Site" section, I can connect to my ftp site. I can browse the directories, etc., so I'm definitely connecting.
The weird thing is, I upload this exact same site to a test server (on Linux), configure a new site in the admin, edit the same files and it works perfectly. But once I upload these files to a Windows/IIS server, I get this error.
Any ideas?
Thank you in advance.

Please send the url of the site,  the FTP server, username and password to [email protected] and we'll investigate this issue; also include a link to this forum post in your message.
Regards,
Dan Popa

Similar Messages

  • Page has changed error

    I have created an editable region on a very simple page -- a list of names that I would like to be able to change in the browser rather than launch Dreamweaver every time I want to add a name.  I added editable region and uploaded it with the ICE files.  When I hit the Edit Page I get the "Page has Changed" message:  "A new version of this page has been detected. The new version will be loaded" with an OK box.  However, it reverted to the unchanged page. Page Status (at the bottom left of the screen) says Published.   Once I could actually edit the page and it Page Status said Draft, but I could not publish it -- I received the same error as mentioned above.

    No, I use Transmit for OSX.
    The only other clue I have is that I have a reseller account at my host. The site that works in InContext is on the primary domain for the account. The sites that don't work with InContext are on other domains. And the site that works was setup in a subdirectory with a different FTP account than the primary FTP account.
    The site that works at the second host is just a standard shared hosting plan. So this seems to have something to do with the way my server is setup. Perhaps the way the reseller account is setup.
    For the time being, I've gone back to using Contribute because I needed a quick solution.

  • Page Has Changed ERROR! Help please!

    I am trying to edit an ICE site but I keep getting the error:
    PAGE HAS CHANGED-
    A new version of this page has been detected. The new page will be loaded.
    It loads the "new page" even though nothing has changed, only to happen again. I have used ICE on multiple other sites but this is the only one giving me trouble. The url is http://www.mainsqueezemusic.com.
    Can anyone help?

    I was able to edit and save the draft for the http://www.mainsqueezemusic.com/includes/ice/ide.html#page=home.html page and then edit the draft again with no problems.
    Is this issue still happening?
    On what page?
    Could you give more details?
    Regards,
    Dan Popa

  • On Drilling down between ADF Pages we get Row currency has changed error

    We have developed an Application using JDeveloper 10.1.3.2, you can login to
    http://ap6002fems.us.oracle.com:7778/SetupTaskList
    login with sso,
    On Top Right corner you have a global link 'Select', click it and select Business Process Home
    Click Detailed Business Process Link for 'Field Service and Depot Repair' Business Process and in Detailed Business Process Page, change Fusion Release to All, and select Activities Link for any Detailed Business Process and you will get
    Error:
    JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key0
    I tried checking the logs but log doesnt show up anything.
    I also tried changing Enable Token Validation to false in Page Definition and this Row Currency Issue doesnt come up, but it doesnt navigate to the next page, it reloads the existing Detailed Business Process Page.

    Hi,
    I would be surprised if anyone outside of Oracle can run your sample application because its behind the firewall.
    The error message is caused by changes that are applied to the underlying iterator without refreshing the UI in which case the two are out of synch. What helps is to PPR the UI (e.g the table as a result of a command action)
    Frank

  • Getting row currency has changed error and JBO-28010

    Hi Not sure if these two errors are connected
    I am using Jdeveloper 10.1.3.2 and OAS 10.1.3.1
    I have 4 -5 application modules connected to 3 different dB. Two days back i change the database connection to another and released to production because our db was shifted to another machine.
    Since then getting 2 errors randomly:
    oracle.jbo.PCollException: JBO-28010: Error while getting next sequence value for PS_TXN_seq from database
    java.sql.SQLException: ORA-02289: sequence does not exist
    oracle.jbo.JboException: JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[]
    Not sure how to solve this. I don't even know how PS_TXN_seq was created. How can i debug this
    The log file is too large
    Thanks

    I found a solution from section 19.4.1 in the 10.1.3 DEV Guide using partialSubmit and partialTriggers - the issue seems to be (from reading other posts) that the cursor in the iterator changes when validation fails.
    ----code example from the dev guide---
    <af:outputText value="#{bindings.AssignedToFirstName.inputValue}"
    partialTriggers="staffLOVLink"/>
    <af:outputText value="#{bindings.AssignedToLastName.inputValue}"
    partialTriggers="staffLOVLink"/>
    <af:commandLink id="staffLOVLink" action="dialog:StaffSearch"
    useWindow="true" immediate="true"
    partialSubmit="true"
    returnListener="#{backing_SREdit.handleStaffLOVReturn}"
    partialTriggers="status"
    disabled="#{bindings.Status.inputValue==2}">

  • Can't get the page to change

    I don't really know much about actionscript, but I want the login page to show up when the movie start, to go away when someone logs in and to come back if someone logs out.  I also want the pages to appear dynamically and not use goToAndStop or .visible, but I can't seem to get the login button working. If I remove the document class from the login pags and all references to it the button works, but it doesn't work when the document class and things are there.
    so here is the code.
    this is the document class .as code
    package {
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.net.URLRequest;
        import flash.net.URLVariables;
        import flash.net.URLLoader;
        import flash.net.URLLoaderDataFormat;
        import flash.display.Loader;
        public class loginPage extends MovieClip {
            public var noPass:Number=-1;
            //public var subBtnClick:Number=-1;
            public function getPass(event:Event):void {
                if (noPass==0) {
                    var passRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var passLoader:Loader = new Loader();
                    passLoader.load(passRequest);
                    addChild(passLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("back to the pass page");
                } else if (noPass==1) {
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    var navRequest:URLRequest=new URLRequest("Connect/ILNav.swf");
                    var navLoader:Loader = new Loader();
                    navLoader.load(navRequest);
                    addChild(navLoader);
                    removeChild(passLoader);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("here is the nav page");
                } else if (noPass==3) {
                    var defaultRequest:URLRequest=new URLRequest("PasswordPageTwo.swf");
                    var defaultLoader:Loader = new Loader();
                    defaultLoader.load(defaultRequest);
                    addChild(defaultLoader);
                    //addEventListener(Event.ENTER_FRAME, zeroPass);
                    removeEventListener(Event.ENTER_FRAME, getPass);
                    trace("default pass page");
          public function listenPass(event:Event):void{
                addEventListener(Event.ENTER_FRAME, zeroPass) 
                removeEventListener(Event.ENTER_FRAME, listenPass) 
            public var reLoginName:String; 
            public var reLoginPassword:String; 
            public var myTheme:Number; 
            public var myHelper:Number; 
            public var myFont:String; 
            public var myBackground:String; 
            public var userSet:Number; 
    This is the first layer movie's code. This works in the begining to load the login layer.
    function zeroPass(event:Event):void {
        if(noPass>=0){
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
        } else {
            noPass=3;
        addEventListener(Event.ENTER_FRAME, getPass);
        removeEventListener(Event.ENTER_FRAME, zeroPass);
    addEventListener(Event.ENTER_FRAME, zeroPass);
    This is the login code.  I just have the testing code done so when it clicks it is meant to log off. This is where the button does not work.
    function myLogin(event:MouseEvent):void {
        trace("submit works");
        noPass=0;
        addEventListener(Event.ENTER_FRAME, listenPass);
        submit_btn.removeEventListener(MouseEvent.CLICK, myLogin);
    submit_btn.addEventListener(MouseEvent.CLICK, myLogin);
    I also have the navigation page that I cannot test because the login page doesn't work but it is the same code so it I think it is safe to say it does not work either.
    function myLogout(event:MouseEvent):void {
        noPass=1;
        trace("logout works");
        addEventListener(Event.ENTER_FRAME, listenPass);
        Logout_btn.removeEventListener(MouseEvent.CLICK, myLogout);
    Logout_btn.addEventListener(MouseEvent.CLICK, myLogout);
    like I have said I am new to actionscritp so I most likely have it all wrong.

    IF you are using 2-sided printing, in the print dialog you will have a selection for long side binding OR short side binding. Whichever setting you have set, switch to the other one.
    Walt

  • How do I get the pages left to read and the percentage of pages I've read back on my Kindle app?

    Suddenly the information at the bottom of the page that I'm reading is gone.  Typically there is a progress bar and then the percentage of pages I've read and the numbrt of pages I've read.  Now, all I have is the progress bar.  I don't know how to get that information back.  There does not seem to be a setting. 

    Thank to both of you....it worked!  I also found a settings button where all that can be turned on or off.  They just had a revision on the app and the information on the page has changed. 

  • The page has been reset

    finding website on google then try topen and get "the page has been reset"
    how do I overcome this

    Thank you very much for your reply. Unfortunatly no help. Mailnly being an octonogerian not totally familiar with pc speak..
    the problem was googled Christmas Hamper among the responses I clicked on BHS. and got page reset.
    Any shelter in a storm much appreciated

  • Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    Why is the link to my form getting this message?  I copied the link right from the page.  An error has occurred. The form does not exist. Please re-enter the web address as the link may be misspelled. [ref: cixTdh4JnkymYgz7awKoQ, BadRequest]

    My form - which was working great - disappeared when I did some editing; here is the message I get now.
    The form does not exist. Please re-enter the web address as the link may be misspelled.
    The link for the form is:
    https://adobeformscentral.com/?f=UqJr%2Aas2RJIHPVA4iGIQ6w
    Please look into the matter and resolve the issue at the earliest.
    Regards,
    Vaibhav Nigam

  • Mac OS 10.4.11, Firefox 3.6.25. My home page has changed from Google Search to Bing Search, how do i get rid of bing and get Google back?

    Mac OS 10.4.11, Firefox 3.6.25. My home page has changed from Google Search to Bing Search, how do i get rid of bing and get Google back?

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.com/kb/Preferences+are+not+saved

  • Jdev 11.1.2 - Getting view state of the page has expired. Reload the page.

    Hi All,
         I am Using Studio Edition Version 11.1.2.0.0 (11g Release2).
         Whenever I do some changes to Jspx file and
         trying to perform some operations in the Form Session got Timeout.
         In the JDEV Log recorded the message as:
         Do we need to do any changes in settings?.
         [01:23:15 PM] Updated /C:/Users/arenuk/AppData/Roaming/JDeveloper/system11.1.2.0.38.60.17/o.j2ee/drs/TestSample/ViewControllerWebApp.war
         <LifecycleImpl> <_handleException> ADF_FACES-60098:Faces lifecycle receives unhandled exceptions in phase RESTORE_VIEW 1
         javax.faces.application.ViewExpiredException: viewId:/view/src/jspx/Countries.jspx - ADF_FACES-30107:The view state of the page has expired. Reload the page.
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._restoreView(LifecycleImpl.java:718)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:341)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:204)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         And in one of my earlier threads I got solution (fast-swap Option need to be selected)
         for Null Pointer exception after Recompilation of Java classes in Debug Mode.
         Durga.

    Hi Arun,
         The word Form misleads you i think so its not Form. Jspx only.
         I have created a small sample application using HR database.
         Created CountriesEO using countries table.
         Created Countries.jspx, in that created one filterable table using CountriesVO.
         Run the Countries.jspx page is rendered on the Browser.
         Now if I do any change say for Ex: Given editingMode="editAll" to the Table Save and
         now come to the page already Running on the Browser and applied Filter for
         Country Name column this Error comes.
         1. Are you running the App in Debug mode? -- In Both Run & Debug Modes it comes.
         2. Is there any backing bean for the jspx page? -- no backing Bean created.
         Durga.
    Edited by: Durga on Aug 26, 2011 3:22 AM

  • Since I upgraded my Firefox..whenever I click on a link i get this error message...Java Script Exc in ev handl: Error: Bad NPObject as private data! Then I have to click ok to get the page to open.

    Since I upgraded my firefox..I get this box most of the time when I click on a link to go to another page...
    Java Script
    Exc in ev handl: Error: Bad NPObject as private data! Then I have to click ok to get the page to open.

    That issue can be caused by the McAfee Site Advisor extension
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • I keep getting This page has been reserved for future use when i try to login to the adobe business catalyst admin

    I'm trying to login to the adobe business catalyst for my website otterrise.co.uk.
    i keep getting
    This page has been reserved for future use
    I recently added the domain in site settings on the BC admin control panel and changed the nameservers with the registrar.
    is this only temporary? or do i need to upload the website again? (im uing adobe muse)
    Thanks

    Thanks for answering.
    i've used these three nameservers
    ns1.worldsecuresystems.com
    ns2.worldsecuresystems.com
    ns3.worldsecuresystems.com
    are they the correct nameservers to point to adobe business catalyst?
    i'll wait for 48 hrs... but just need to make sure im doing everything right.

  • I keep getting the message "An unknown error has occurred" when trying to sign in to the App Store. Why?

    I keep getting the message "An unknown error has occurred" when trying to sign in to the App Store. How do I solve this problem?

    Make sure you have the correct country selected. Click the round flag icon bottom right side of the App Store window.

  • When I hook my ipod up to my mac I used to get the Itunes has detected an ipod that appears to be corrupted error message. It would then sync all my song to the ipod but when I ejected it, none of the songs would be on the ipod. Now I hook it up and I get

    When I hook my ipod up to my mac I used to get the Itunes has detected an ipod that appears to be corrupted error message. It would then sync all my song to the ipod but when I ejected it, none of the songs would be on the ipod. Now I hook it up and I get the Mac OS X can't repair the disk error message. Then the spinning colored pinwheel pops up and I can't use iTunes. Please HELP!!!!!!

    Sounds like your iPod is broken. Take it to Apple or someone else who repairs iPods and see if you can get it fixed, or get it replaced.

Maybe you are looking for

  • In Withholding Tax, Amount is not appearing in Remittance Challan

    Hi, I have done WHT configuration in Implementation project, This is my 1st Project and I am new in SAP, I am facing following 2 Problems 1) Remittance Challan is getting prepared.but amount is not showing in the remittance challan, all the process t

  • Select on dictionary

    Hi, on 11g I have the follwing error . What is wrong with syntaxe : SQL> GRANT SELECT ON ANY DICTIONARY TO myuser; GRANT SELECT ON ANY  DICTIONARY TO myuser GRANT SELECT ON ANY DICTIONARY TO myuser ORA-00903:                         *Thanks.

  • Slight movement of spry accordion container when animating

    I have a spry accordion inside a container and when I click on each tab, the bottom of the container jerks up and back down slightly as the accordion panel animates the movement. This appears to happen in all browsers so I'm wondering if someone know

  • Getting Bridge to work in Dreamweaver

    Hi, I want to be able to embed a Flash phot Gallery onto my website. In Bridge, there is an option to create a Web Photo Gallery. But If I do this, it creates its own HTML page. I just want the flash object (the photo Gallery), so I can embed it onto

  • PDA aplication

    Hi, I'm building a LabVIEW PDA application that calls functions from a DLL. If I use a simple LabVIEW PDA project with two buttons (run and exit) and a string indicator my application works fine. But I need to use multiple screens and if I add a tab