Cannot edit properties of pages in Pages Library

We have a site's Pages Library with a problem
If we attempt to edit a pages properties, and save a change to the properties, we will get an error with a correlation id.
the error will read "The URL 'Pages/test9.aspx' is invalid. It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web. "
That's if we do the change via the editform view.
If we turn on inline editing on a view of the Pages Library, and we edit properties of a page where the editform view was never used and never caused that error... we can edit the properties at will.
So our quick reaction was that the editform view is corrupted, or somehow corrupts the properties so they can't be edited.
I've tried creating a new editform view in spd... but it appears to cause the same issue.
so looking for ideas on how to root out the problem.

Looking at the logs, just prior to seeing the error text, I do see these lines with the same correlation id
05/19/2014 13:25:24.38 w3wp.exe (0x0B7C) 0x0D04 Web Content Management Publishing 7fz3 Medium Setting [Edit] as the FormContext.FormMode for the current page e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.38 w3wp.exe (0x0B7C) 0x0D04 SharePoint Foundation General 27dw Medium Attemping to add or update webpart id 843C9884-ED69-4BC0-B751-2198B0A98670, list <not specified>, flags -1, type -1, base view id -1. e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.39 w3wp.exe (0x0B7C) 0x0D04 SharePoint Foundation General 27dw Medium Attemping to add or update webpart id E8DBBE9F-72AC-4097-99D7-4F4D6E33EFE8, list <not specified>, flags -1, type -1, base view id -1. e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.41 w3wp.exe (0x0B7C) 0x0D04 SharePoint Foundation General 27dw Medium Attemping to add or update webpart id D8219681-E0A5-4E7F-834A-C0B03EF3AF67, list <not specified>, flags -1, type -1, base view id -1. e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.41 w3wp.exe (0x0B7C) 0x0D04 Web Content Management Publishing 7fz3 Medium Setting [Edit] as the FormContext.FormMode for the current page e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.41 w3wp.exe (0x0B7C) 0x0D04 Web Content Management Publishing 7fz3 Medium Setting [Edit] as the FormContext.FormMode for the current page e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.52 w3wp.exe (0x0B7C) 0x0D04 SharePoint Foundation Database d0d6 High System.Data.SqlClient.SqlException: Parameter '@ntext3' was supplied multiple times. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlDataReader.HasMoreRows() at System.Data.SqlClient.SqlDataReader.ReadInternal(Boolean setTimeout) at System.Data.SqlClient.SqlDataReader.NextResult() at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock) at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock) e1f96b75-c427-4ae4-a02c-cb7edc57be21
05/19/2014 13:25:24.52 w3wp.exe (0x0B7C) 0x0D04 SharePoint Foundation General 8kh7 High The URL 'Pages/tours.aspx' is invalid. It may refer to a nonexistent file or folder, or refer to a valid file or folder that is not in the current Web. e1f96b75-c427-4ae4-a02c-cb7edc57be21

