Foutmelding dreamweaver mx 2004

Status
Niet open voor verdere reacties.

eisdatop

Gebruiker
Lid geworden
14 jul 2004
Berichten
434
Ik heb een probleempje met Dreamweaver mx 2004, als ik een pagina heb bewerkt, en dan snel opslaan aanklik, krijg ik een foutmelding. Het is deze foutmelding:

Bekijk foutmelding

Weet iemand wat dit betekent? Volgens mij, moet ik met de bestanden in tijdelijke map rommelen ofzo, maar ik weet het niet zeker! Iemand een idee?

Alvast bedankt!

:thumb:
 
Mischien dat jullie hier nog wat aan hebben, de bron van de bestanden die bij de foutmelding horen:
tempURL_aftersave.htm
PHP:
<!-- MENU-LOCATION=NONE -->
<!-- Copyright 2002, 2003 Macromedia, Inc. All rights reserved. -->

<HTML>

<HEAD>

<TITLE>After Save</TITLE>
<SCRIPT LANGUAGE="javascript">

function isDOMRequired()
{
  return false;
}

function afterSave()
{
  dwscripts.copyDesignNotesFromTempURL();
}

</SCRIPT>

</HEAD>

<BODY onLoad="afterSave()">
</BODY>

</HTML>
En dan hebben we ook nog:
tempURL.js javascriptje
PHP:
//SHARE-IN-MEMORY=true
// Copyright 2000, 2001, 2002, 2003 Macromedia, Inc. All rights reserved.


//*************************************************************
//*************************************************************
//
// DO NOT USE THESE FUNCTIONS
//
//   Please use the newer versions which live in:
//     Configuration/Shared/Common/Scripts/dwscripts.js
//
//*************************************************************
//*************************************************************




var GET_TEMP_FILE_URL_COUNT = 0;



////////////////////////////////////////////////////////////////////////////////
//
// Function: getTempFileURL
//
// If the user's document hasn't been saved, we can't use design notes to
// store meta-information with that file.  Instead, we'll create a 
// temporary design notes file and store the meta-information there.
// When the user's document is saved, we'll call copyFromTempURL (below)
// to move the info from the temp file to the document's permanent design
// notes file.
//
////////////////////////////////////////////////////////////////////////////////
function getTempFileURL()
{
  var dom = dw.getDocumentDOM();
  var notes, keys, i;
  
  if (String(dom.tempURL) == "undefined")
  {
    // Assign a temporary notes file that doesn't conflict with others
    GET_TEMP_FILE_URL_COUNT += 1;
    dom.tempURL = document.URL + String(GET_TEMP_FILE_URL_COUNT);

    // Remove any old notes lying around in that file
    notes = MMNotes.open(dom.tempURL, true);
    keys = MMNotes.getKeys(notes);
    for (i = 0; i < keys.length; i++)
      MMNotes.remove(notes, keys[i]);
    MMNotes.close(notes);
  }

  return dom.tempURL;
}



////////////////////////////////////////////////////////////////////////////////
//
// Function: copyFromTempURL
//
// This function is called when we detect that the user's document has
// been saved.  Move the contents of the file's temporary design notes
// file into its new, permanent design notes file.
//
////////////////////////////////////////////////////////////////////////////////
function copyFromTempURL()
{
  var dom, tempURL, oldNotes, newNotes, oldKeys, i, oldValue;

  // Get the location of the temporary design notes file, if there is one
  dom = dw.getDocumentDOM();
  tempURL = String(dom.tempURL);

  if (tempURL != "undefined" && tempURL.length)
  {
    oldNotes = MMNotes.open(tempURL, true);
    newNotes = MMNotes.open(dom.URL);
    if (oldNotes != 0 && newNotes != 0)
    {
      oldKeys = MMNotes.getKeys(oldNotes);
      for (i = 0; i < oldKeys.length; i++)
      {
        oldValue = MMNotes.get(oldNotes, oldKeys[i]);
        MMNotes.remove(oldNotes, oldKeys[i]);
        MMNotes.set(newNotes, oldKeys[i], oldValue);
      }
    }

    if (oldNotes != 0)
      MMNotes.close(oldNotes);
    if (newNotes != 0)
      MMNotes.close(newNotes);

    // Delete records of the temp file, so we don't do this again
    dom.tempURL = "";
  }
}
 
Status
Niet open voor verdere reacties.
Terug
Bovenaan Onderaan