Editing HTML source document and losing the Server Behaviour details on the panel

Hi,
I just noticed something;
When I bring in and edit my HTML source document, my server behaviour goes back to Coldfusion and the record set and record insertion is missing.
I have to Click and add it back to the panel. Is this normal ?
Thanks

Hi Murray,
Sorry for the delay in getting back to you. I had to deal with an idiotic poster, each time I try to reply I get the same message from the poster about his facebook account. I have reported it and phone your company - Adobe to resolved this. His post has been deleted from the system and hopefully I am back and able to attend to your replies.
I have moved on and recreated my pages from scratch. I have taken into consideration all your discussion with me and I only have one document. It is named and with an extension of PHP.
I am at a point where I have no errors and found a Dreameaver bug in your Insert>Data> Insert Record option. The form action is written in Captials. As you have pointed out it should be in lower case, so did the validator. So I have recognised this whlist recreating it from scratch.
This is now where I am. I have the form, it works, captures the users input, on click it jumps to the action page but it does not write to database table.
I hope you dont mind, I appreciate your previous 2 post before this reply. Hence, here we are.
Source code.
Why does it not write to the database table?
Please advice.
<?php require_once('Connections/dbAttendance.php'); ?>
<?php
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  if (PHP_VERSION < 6) {
    $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;   
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form")) {
  $insertSQL = sprintf("INSERT INTO attendlist (Windowsid, title, firstname, surname, extension, mobile, jobrole, course, cpg, mgrname, room) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                       GetSQLValueString($_POST['textfield'], "text"),
                       GetSQLValueString($_POST['select'], "text"),
                       GetSQLValueString($_POST['textfield2'], "text"),
                       GetSQLValueString($_POST['textfield3'], "text"),
                       GetSQLValueString($_POST['textfield4'], "text"),
                       GetSQLValueString($_POST['textfield5'], "text"),
                       GetSQLValueString($_POST['select5'], "text"),
                       GetSQLValueString($_POST['select2'], "text"),
                       GetSQLValueString($_POST['select4'], "text"),
                       GetSQLValueString($_POST['textfield7'], "text"),
                       GetSQLValueString($_POST['select3'], "text"));
  mysql_select_db($database_dbAttendance, $dbAttendance);
  $Result1 = mysql_query($insertSQL, $dbAttendance) or die(mysql_error());
  $insertGoTo = "Thankyou.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
  header(sprintf("Location: %s", $insertGoTo));
mysql_select_db($database_dbAttendance, $dbAttendance);
$query_rsAttendance = "SELECT * FROM attendlist";
$rsAttendance = mysql_query($query_rsAttendance, $dbAttendance) or die(mysql_error());
$row_rsAttendance = mysql_fetch_assoc($rsAttendance);
$totalRows_rsAttendance = mysql_num_rows($rsAttendance);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Delegate Register</title>
<link href="Registerpage.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryValidationTextField.css" rel="stylesheet" type="text/css" />
<link href="SpryAssets/SpryValidationSelect.css" rel="stylesheet" type="text/css" />
<script src="SpryAssets/SpryValidationTextField.js" type="text/javascript"></script>
<script src="SpryAssets/SpryValidationSelect.js" type="text/javascript"></script>
</head>
<body>
<div class="container">
  <div class="header"><img src="Cerner At Imperial2.jpg" width="960" height="150" alt="" /><!-- end .header --></div>
  <div class="content">
    <h3>Register: <?php echo "Date".date("d/m/Y")?></h3>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form">
      <table width="780" border="0">
        <tr>
          <td><div align="right">User ID *</div></td>
          <td><span id="sprytextfield1">
            <input name="textfield" type="text" id="textfield" tabindex="1" size="18" maxlength="10" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Title *</div></td>
          <td><span id="spryselect1">
            <select name="select" id="select" tabindex="2">
              <option value="0">Select</option>
              <option value="1">Ms</option>
              <option value="2">Mrs</option>
              <option value="3">Mdm</option>
              <option value="4">Dr</option>
              <option value="5">Mr</option>
              <option value="6">Prof</option>
            </select>
          <span class="selectRequiredMsg">Please select an item.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">First name*</div></td>
          <td><span id="sprytextfield2">
            <input name="textfield2" type="text" id="textfield2" tabindex="3" size="30" maxlength="30" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Surname *</div></td>
          <td><span id="sprytextfield3">
            <input name="textfield3" type="text" id="textfield3" tabindex="4" size="30" maxlength="30" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Contact / Bleep *</div></td>
          <td><span id="sprytextfield4">
            <input name="textfield4" type="text" id="textfield4" tabindex="5" size="30" maxlength="30" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Mobile no: (optional)</div></td>
          <td><input name="textfield5" type="text" id="textfield5" tabindex="6" size="20" maxlength="20" /></td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Job Role *</div></td>
          <td><span id="spryselect5">
            <select name="select5" id="select5" tabindex="7">
              <option value="0">Select </option>
              <option value="1">Doctor</option>
              <option value="2">Nurse IP</option>
              <option value="3">Nurse OP</option>
              <option value="4">Midwife</option>
              <option value="5">Booking Clerk</option>
              <option value="6">Medical Secretary</option>
              <option value="7">OP Receptionist</option>
              <option value="9">CNS/NP</option>
              <option value="10">Tester</option>
            </select>
          <span class="selectRequiredMsg">Please select an item.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Manager's Name *</div></td>
          <td><span id="sprytextfield5">
            <input name="textfield7" type="text" id="textfield7" tabindex="8" size="30" maxlength="30" />
          <span class="textfieldRequiredMsg">A value is required.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td> </td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Course *</div></td>
          <td><span id="spryselect2">
            <select name="select2" id="select2" tabindex="9">
              <option value="0">Select</option>
              <option value="1">Demo</option>
              <option value="2">Doctors</option>
              <option value="9">CNS/NP</option>
              <option value="3">Nurse IP</option>
              <option value="4">Nurse OP</option>
              <option value="5">Midwife</option>
              <option value="6">Booking Clerk</option>
              <option value="7">Medical Secretary</option>
              <option value="8">OP Receptionist</option>
            </select>
          <span class="selectRequiredMsg">Please select an item.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">Location *</div></td>
          <td><span id="spryselect3">
            <select name="select3" id="select3" tabindex="10">
              <option value="0">Select </option>
              <option value="1">CHX 12 Floor Rm 1</option>
              <option value="2">CHX 12 Floor Rm 2</option>
              <option value="3">CHX 10 West </option>
              <option value="4">HH N207 </option>
              <option value="5">HH W12 Conference</option>
              <option value="6">SMH Rm a</option>
              <option value="7">SMH Rm b</option>
              <option value="8">SMH Ming Wing Rm 5</option>
              <option value="9">SMH Ming Wing Rm 3</option>
            </select>
          <span class="selectRequiredMsg">Please select an item.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="right">CPG *</div></td>
          <td><span id="spryselect4">
            <select name="select4" id="select4" tabindex="11">
              <option value="0">Select </option>
              <option value="1">CPG 1 - Medicine</option>
              <option value="2">CPG 2 - Surgery and Cancer</option>
              <option value="3">CPG 3 - Specialist Services </option>
              <option value="4">CPG 4 - Circulatory Services and Renal Medicine</option>
              <option value="5">CPG 5 - Womens and Children</option>
              <option value="6">CPG 6 - Clinical and Investigative Sciences</option>
              <option value="7">CPG 7 - Private Patients</option>
              <option value="8">Others</option>
            </select>
          <span class="selectRequiredMsg">Please select an item.</span></span></td>
          <td> </td>
        </tr>
        <tr>
          <td> </td>
          <td><input name="button" type="submit" id="button" formaction="Thankyou.php" value="Submit" /></td>
          <td> </td>
        </tr>
        <tr>
          <td><div align="center">*Mandatory fields </div></td>
          <td> </td>
          <td> </td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form" />
    </form>
<!-- end .content --></div>
  <div class="footer">
  <!-- end .footer --></div>
  <!-- end .container --></div>
<script type="text/javascript">
var sprytextfield1 = new Spry.Widget.ValidationTextField("sprytextfield1", "none", {validateOn:["blur", "change"]});
var spryselect1 = new Spry.Widget.ValidationSelect("spryselect1", {validateOn:["change", "blur"]});
var sprytextfield2 = new Spry.Widget.ValidationTextField("sprytextfield2", "none", {validateOn:["blur", "change"]});
var sprytextfield3 = new Spry.Widget.ValidationTextField("sprytextfield3", "none", {validateOn:["blur", "change"]});
var sprytextfield5 = new Spry.Widget.ValidationTextField("sprytextfield5", "none", {validateOn:["blur", "change"]});
var spryselect2 = new Spry.Widget.ValidationSelect("spryselect2", {validateOn:["change", "blur"]});
var spryselect3 = new Spry.Widget.ValidationSelect("spryselect3", {validateOn:["change", "blur"]});
var spryselect4 = new Spry.Widget.ValidationSelect("spryselect4", {validateOn:["change", "blur"]});
var sprytextfield4 = new Spry.Widget.ValidationTextField("sprytextfield4", "none", {validateOn:["blur", "change"]});
var spryselect5 = new Spry.Widget.ValidationSelect("spryselect5", {validateOn:["blur", "change"]});
</script>
</body>
</html>
<?php
mysql_free_result($rsAttendance);
?>

Similar Messages

  • Editing a word document and reading on a Mac

    Using Document to Go, I edited a word document and saved the document.  I then sent this edited document to a friend who has a Mac using the new Snow Leopard operating system - he could not open the edited document, but could open the unedited, original document.  What can be done with this problem?

    dataviz website did not give me any assistance.  File extension is file name plus .doc.  There does not appear to be any way on the Blackberry Word to Go application area to change file extensions.  Could the problem be due to the Snow Leapord OS not understanding Word to Go?

  • Are we allowed to use the Web developer function in Firefox version 5.0 to edit the html source code associated with the Firefox home page?

    Locking at request of OP - https://support.mozilla.com/en-US/questions/844506
    Are we allowed to use the Web developer function, under the "Firefox" tab in Firefox version 5.0, to edit the html source code associated with the Firefox version 5.0 home page ( so that we can personalize the home page )? Is this legal?
    Sincerely in Christ,
    Russell E. Willis

    Solution: (Free Download Manager)
    Go here: http://codecpack.co/download/Free_Download_Manager.html and download Free Download Manager 3.8.1067 Beta 3, it works perfectly with Firefox 5.0.1
    Solution: (to Google mail aka Gmail)
    I have had this problem for a while since I did a previous Firefox update, where I had to force Gmail to load in Basic HTML else it's next to impossible to use it. The solution is this: simply update your Java, and Gmail will work without a problem using Standard HTML. To update your Java go here: http://www.java.com/en/ and select "Free Java Download".
    And beta normally, universally, means "the not quite there yet version of the version we're aiming for" NORMALLY used during production and testing of a type of software.

  • IPhoto is quitting unexpectedly and losing the photos I just imported and edited.

    iPhoto is quitting unexpectedly and losing the photos I just imported and edited.  Any suggestions to fix it?

    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • BAPI to copy the FI reverse documents and post the actual documents

    Hi,
      We are facing a issue where I need to copy a FI (FB03 ) reversal document and do the actual posting document.
    Regards,
    Ankit Gupta

    Hi MUkesh,
    If you would like to delete multiple documents then it is not possible.  Check OSS note 849742.
    Please find the Note details below.
    Summary
    Symptom
    You want to delete several physical inventory documents, but this involves too much manual work, as the documents must be deleted individually in MI02.
    Other terms
    MI02, delete physical inventory documents, SHDB, recording
    Reason and Prerequisites
    In the standard version, you can only delete inventory documents individually using Transaction MI02. A mass transaction or BAPI currently does not exist, and none is currently planned.
    Solution
    You can use standard functions to create a program that can delete several physical inventory documents at once. To do this:
    1. In Transaction SHDB, create a new recording using MI02.
    2. Also in SHDB, create a function module from the recording.
    3. Create a program based on this function module. Define the selection screen based on your needs. You can also create your own transaction for the program, if necessary.
    And I see the only way to delete the documents as per my knowledge is just MI02
    Edited by: Raj on Jul 30, 2010 5:01 PM

  • Assignment from source document number in the query to archived document

    Dear all,
    we scan all original documents and store them in an optical archive like IXOS. This archive is connected to our ERP-system. An on ERP with the source document number. When I pick up the financial document I have the possibility to open the scanned original document.
    In BI we use the cost center cube. One of the characteristics in the cube is the source document number. Now we have the request to jump direct from the source document number in the query to the archived original document.
    Is there a possibility to define an assignment from the source document number in the query to the archived original document.
    Best regards
    Juergen

    Thnaks Oscar and Ganesh for your interest.
    FYI,my infoset is created based on bill doc and item number which is available in both the ODS.
    Here,for every document in Billing ODS,there are more number of documnets in Condition ODS,so the bill qty is getting added according to the numvber of records in Condition ODS.
    Eg.Billing ODS: Doc Num:100012, Qty = 8.if 10 records are ther in condition ODS,then in the infoset my QTY becomes,
    Doc Num:100012, Qty = 80.
    So in the query i divided it by number of records to get the qty and is coming correctly for documnet wise report.
    Problem comes when i remove documnet from the report and drilldown to higher level,say material,then it is calculated wrongly.
    Your suggestions plz..
    Regards
    Sudhakar

  • Mobile Documents and OS X Server

    Hi, I'm having problems with "mobile documents" and OS X server.
    All our user accounts are on a OS X server (mountain lion). When trying to access documents on iCloud from a desktop I see following error in the logs:
    2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
    2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    2012-09-24 14:31:58 -0400 Pages[4520]: [warn]  [0.000s] com.apple. Path_Utilities.c:101 get_homedir_path_once() Home directory is not local, iCloud document storage will not work
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:794 IPCSyncingEnabled() failed to contact ubd: -1
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. framework_client.c:810 IPCEnableSyncing() failed to run server: -1
    2012-09-24 14:31:58 -0400 librariand[4413]: [ERROR] [141.284s] com.apple. UBService.c:598 UBServiceEnableMobileDocuments() IPCEnableSyncing failed with error: The operation couldn’t be completed. (UBErrorDomain error 8.)
    2012-09-24 14:31:58 -0400 librariand[4413]: unable to enable mobile documents
    2012-09-24 14:31:58 -0400 librariand[4413]: error in _handle_client_request: LibrarianErrorDomain/10/Unable to configure the collection.
    2012-09-24 14:31:58 -0400 Pages[4520]: [ERROR] [0.336s] com.apple. framework_client.c:552 IPCServiceStartActivityCallback() Failed to start service activity callback
    Sounds like you can't access documents on iCloud when serving your accounts from an OS X Server? Would be bad, any thoughts?
    --Marcel

    neuhaus,
    I am discovering the same issue.  I have come to the same conclusion as you and am terribly disappointed.  Did you have any luck figuring this out?  Did you submit a bug report?
    There is still one factor I am trying to isolate.  Is the version of Pages (or other iWork app) being used downloaded from the Apple Store or installed from a DVD?
    Tim

  • I need to be able to right click on a saved document and have the option to convert to Adobe PDF. I have the Abobe Acrobat Xl Pro and used to have this option until I had to create a new subscription. What do I need to do in order to have this option?

    I need to be able to right click on a saved document and have the option to convert to Adobe PDF. I have the Abobe Acrobat Xl Pro and used to have this option until I had to create a new subscription. What do I need to do in order to have this option? I use windows 7

    If you are New to Mac... you may also find these links of Value
    Mac 101
    http://www.apple.com/support/mac101/
    http://www.apple.com/support/switch101/     Switching from PC
    MBP Support
    http://www.apple.com/support/macbookpro
    Cheers,

  • How to Restrict printing the document using IRM for a Single Document?Allow printing for some documents and restrict the printing for particular documents in same document library?

    Can we able to Configure the IRM in Document Level in SharePoint Document libraries?
    The document library contains multiple document sets , Can we restrict the printing according to document sets? Allow printing for some documents and restrict the printing for particular documents in same document library
     Is this possible?Please suggest.

    Yes, that can be done. But note that all administrators will have the same right to print, so you need to make sure the users are not administrators. You can include a macro to disable printing, but if the users disable macro, they can print the documents.
    Hence, there is no foolproof way to prevent printing documents. If you still need a foolproof security, PDF format provides password based security (viewing doesn't require a password) that can be implemented to prevent the document from printing,
    which doesn't require any special scripts and is tough.
    You can have a look at the following links:
    http://msdn.microsoft.com/en-us/library/office/ms458245(v=office.14).aspx
    http://msgroups.net/microsoft.public.word.docmanagement/prevent-printing-of-docum/91353
    http://www.go4sharepoint.com/Forum/prevent-printing-saving-documents-10150.aspx
    The following link explains about the security features in PDF. This is for information purpose only and not for promotion of any products:
    http://www.pdflib.com/knowledge-base/pdf-security/
    Balaji Kundalam

  • When typing I will sometimes look at the document and find the curser moved and the typing is going on in a different area.  How do I stop that curser movement?

    When typing I will sometimes look at the document and find the curser moved.  The typing has been happening in the wrong place.  How do I stop the curser movement while typing?

    You're not the only person asking this question. You might want to read this post, which contains possible solutions, and references support documents:
    https://discussions.apple.com/thread/2322020?start=0&tstart=0
    Others have the same question as you. Post here if this information answered your question; post also if you have any additional questions!

  • Can i use std OR document and do the billing directly with out delivery

    hi,
    sap gurus,
    can i use standard OR document and do the billing with out creating delivery doument
    if i can create
    what are the configuration settings for that actually.
    regards,
    balaji.t
    09990019711

    Hello,
    The item category assignemnt needs to be changed, the item category should be relevent for 'order related billing' and set the order related billing type in the order type config billing area.
    Make the necessary copy controls between the order type and the billing type.
    Prase

  • How to do search with multiple texts across documents and rename the file with found text?

    Hello:
    I'm trying to do the batch search across the multiple documents and rename the file (or save as) after the found word?
    In example:
    I have many unique texts and would want to search across the multiple documents.
    If a document is found with that unique text then, the document is either renamed or save as with that unique text. 
    So, I could know what unique text that file holds.
    How do I do that?
    Let me know.
    Thanks

    Welcome to the forum!
    When you want to post a block of code, you can enclose it with the mark ups { code }
    That is the key word code surrounded by curly brackets, but without the spaces
    You seem to be running a very old (and unsupported release of the database)
    7.3 has not been a current release for about 10 years.
    It's probably been that long since I've used this technique, but i think it should work.
    You should consider welcoming your system to the 21st century by upgrading to a supported release ;-)
    If you used split to chop up your export file, use cat or dd to reassemble it.
    So, something like this:
    mknod bk.dmp p
    cat xaa xab xac xad xae xaf xag xah xai > bk.dmp &
    imp SYSTEM/$PASSWD parfile=imp_bk.parfile
    rm bk.dmp
    $ cat imp_bk.parfile
    file=bk.dmp
    log=imp.log
    full=y
    buffer=1048576
    ignore=y
    commit=y let us know if still have problems.
    Good Luck!

  • If I only want to write documents and surf the web.

    Do I have to buy any software if I only want to write documents and surf the web?

    For surfing the web no.  For writing documents you have a number of choices.  Youu could buy microsoft word, it is very expesive but some do like it because it is the same as they have a t work.  the second option and the one that I prefer is apple's Pages.  It is available from the app store and is a very good full features program.  The third and the free option is down load open office for mac, which is pretty much like microsoft wod.

  • Minimize and maximize the panel

    I have an interface which content many panels. So i want to maximize and minimize the panels.
    let say the real size of panel is 400 x 400 pixel, then i want to minimize to 400 x 20 pixel.
    But the panel is dynamic, i can maximize and minimize again and again...
    Thank you.

    Then why did you post your question in the AWT forum?
    There is a working example in the tutorial: [Performing Custom Painting|http://java.sun.com/docs/books/tutorial/uiswing/painting/]
    You can also see my example here: [http://forums.sun.com/thread.jspa?messageID=9699372]

  • Trying to save a new document and then "The file "lyrics project.pages-tef" couldn't be opened."

    As the title says...  Open Pages, Create new document, click Save, the dialog box comes up, I give it a name and select the Desktop as the destination, click OK, the dialog box disappears for about a second and then I get the above message.
    No way to save the doc.  I even copied the text, opened another new document, Renamed it and tried to save and same results.  It's a very simple document saved in Pages format, without involving iCloud so it should be as easy as it gets.  On top of that, I just want to Save.  Why is it trying to Open something???
    I ended up having to copy the text into an email and sending it to myself in order to copy it into a SimpleText file.
    Any ideas on what might have been going wrong?
    MacBook Pro 13, OSX 10.8.2, current version of Pages.
    Thanks much.
    Bo

    That is the iCloud version of the document as I understand it. There is a version saved on the Net for iCloud to be shared and a local version on your hard drive. One of those is currently inaccessible.
    http://www.macworld.com/article/1163173/bugs_and_fixes_losing_iwork_documents_in _icloud.html
    Peter

Maybe you are looking for