Similar Messages

  • ERROR: cannot edit or duplicate page. Reason: no editable regions

    Hi,
    Going round in circles with this one.  Feeling like Friday afternoon.
    URL: http://www.business-risc.com/fleet/bss/1/index.html
    CtrlE works fine.
    Click on "POLICIES" spry tab
    Click on EDIT PAGE
    Highlights the correct editable region... hover confirms its an editable region.
    Allows me to edit, no problem.
    Then, on SAVE DRAFT or DONE returns ERROR: cannot edit or duplicate page.  Reason: page does not contain any editable regions.
    I just cant see why.  Can anyone help please?
    Thanks
    Carol

    There should be a space before the ice:editable attributes (all of them):
    class="TabbedPanelsContent"ice:editable="*"
    Regards,
    Dan Popa

  • Cannot edit properties after overwriting file in a document library

    I am (programmatically) overwriting a file in a document library after which none of the metadata fields can be edited either programmatically or manually:
    Edit Properties -> change something -> Save
    There is no error, just none of the metadata fields will actually update. To overwrite the file, I am using copy.asmx webservice. I get the same result when overwriting via REST, or just doing a plain http PUT. I also tried list.asmx webservice to update metadata.
    As long as I don't overwrite a file, everything works great.
    This is Sharepoint 2010. Versioning is off, checkout is not required. "Overwriting" means there is an existing file, previously uploaded manually or with copyservice and the new file has the same name.
    Has anybody seen this behavior? (or managed to get a sharepoint document library file into a similar state).
    Thanks, RL

    Hi,
    According to your post, my understanding is that after uploading file using the Copy.asmx web service, you could not edit the properties.
    I had used the following code to upload the file, after that to edit the properties, it worked without any issue.
    static void Main(string[] args)
    Copy copy = new Copy();
    copy.Credentials = new System.Net.NetworkCredential("UserName","Password","Domain");
    copy.Url = "http://sp/_vti_bin/copy.asmx";
    string filePath = @"C:\Test\Edite2.txt";
    string[] destURL = { @"http://sp/LIbA/Edite2.txt" };
    FileStream fs = new FileStream(filePath, FileMode.Open, FileAccess.Read);
    byte[] contents = new byte [fs.Length];
    fs.Read(contents,0,Convert.ToInt32(fs.Length));
    fs.Close();
    FieldInformation fileFieldInfo = new FieldInformation();
    fileFieldInfo.DisplayName = "Edite2";
    fileFieldInfo.Value = "Edite2";
    fileFieldInfo.InternalName = "Edite2";
    fileFieldInfo.Type = sp.FieldType.Text;
    FieldInformation[] fileFieldInfoArray = { fileFieldInfo };
    CopyResult copyResult1 = new CopyResult();
    CopyResult copyResult2 = new CopyResult();
    CopyResult[] copyResultArray = { copyResult1,copyResult2};
    uint resultCopy = copy.CopyIntoItems(filePath,destURL,fileFieldInfoArray,contents,out copyResultArray);
    Console.WriteLine("Upload Successful...");
    Console.ReadKey();
    You can check with the above code, then check whether it works.
    Did the issue occur in other libraries?
    You can create new library to check whether it works, maybe the library had been corrupted.
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Cannot edit properties

    We have been moving and adding documents to a document library which we have set up. We have included required fields. At first we were able to edit the properties in each document to add the relevant fields, but now this is now longer working. we're out
    of ideas. Can anyone advise please. Thanks

    when you say you cannot edit. what is happening
    is that option disabled(it can be due to permission) or database is locked from central admin quota and lock.
    Check if SQL server is giving any error message\disk space issue
    If you getting some error message. please share error details with us

  • Custom edit form for my Wiki Page library with only "Page Name" field included

    I want to create a new custom edit form for my Wiki page library, and to only allow users to edit the Page name inside the edit form. now i created a new Edit form using SharePoint Designer , and i select the Enterprisewiki content type for it , which generates
    the following markup :-
    <%@ Page language="C#" MasterPageFile="~masterurl/default.master" Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,Microsoft.SharePoint,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full" meta:progid="SharePoint.WebPartPage.Document" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Import Namespace="Microsoft.SharePoint" %> <%@ Assembly Name="Microsoft.Web.CommandUI, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitle" runat="server">
    <SharePoint:ListFormPageTitle runat="server"/>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitleInTitleArea" runat="server">
    <span class="die">
    <SharePoint:ListProperty Property="LinkTitle" runat="server" id="ID_LinkTitle"/>
    </span>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageImage" runat="server">
    <img src="/_layouts/15/images/blank.gif?rev=23" width='1' height='1' alt="" />
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
    <SharePoint:UIVersionedContent UIVersion="4" runat="server">
    <ContentTemplate>
    <div style="padding-left:5px">
    </ContentTemplate>
    </SharePoint:UIVersionedContent>
    <table class="ms-core-tableNoSpace" id="onetIDListForm">
    <tr>
    <td>
    <WebPartPages:WebPartZone runat="server" FrameType="None" ID="Main" Title="loc:Main"><ZoneTemplate>
    <WebPartPages:DataFormWebPart runat="server" EnableOriginalValue="False" DisplayName="Customer Service KB" ViewFlag="1048584" ViewContentTypeId="" Default="FALSE" ListUrl="" ListDisplayName="" ListName="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}" ListId="6a6ece84-4d39-48e2-bd6a-c20b2ac6355b" PageType="PAGE_EDITFORM" PageSize="-1" UseSQLDataSourcePaging="True" DataSourceID="" ShowWithSampleData="False" AsyncRefresh="False" ManualRefresh="False" AutoRefresh="False" AutoRefreshInterval="60" NoDefaultStyle="TRUE" InitialAsyncDataFetch="False" Title="Customer Service KB" FrameType="None" SuppressWebPartChrome="False" Description="" IsIncluded="True" PartOrder="2" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True" AllowEdit="True" AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="Cannot import this Web Part." PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_f1c88e12_e91d_4300_91f2_62f0bd7825fb" ChromeType="None" ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{F1C88E12-E91D-4300-91F2-62F0BD7825FB}" __AllowXSLTEditing="true" WebPart="true" Height="" Width=""><DataSources>
    <SharePoint:SPDataSource runat="server" DataSourceMode="ListItem" SelectCommand="&lt;View&gt;&lt;Query&gt;&lt;Where&gt;&lt;Eq&gt;&lt;FieldRef Name=&quot;ContentType&quot;/&gt;&lt;Value Type=&quot;Text&quot;&gt;Enterprise Wiki Page&lt;/Value&gt;&lt;/Eq&gt;&lt;/Where&gt;&lt;/Query&gt;&lt;/View&gt;" UseInternalName="True" UseServerDataFormat="True"><SelectParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="http://sharepointdev:12341/sites/wiki1" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}" Name="ListID"></WebPartPages:DataFormParameter>
    </SelectParameters><UpdateParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="http://sharepointdev:12341/sites/wiki1" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}" Name="ListID"></WebPartPages:DataFormParameter>
    </UpdateParameters><InsertParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="http://sharepointdev:12341/sites/wiki1" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}" Name="ListID"></WebPartPages:DataFormParameter>
    </InsertParameters><DeleteParameters><WebPartPages:DataFormParameter ParameterKey="ListItemId" PropertyName="ParameterValues" DefaultValue="0" Name="ListItemId"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="weburl" PropertyName="ParameterValues" DefaultValue="http://sharepointdev:12341/sites/wiki1" Name="weburl"></WebPartPages:DataFormParameter><WebPartPages:DataFormParameter ParameterKey="ListID" PropertyName="ParameterValues" DefaultValue="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}" Name="ListID"></WebPartPages:DataFormParameter>
    </DeleteParameters>
    </SharePoint:SPDataSource>
    </DataSources>
    <Xsl>
    <xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal">
    <xsl:output method="html" indent="no"/>
    <xsl:decimal-format NaN=""/>
    <xsl:param name="dvt_apos">&apos;</xsl:param>
    <xsl:param name="ManualRefresh"></xsl:param>
    <xsl:variable name="dvt_1_automode">0</xsl:variable>
    <xsl:template match="/" xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:SharePoint="Microsoft.SharePoint.WebControls">
    <xsl:choose>
    <xsl:when test="($ManualRefresh = 'True')">
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
    <tr>
    <td valign="top">
    <xsl:call-template name="dvt_1"/>
    </td>
    <td width="1%" class="ms-vb" valign="top">
    <img src="/_layouts/15/images/staticrefresh.gif" id="ManualRefresh" border="0" onclick="javascript: {ddwrt:GenFireServerEvent('__cancel')}" alt="Click here to refresh the dataview."/>
    </td>
    </tr>
    </table>
    </xsl:when>
    <xsl:otherwise>
    <xsl:call-template name="dvt_1"/>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    <xsl:template name="dvt_1">
    <xsl:variable name="dvt_StyleName">ListForm</xsl:variable>
    <xsl:variable name="Rows" select="/dsQueryResponse/Rows/Row"/>
    <div>
    <span id="part1">
    <table border="0" width="100%">
    <xsl:call-template name="dvt_1.body">
    <xsl:with-param name="Rows" select="$Rows"/>
    </xsl:call-template>
    </table>
    </span>
    <SharePoint:AttachmentUpload runat="server" ControlMode="Edit"/>
    <SharePoint:ItemHiddenVersion runat="server" ControlMode="Edit"/>
    </div>
    </xsl:template>
    <xsl:template name="dvt_1.body">
    <xsl:param name="Rows"/>
    <tr>
    <td class="ms-toolbar" nowrap="nowrap">
    <table>
    <tr>
    <td width="99%" class="ms-toolbar" nowrap="nowrap"><IMG SRC="/_layouts/15/images/blank.gif" width="1" height="18"/></td>
    <td class="ms-toolbar" nowrap="nowrap">
    <SharePoint:SaveButton runat="server" ControlMode="Edit" id="savebutton1"/>
    </td>
    <td class="ms-separator">&#160;</td>
    <td class="ms-toolbar" nowrap="nowrap" align="right">
    <SharePoint:GoBackButton runat="server" ControlMode="Edit" id="gobackbutton1"/>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    <tr>
    <td class="ms-toolbar" nowrap="nowrap">
    <SharePoint:FormToolBar runat="server" ControlMode="Edit"/>
    <SharePoint:ItemValidationFailedMessage runat="server" ControlMode="Edit"/>
    </td>
    </tr>
    <xsl:for-each select="$Rows">
    <xsl:call-template name="dvt_1.rowedit"/>
    </xsl:for-each>
    <tr>
    <td class="ms-toolbar" nowrap="nowrap">
    <table>
    <tr>
    <td class="ms-descriptiontext" nowrap="nowrap">
    <SharePoint:CreatedModifiedInfo ControlMode="Edit" runat="server"/>
    </td>
    <td width="99%" class="ms-toolbar" nowrap="nowrap"><IMG SRC="/_layouts/15/images/blank.gif" width="1" height="18"/></td>
    <td class="ms-toolbar" nowrap="nowrap">
    <SharePoint:SaveButton runat="server" ControlMode="Edit" id="savebutton2"/>
    </td>
    <td class="ms-separator">&#160;</td>
    <td class="ms-toolbar" nowrap="nowrap" align="right">
    <SharePoint:GoBackButton runat="server" ControlMode="Edit" id="gobackbutton2"/>
    </td>
    </tr>
    </table>
    </td>
    </tr>
    </xsl:template>
    <xsl:template name="dvt_1.rowedit">
    <xsl:param name="Pos" select="position()"/>
    <tr>
    <td>
    <table border="0" cellspacing="0" width="100%">
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Title (Display In Search)</nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff1{$Pos}" ControlMode="Edit" FieldName="Title" __designer:bind="{ddwrt:DataBind('u',concat('ff1',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Title')}"/>
    <SharePoint:FieldDescription runat="server" id="ff1description{$Pos}" FieldName="Title" ControlMode="Edit"/>
    </td>
    </tr>
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Standard<span class="ms-formvalidation"> *</span>
    </nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff2{$Pos}" ControlMode="Edit" FieldName="Standard" __designer:bind="{ddwrt:DataBind('u',concat('ff2',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Standard')}"/>
    <SharePoint:FieldDescription runat="server" id="ff2description{$Pos}" FieldName="Standard" ControlMode="Edit"/>
    </td>
    </tr>
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Document Type<span class="ms-formvalidation"> *</span>
    </nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff3{$Pos}" ControlMode="Edit" FieldName="Document_x0020_Type" __designer:bind="{ddwrt:DataBind('u',concat('ff3',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Document_x0020_Type')}"/>
    <SharePoint:FieldDescription runat="server" id="ff3description{$Pos}" FieldName="Document_x0020_Type" ControlMode="Edit"/>
    </td>
    </tr>
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Departments<span class="ms-formvalidation"> *</span>
    </nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff4{$Pos}" ControlMode="Edit" FieldName="Departments" __designer:bind="{ddwrt:DataBind('u',concat('ff4',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Departments')}"/>
    <SharePoint:FieldDescription runat="server" id="ff4description{$Pos}" FieldName="Departments" ControlMode="Edit"/>
    </td>
    </tr>
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Hide physical URLs from search</nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff5{$Pos}" ControlMode="Edit" FieldName="PublishingIsFurlPage" __designer:bind="{ddwrt:DataBind('u',concat('ff5',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@PublishingIsFurlPage')}"/>
    <SharePoint:FieldDescription runat="server" id="ff5description{$Pos}" FieldName="PublishingIsFurlPage" ControlMode="Edit"/>
    </td>
    </tr>
    <tr>
    <td width="190px" valign="top" class="ms-formlabel">
    <H3 class="ms-standardheader">
    <nobr>Page Content</nobr>
    </H3>
    </td>
    <td width="400px" valign="top" class="ms-formbody">
    <SharePoint:FormField runat="server" id="ff6{$Pos}" ControlMode="Edit" FieldName="PublishingPageContent" __designer:bind="{ddwrt:DataBind('u',concat('ff6',$Pos),'Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@PublishingPageContent')}"/>
    <SharePoint:FieldDescription runat="server" id="ff6description{$Pos}" FieldName="PublishingPageContent" ControlMode="Edit"/>
    </td>
    </tr>
    <tr id="idAttachmentsRow">
    <td nowrap="true" valign="top" class="ms-formlabel" width="20%">
    <SharePoint:FieldLabel ControlMode="Edit" FieldName="Attachments" runat="server"/>
    </td>
    <td valign="top" class="ms-formbody" width="80%">
    <SharePoint:FormField runat="server" id="AttachmentsField" ControlMode="Edit" FieldName="Attachments" __designer:bind="{ddwrt:DataBind('u','AttachmentsField','Value','ValueChanged','ID',ddwrt:EscapeDelims(string(@ID)),'@Attachments')}"/>
    <script>
    var elm = document.getElementById(&quot;idAttachmentsTable&quot;);
    if (elm == null || elm.rows.length == 0)
    document.getElementById(&quot;idAttachmentsRow&quot;).style.display=&apos;none&apos;;
    </script>
    </td>
    </tr>
    <xsl:if test="$dvt_1_automode = '1'" ddwrt:cf_ignore="1">
    <tr>
    <td colspan="99" class="ms-vb">
    <span ddwrt:amkeyfield="ID" ddwrt:amkeyvalue="ddwrt:EscapeDelims(string(@ID))" ddwrt:ammode="view"></span>
    </td>
    </tr>
    </xsl:if>
    </table>
    </td>
    </tr>
    </xsl:template>
    </xsl:stylesheet> </Xsl>
    <DataFields>
    </DataFields>
    <ParameterBindings>
    <ParameterBinding Name="ListItemId" Location="QueryString(ID)" DefaultValue="0"/>
    <ParameterBinding Name="weburl" Location="None" DefaultValue="http://sharepointdev:12341/sites/wiki1"/>
    <ParameterBinding Name="ListID" Location="None" DefaultValue="{6A6ECE84-4D39-48E2-BD6A-C20B2AC6355B}"/>
    <ParameterBinding Name="dvt_apos" Location="Postback;Connection"/>
    <ParameterBinding Name="ManualRefresh" Location="WPProperty[ManualRefresh]"/>
    <ParameterBinding Name="UserID" Location="CAMLVariable" DefaultValue="CurrentUserName"/>
    <ParameterBinding Name="Today" Location="CAMLVariable" DefaultValue="CurrentDate"/>
    </ParameterBindings>
    </WebPartPages:DataFormWebPart>
    </ZoneTemplate></WebPartPages:WebPartZone>
    </td>
    </tr>
    </table>
    <SharePoint:UIVersionedContent UIVersion="4" runat="server">
    <ContentTemplate>
    </div>
    </ContentTemplate>
    </SharePoint:UIVersionedContent>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderAdditionalPageHead" runat="server">
    <SharePoint:DelegateControl runat="server" ControlId="FormCustomRedirectControl" AllowMultipleControls="true"/>
    <SharePoint:UIVersionedContent UIVersion="4" runat="server"><ContentTemplate>
    <SharePoint:CssRegistration Name="forms.css" runat="server"/>
    </ContentTemplate></SharePoint:UIVersionedContent>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderTitleLeftBorder" runat="server">
    <table cellpadding="0" height="100%" width="100%" cellspacing="0">
    <tr><td class="ms-areaseparatorleft"><img src="/_layouts/15/images/blank.gif?rev=23" width='1' height='1' alt="" /></td></tr>
    </table>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderTitleAreaClass" runat="server">
    <script type="text/javascript" id="onetidPageTitleAreaFrameScript">
    if (document.getElementById("onetidPageTitleAreaFrame") != null)
    document.getElementById("onetidPageTitleAreaFrame").className="ms-areaseparator";
    </script>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderBodyAreaClass" runat="server">
    <SharePoint:StyleBlock runat="server">
    .ms-bodyareaframe {
    padding: 8px;
    border: none;
    </SharePoint:StyleBlock>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderBodyLeftBorder" runat="server">
    <div class='ms-areaseparatorleft'><img src="/_layouts/15/images/blank.gif?rev=23" width='8' height='100%' alt="" /></div>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderTitleRightMargin" runat="server">
    <div class='ms-areaseparatorright'><img src="/_layouts/15/images/blank.gif?rev=23" width='8' height='100%' alt="" /></div>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderBodyRightMargin" runat="server">
    <div class='ms-areaseparatorright'><img src="/_layouts/15/images/blank.gif?rev=23" width='8' height='100%' alt="" /></div>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderTitleAreaSeparator" runat="server"/>
    so from the above  markup  the name field is not part of the edit form,, i think this is because the Name is part of the Document content type and not part of the enterprisewiki content type .. so is there a way to add the name field to the edit
    form ?.
    second question, the edit form will show all the content type fields such as ; standard, document type, department , title (display in search), etc   so what is the best way to remove these fields from the custom edit form ?

    Hello John,
    This can only be done by adding VBScript to the form. It would basically be:
    Sub Item_Open() 
    Item.GetInspector.SetCurrentFormPage "P.2"
    End Sub
    ... where "P.2" would be what you named the page you want to display first.

  • I want to edit properties of the interface windows opened while "Open File", "Save Page As" and interface opened during Downloading of any file.

    I am doing a small project on dedicated web client where in user automatically logs in non-root user and Firefox automatically starts.
    I am using Fedora 14 kernel 2.6.35.12-88.fc14.i686 and Firefox 3.6.16.
    I have installed only Gnome in my computer with no Nautilus or other file browser on it.
    I want to edit properties of the interface windows opened while "Open File", "Save Page As" and interface opened during Downloading of any file.
    Please guide me for this.

    First, I sent an email to the author of PhotoME to inform him of the serious issues his addon caused with Firefox latest versions.
    Now, for those of you who do not have the PhotoME addon and yet experience the same problem that I had and that I described above, I suggest the following strategy.
    As PhotoME did cause these problems with Firefox latest versions, I am pretty covinved other addons probably might cause these problems too. Therefore, adopt the following method.
    Test one addon at a time to see if this particular addon is behind your Firefox issues like the ones I had.
    So, disable one addon only at a time. Then close your Firefox and restart it from scratch and see if you still have your Firefox problems. You must restart the Firefox browser from scratch. If you still have these Firefox problems, re-enable the disabled addon, restart your Firefox (again!) and repeat the same method for every single addon that you have.
    Try to be selective by choosing first addons that are more likely to cause your Firefox problems such as not very well-known or not very popular addons (like it was the case for the PhotoME addon).
    If this method works or if it does not work, report it on this web page so that others can be helped with your comments.
    I hope this method will help you because I was really upset that I had these Firefox problems and I first thought it was the fault of Firefox, only to discover later that this PhotoME addon was the culprit and had caused me such upset.

  • Cannot edit a page shortly after editing a page

    I am using Contribute CS4. I am able to connect to a site and
    make changes. When I go to edit a page, I see the .lck file created
    on the server. I can publish the change. However, after I publish
    my change, I cannot go back and make further edits w/o waiting for
    several minutes.
    If I act too fast and attempt to edit the same page, the
    previous version (local?) loads in the editor, and no lck file is
    created on the server. In this case, if I attempt to either publish
    or discard the draft, I get Access Denied messages - presumably
    because no lck file exists on the server.
    This action occurs repeatedly and predictably. Besides
    telling me to just sit and wait for five minutes before making
    additional changes, what else can I do to get around this
    issue?

    I've deleted the connection, closed and recreated it. Same
    results.
    I might also point out this issue isn't just related to a
    single site. It happens on the other site I manage through
    Contribute. Both sites also are hosted on windows machines running
    Plesk, if that matters.

  • Cannot create new page nor website and worse cannot edit existing websites

    When I click on File in the menu the only options that work are Setup Google AdSense and Page Setup...
    All other options are grey and cannot be accessed. This means that I cannot edit my existing websites which is a major problem.
    Any idea? Reinstalling iWeb did not help.

    sharked wrote:
    Do you have any more thoughts on this?
    "A lot of problems can be solved simply by..." Read more in the “Fix iWeb” section here:
    http://www.iwebformusicians.com/WebMusic/iWebTips.html

  • Contribute CS5 - cannot edit pages

    I have just installed trial (full) verstion of Contribute and I connected, can navigate between pages etc without any problem in view mode.
    However when I click the edit button it says (after trying to download the page and set up some files to work in): "Contribe encountered a network or file system error. Please try the operation again and contact the administrator if the error continues to occur." and does not create an editing page. If I do it again it creates an editing page but it is only the template and no text (apart from what exists in the template). If I add some text and publish it, it adds the text to the page I was editing adding it to the text already there (but which was not viewable in the edit page).
    Any ideas why this is happening? I have never used this programme before. My provider has no idea why this is happening and is not familar with Contribute. Any help to resolve this would be appreciated. Thanks.

    Please clear the preferences and try.
         Delete the Preferences in Library –
               Go to “<username>/Library/Preferences/”   and delete the folder  “Adobe Contribute CS5”
         Delete the Preferences in locale -
               Go to “<username>/Library/Application Support/Adobe/”     and delete the folder  “Contribute 6”
    If the above doesnot help then check if there any other versions of Contribute on the same machine and clear them also along with CS5 and try again.
    Check publishing a plain page from Contribute and reediting the same.
    Can you try editing any other page with a different template ?
    Could you try the same on any other machine and check?
    Can you share the URL ?

  • I have opened scanned pages in to acrobat X1 pro and cannot edit, it says its not editable text how do I scan it as an editable text

    I have opened scanned pages in to acrobat X1 pro and cannot edit, it says its not editable text how do I scan it as an editable text

    All scanners output one thing only -- an image, a picture of the stuff on the paper that was scanned.
    There is not "text". There is a picture of text characters.
    This image / picture can be brought into a PDF. What is in the PDF is still an image / picture of text.
    Open the PDF with Acrobat. Use Acrobat's OCR feature.
    If you desire to touchup some characters use the "ClearScan" OCR.
    (Review Acrobat's Help to resolve any questions on this.)
    Note that PDF is not a word processor file format and does not tolerate word processor like "editing".
    Use Acrobat to do touchups to characters and short character strings. Save As often.
    Be well...

  • Cannot Edit Pages

    Hello All,
    I'm new to DW so please keep that in mind. I have a site
    that I need to tweak and have been able to edit most pages in that
    site. However there are a group of pages that I cannot edit in any
    mode.(Design or Code) Each of these pages displays in yellow at the
    top right of the window "Template:internal" I'm not sure what that
    means. I have looked at much of the code but have found no obvious
    differences between the pages I can edit and those that I cannot.
    Could someone help me understand what is going on here?
    Thanks, Jeff

    > Is DW as bad as FP?
    Without a comfort level in HTML and CSS, anything will be
    trouble for you.
    On the other hand, if you are not put off by looking at code,
    then DW's
    templates are quite simple to understand and adapt to.
    > The site is quite large and has a few sub webs.
    DW will not play well with sub webs. Each sub web must be
    treated as an
    independent site in DW with its own site definition and local
    site (although
    you could nest your local sites in DW).
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    Does your site's usage require a testing server? By that, I
    mean to ask -
    are you using server scripting? If not, then you do not need
    a testing
    server.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jeff5100" <[email protected]> wrote in
    message
    news:gbari5$bhb$[email protected]..
    > Thanks ACE,
    >
    > There was indeed a Template folder with the template
    file in
    > it.
    > I have downloaded it and will attempt to discover how to
    use it. It
    > reminds me
    > of Front Page which is a nightmare to go behind. Is DW
    as bad as FP? I am
    > fairly comfortable with html and have a conceptual
    understanding of css. I
    > have
    > built a site or two from scatch with DW without any
    problems. My main
    > concern
    > is that this site has been built by many entities and
    using different code
    > applications. I have to fix a few cosmetic things but
    don't want to break
    > the
    > site with my minor changes. The site is quite large and
    has a few sub
    > webs.
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    >
    > Thanks again for your help
    >

  • Pages in iCloud cannot edit a converted MS Word to Pages file

    For our monitoring program we use some MS Word documents converted to Pages. Using the local Pages app these converted to Pages file works perfectly on our Mac. Life is good.
    What we cannot do is edit with the Safari iCloud Pages. It appears these forms were created using MS Word Tables. Yes it opens, but the body of the form is a table, wherein the entire table border is highlighted in blue thus we cannot edit the table as we can using the local Pages.
    Other than recreating this and other forms is there something we can do? We want others to be able to fill in these forms from within iCloud Pages in their browser.
    MBP, Mavericks.
    Cordially,
    RicD

    The following is from an older post:
    You can do this from icloud.com  (using a web browser on a Mac or PC). iCloud.com will give you the choice to download a Pages document as a Pages, PDF or Word document.
    Please read Apple's Support document titled iCloud: Get documents stored on icloud.com.
    HOWEVER, while I can download a word file on icloud as a word file, one of my Pages files can only come back as a Pages file.  Perhaps the advice above is no longer appropriate given the changes on iCloud.

  • Usernames with underscore at the begining cannot edit pages

    Hello,
    I know that a username (short name) starting with an underscore “_” are reserved by the system accounts.
    Anyways I wanted a character to differentiate users by their name and didn’t wanted to use the hyphen.
    So with such users, the pen button is never available. You cannot edit their pages.
    The fix is to not name your users using a underscore at the begining.
    I wouldn’t consider this as a bug but worth to know.
    Message was edited by: Thyb
    Message was edited by: Thyb

    > Is DW as bad as FP?
    Without a comfort level in HTML and CSS, anything will be
    trouble for you.
    On the other hand, if you are not put off by looking at code,
    then DW's
    templates are quite simple to understand and adapt to.
    > The site is quite large and has a few sub webs.
    DW will not play well with sub webs. Each sub web must be
    treated as an
    independent site in DW with its own site definition and local
    site (although
    you could nest your local sites in DW).
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    Does your site's usage require a testing server? By that, I
    mean to ask -
    are you using server scripting? If not, then you do not need
    a testing
    server.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jeff5100" <[email protected]> wrote in
    message
    news:gbari5$bhb$[email protected]..
    > Thanks ACE,
    >
    > There was indeed a Template folder with the template
    file in
    > it.
    > I have downloaded it and will attempt to discover how to
    use it. It
    > reminds me
    > of Front Page which is a nightmare to go behind. Is DW
    as bad as FP? I am
    > fairly comfortable with html and have a conceptual
    understanding of css. I
    > have
    > built a site or two from scatch with DW without any
    problems. My main
    > concern
    > is that this site has been built by many entities and
    using different code
    > applications. I have to fix a few cosmetic things but
    don't want to break
    > the
    > site with my minor changes. The site is quite large and
    has a few sub
    > webs.
    > Anyway, I guess I test on a local server and hope to get
    an understanding
    > of
    > DW.
    >
    > Thanks again for your help
    >

  • Page not displaying - cannot edit - ok in live view

    I have jsut upgraded to Dreamweaver CS 5.5 -  Windows 7 - My site used to  work fine in Dreamweaver CS4 - I have a template with editable regions and lots of divs -  wehn I ope the page in CS 5.5 - it shows the backgroudn  [which  repeats ] but none of the editable text
    teh page can be found at www.fcrsafield.com/list.hmtl
    The page displays correclty in live view - I've tried turning off"style renderign" and that allowed me to see my content and to edit it - but as soon as I saved teh file  - it all disappears again - but it is there in live view .
    Any help is apreciated as I have more than 100 pages built on this template.

    I'm surprised the page shows up at all in any browsers.  You've got some very whacky CSS rules.  I cleaned up the obvious stuff and removed what didn't seem to belong.
    @import url("../p7pm/p7pmh11.css");
    body {
    font-family: Geneva, Arial, Helvetica, sans-serif;
    font-size: 16px;
    text-align: left;
    background: url(../images/patternDetailsMax401.jpg) fixed;
    #pagecontainer {
    width: 1000px;
    margin:0 auto;
    overflow:hidden; /**to contain floats**/
    #top {
    background-color: #cdc9a5;
    border: thick outset #b1a999;
    #middle {
    background-color: #b1a999;
    width: 1000px;
    margin:0 auto;
    #navbar {
    text-align: center;
    padding-top: 1%;
    margin-top: 10px;
    #content {
    clear:both;
    background-color: #FFFFFF;
    margin:25px 0 0 0;
    padding-right: 2%;
    padding-left: 2%;
    border: thick outset b1a999;
    #footer {
    background-color: #Cdc9a5;
    margin-right: 4%;
    margin-left: 4%;
    border: thick outset #b1a999;
    margin-bottom: 6%;
    /**use meaningful names, no idea what this is for**/
    .style16 {color: #FF0033}
    .style17 {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 4em;
    font-weight: bold;
    font-style: italic;
    color: #000000;
    text-align: center;
    margin-bottom: 10px;
    .style18 {font-size: 10px}
    A must read:
    How to Develop with CSS?
    http://phrogz.net/css/HowToDevelopWithCSS.html
    Finally, I highly recommend using one external CSS file in your Template.dwt.  It's much easier to manage and creates less code on your HTML pages.
    http://alt-web.com/DEMOS/DW-Link-Stylesheet.shtml
    Good luck.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • How to make link in a template editable in a page?

    I am new to Dreamweaver. I'm trying to create a link in a
    template where the URL is editable in all pages derived from that
    template. I tried using
    Modify->Templates->Make Attribute Editable..., but the
    link still cannot be edited in any of the pages. Can someone help
    me with this?
    Thanks,
    PeterM

    On Wed, 18 Jun 2008 17:11:41 +0000 (UTC), "PJMonty"
    <[email protected]> wrote:
    > Per Gary's suggestion, I tried
    Modify->Templates->Make Attribute
    >Editable... and made the HREF attribute editable,
    but again, when I went to
    >an updated child page, I still get the red circle with a
    slash cursor that
    >prevents me from editing the link. I was able to modify
    it by using
    >
    Modify->Template Properties..., but that's a pretty
    indirect method. Is
    >there not some way to simply have a link that is on a
    template, but that also
    >allows you to simply click on the link in the child page
    and modify the URL?
    Sorry, that's just the way editable attributes work.
    > I'm just trying to have a "Next Page" link at the bottom
    of the template so I
    >can have a series of related pages link to each other.
    For example, I have a
    >link in the menu on the left of the main page which, when
    clicked, leads you to
    >a topic. That topic might span 4 or 5 pages. I want a
    link at the bottom of
    >each page in a topic that says "Next Page" which lets the
    viewer click to the
    >next page. I want that link to be editable on child
    pages. Not all pages need
    >the "Next Page" link, so I need to be able to make it
    invisible on some child
    >pages.
    Just put the link inside an editable region. The link will
    appear in
    new pages made from the template, but you can edit or delete
    the link
    in those child pages.
    Gary

Maybe you are looking for