Change Pages to pages in sharepoint url

I have requirement i got requirement from my company that we "pages" in sharepoint url instead of "Pages". How i can achieve this task ?
Regards
Rahim

Hi
Using SharepointDesigner connect to your Site and try to rename the folder
Romeo Donca, Orange Romania (MCSE, MCITP, CCNA) Please Mark As Answer if my post solves your problem or Vote As Helpful if the post has been helpful for you.

Similar Messages

  • How to dynamically change link in Page Viewer Web Part SharePoint 2010?

    Newbie Question:
    Situation:
    a) Created: Two Site Pages page 1 & page 2
    b) Page 1: Includes simple hyperlink text Example - Home | About Us | Contact etc
    c) Page 2: Includes Page Viewer Web Part that includes link to an existing web site (this site has all of the pages) and the olde site is shown in SharePoint site
    Complication:
    a) I want the users to click on Page 1 - About Us etc
    b) The View on Page 2 - page viewer link should be dynamically updated to About Us . If user clicks on contact us on Page 1..the page 2 view should change dynamically to Contact US
    ASK:
    a) How do I dynamically update the links in Page Viewer web part using minimal coding (if possible)
    Any Guidance will be greatly appreciated.

    Hello,
    You can also used the another appoch,
    Create your custom webpart , then add the PageViewer Webpart at run time,Create webpart property for the custom webpart to change the url and add the PageViewer webpart runtime,
    I have created the custom webpart property to specified the url at the tine of edit the webpart
    Here is the code
    using System;
    using System.ComponentModel;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.WebControls;
    using System.Collections;
    using Microsoft.SharePoint.Publishing.WebControls;
    using Microsoft.SharePoint.WebPartPages;
    namespace MyNameSpace.MyPageViewer
    [ToolboxItemAttribute(false)]
    public class MyPageViewer : System.Web.UI.WebControls.WebParts.WebPart
    private string _customUrl = "http://yourdefaulturl";//Specified default url
    [WebBrowsable(true)
    , Personalizable(true)
    , Bindable(true)
    , Browsable(false)
    , DefaultValue("")
    , Category("Custom Page Viewer Properties")
    , WebPartStorage(Storage.Shared)
    , FriendlyName("PageViewer URL")
    , Description("PageViewer URL")]
    public string CustomUrl
    get { return _customUrl; }
    set {if (string.IsNullOrEmpty(value) == false) { _customUrl = value; } }
    #endregion
    public MyPageViewer()
    this.ChromeType = PartChromeType.None;
    protected override void OnInit(EventArgs e)
    EnsureChildControls();
    base.OnInit(e);
    protected override void CreateChildControls()
    string pageViewerUrl = CustomUrl;
    Microsoft.SharePoint.WebPartPages.PageViewerWebPart pageViewerWebPart = new Microsoft.SharePoint.WebPartPages.PageViewerWebPart();
    if (!string.IsNullOrEmpty(pageViewerUrl))
    pageViewerWebPart.ContentLink = pageViewerUrl;
    pageViewerWebPart.ChromeType = PartChromeType.None;
    pageViewerWebPart.Height = "382";
    pageViewerWebPart.Width = "682";
    this.Controls.Add(pageViewerWebPart);
    protected override void OnLoad(EventArgs e)
    base.OnLoad(e);
    protected override void OnPreRender(EventArgs e)
    base.OnPreRender(e);
    Hope this will help you
    Hiren Patel | Please click "Propose As Answer" if this post solves your problem or "Vote As Helpful" if this post has been useful to you.

  • I am getting I am getting nativehr 0x80070057 /nativehr nativestack /nativestack error when I change my publishing page layout in SharePoint 2010.

    Hello All,
    I am getting the following error when I tried to change the page layout of a publishing page in my site collection using SharePoint 2010.
      Here I am just trying to change the page layout to "Four Item Grid" page layout. But i am not sure why this error is coming up.
    I tried to search in the internet but no one has this kind of issue it seems.
     Can anybody help me in resolving this issue.

    I had this same problem when trying to change the layout on a publishing page.
    What I found by running some powershell script against the pages library is that the ows_PublishingPageLayout field actually referenced a layout url from another site. What had happend is that an author downloaded a copy of a page from one site and
    uploaded it to another site. Evidently when you do this the url reference to the page layout file does not get corrected (it's fully qualified)
    To fix this problem I wrote some powershell script to update the ows_PublishingPageLayout url so the site host url was corrected and did not have the old/original site's url.
        $SiteUrl = "http://your.site.url.here"
        $SPSite = New-Object Microsoft.SharePoint.SPSite($SiteUrl); 
        $OpenWeb = $SpSite.OpenWeb(); 
        $publishingWeb = [Microsoft.SharePoint.Publishing.PublishingWeb]::GetPublishingWeb($OpenWeb)    
        $AllPubLayouts = $publishingWeb.GetAvailablePageLayouts()
        $pages = $OpenWeb.Lists["Pages"]
       #view all page layouts
       foreach ($page in $pages.Items)
            if (!$page["ows_PublishingPageLayout"].ToString().Contains($SiteUrl))
                write-host $page.url
                write-host $page["ows_PublishingPageLayout"]    

  • Can't change the master page after upgrading to SharePoint 2013.

    After upgrading our farm to SharePoint 2013 we are having trouble changing the master page for sites that don't have sub-sites. We are still using the v4 UI version, and that appears to be what is causing the problem. The error we get when going to /_layouts/ChangeSiteMasterPage.aspx
    is:
    System.NullReferenceException: Object reference not set to an instance of an object.    at Microsoft.SharePoint.Publishing.Internal.CodeBehind.AreaChromeSettingsPage.OnLoad(EventArgs e)     at System.Web.UI.Control.LoadRecursive()    
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    I took a peek at the source code for AreaChromeSettingsPage.OnLoad and found that it references a CheckBox control that does not exist in the v4 ChangeSiteMasterPage.aspx:
    protected override void OnLoad(EventArgs e)
    base.OnLoad(e);
    this.EnsureChildControls();
    if (!this.Page.IsPostBack)
    this.LoadValues();
    if (base.Web.Webs.Count == 0)
    this.resetSystemMasterPageSubSitesCheckBox.Visible = false;
    this.resetSubSitesCheckBox.Visible = false;
    this.resetAlternateCssSubSitesCheckBox.Visible = false;
    this.resetThemeSubSitesCheckBox.Visible = false;
    base.ConfigureCancelButton(this.BtnCancel);
    If I manually add a checkbox control with the ID "resetThemeSubSitesCheckBox" to a hidden panel in the v4 copy of ChangeSiteMasterPage.aspx the page works, but obviously this is not a best practice. How can we fix this without upgrading the UI version, which
    we are not yet ready to do?

    Thanks Mike - Could you please share what is your next step then? I also have custom master pages and layout but I am going to make new master page and layout in 2013 as we need to change the existing branding too. so, i upgrade the site collection. I understand
    the Look and Feel will not persist after the upgrade but I am concern that at least the page should show the content on the page after the upgrade. The page had Calendar webppart on it but after the upgrade it is coming blank.
    any suggestion?
    Regards,
    Khushi
    Khushi

  • How long does itunes:new-feed-url take to completely change my podcast page?

    I've used the itunes:new-feed-url to change my podcast page, but I'm curious how long it takes. I have a new episode up, but the podcast page located here doesn't show that third episode, even though the new feed as well as 301 redirect is in place.

    The Store won't redirect to the new feed at http://www.tripodbroadcasting.com/givethatsomethought/feed/ until the next time it checks the old feed. You posted the latest episode only today: it usually takes 1-2 days for new episode to appear in the Store as it caches feeds and visits them in rotation to check for changes. When this happens it will transfer to the new feed. Subscribers are already redirected to the new feed and see the third episode.

  • Unable to add page in Page library of SharePoint 2007 site

    The site is not valid. The 'Pages' document library is missing.   at Microsoft.SharePoint.Publishing.PublishingWeb.get_PagesList()
       at Microsoft.SharePoint.Publishing.Internal.CodeBehind.BasePageSettingsPage.LoadValues()
       at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePagePage.LoadValues()
       at Microsoft.SharePoint.Publishing.Internal.CodeBehind.BasePageSettingsPage.OnLoad(EventArgs e)
       at Microsoft.SharePoint.Publishing.Internal.CodeBehind.CreatePagePage.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    above error is occuring when trying to add page in Page library through UI.
    Office SharePoint Server Publishing feature is active.
    Please help to resolve the issue.
    Rushikesh_Khadtare

    Hi,
    Running the below PowerShell script fixes the issue, you need to change the site url. The script actually looks for the pages library in the site for which url is given and assigns the ID of the pages library to the __PagesListId property.
    # Load the SharePoint assemblies
    [Void][System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint")
    $web = get-spweb http://site-collection/path-to-affected-site
    $correctId = $web.Lists["Pages"].ID
    $web.AllProperties["__PagesListId"] = $correctId.ToString()
    $web.Update()
    Then  try to de-activate and re-activate the publishing feature again.
    Reference:
    http://www.rjesh.com/2014/02/the-site-is-not-valid-pages-document.html
    http://blogs.technet.com/b/praveenh/archive/2013/01/22/running-powershell-on-moss-2007.aspx
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • How do you change the default Page Handling/Page Scaling settings?

    Hello, I use Adobe Acrobat 7.0 Standard. I work in the construction industry, so it is important drawings are printed to scale. when I go to print an A3 landscape pdf the page handling > page scaling settings automatically default to 'Fit to Printer Margins' - which then throws out the scale of the drawing content. I can manually change this setting to 'None' each time I print, but this is not fool proof as I sometimes forget.
    Is there a way to change the default setting for this property? Any help is appreciated.
    Thanks

    Hi,
    Answering to your questions.
    I hope the below link will help you, About how to set up URL Forwarding in iWS.
    For iWS6.x version.
    http://docs.iplanet.com/docs/manuals/enterprise/60sp1/ag/escontnt.htm#1002112
    For iWS4.x version.
    http://docs.iplanet.com/docs/manuals/enterprise/41/ag/esapuir3.htm#1057412
    Thanks,
    Daks.

  • I loaded a jZip programme, now whenever I start Firefox it open with the jZip search page and I can't permanently change the home page to my own selection. How can I get rid of theis iZip home page

    I have tried all the optons to change the home page, but when I exit from Firefox and restart, it will revert to the iZip search engine home page. I even deleted the izip search engine reference from the searchplugin directory but with no success

    You can open the <b>about:config</b> page via the location bar and do a search for <i>jzip</i> via the Filter at the top of the about:config page.<br />
    You can reset all <i>jzip</i> related prefs via the right-click context menu to their default values.
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    You can use the Filter bar at to top of the about:config page to locate a pref more easily.

  • How to change the master page and theme dynamically in sharepoint2013 anonymous site

    hi
    I have to change the master page and theme dynamically in sharepoint2013 anonymous site. i have to show one master page to authenticated user  another master page to anonymous user through code
    Srinivas

    Hi Srinivas,
    According to your description, my understanding is that you want to change the master page and theme dynamically based on the anonymous users or authenticated users.
    Per my knowledge, there is not an OOB way to change the master page and theme dynamically.
    SharePoint is based on Asp.net, as we know Asp.Net request processing is based on pipeline model, so we can delevlop a custom HttpModule to dynamic change the master page based on current logon user profile(using SP Object Model to get).
    Another solution could be to use the SecurityTrimmed control that injects the CSS depending on global user permissions, more information, please refer to
    it.
    Some similar posts for your reference:
    http://social.msdn.microsoft.com/Forums/office/en-US/c2b2d0da-c752-4aea-9c2d-e31a5b1a2988/sharepoint-2010-dynamic-masterpage-based-on-userprofile-property
    http://johanleino.wordpress.com/2011/10/20/using-a-different-master-page-for-authenticated-users-in-sharepoint/
    http://sharepoint.stackexchange.com/questions/21679/how-can-we-use-a-different-masterpage-for-annoymous-and-authenticated-users
    http://sivarajan.me/post/How-to-customize-the-SharePoint-2013-Master-Page-for-Anonymous-Users
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Which page items get included in URL on doSubmit()?

    This is totally perplexing me.
    I have a page with 5 page items in a tabular region. All of them are set to hidden/protected.
    The page is loaded with one of those page items specified in the URL.
    If I use the button to delete one or more rows on the from, or click on the "Add New Row" button, the page is submitted, and comes back with three of those five page items specified in the URL.
    First question: why only 3 and not all 5? Why THESE three? I can't see any differences between one of the page items that does display in the submitted URL vs. one that doesn't.
    Second question: I changed one of those page items to display conditionally. If a certain condition is not met, the field is never output to the page. However, EVEN THEN when I submit the page using one of the buttons above, the field is included in the submitted URL! Should that even be happening? That actually strikes me as a security risk, unless there's something I'm doing wrong.
    I can probably create a test page on apex.oracle.com if necessary. (It's on apex.oraclecorp.com right now, but moving it will take some time since I'll have to strip out some sensitive data.) But I'm hoping this is just some easy-to-explain concept I'm just not grasping.
    Thanks.
    - Keith

    hi Keith,
    1) check the branch. the branch defines what is passed to the next page.
    2) yes, this is correct behaviour. condition is for rendering, but the branch is fixed.
    brgds,
    Peter
    Blog: http://www.oracle-and-apex.com
    ApexLib: http://apexlib.oracleapex.info
    Work: http://www.click-click.at

  • How do I keep programs from changing my home page

    Everytime Firefox starts, another program keeps changing my home page. How do I stop this from happening?

    This could be caused by either of the following (and possibly other things, but these are the ones that come to mind first):
    (1) Bad Extension
    You can review/disable/remove nonessential or unrecognized extensions here:
    orange Firefox button (or Tools menu) > Add-ons > Extensions category
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    (2) user.js file
    This is a configuration file that overrides changes you made in Firefox every time you exit and restart the browser. To track down and remove such a file, check out the steps in this article: [[How to fix preferences that won't save]].
    Note: if it comes back, the home page URL might provide a cue as to what program on your computer is creating/editing the user.js file.

  • Cannot change Firefox start page on XP, always Dell Start page.

    I cannot change the start page on Firefox on my Dell XP. I can change it on I.E., Seamonkey, and Netscape. Firefox always becomes the Dell/Google start page. I don't have the GoogleAFE nor the Browser Address Redirect programs. I don't have the My Way program. I am not using Zone Alarm (which locks the home page). No entry in the registry has a google.com/ig/dell URL. This only affect Firefox.

    See the [[Preferences are not saved]] article. If it is just the home page setting that can not be changed, the first place to check is the user.js file as shown in that article.

  • How check page level permission on SharePoint pages library using JSOM

    Hi,
    Can anyone tell me how check page level permission on SharePoint pages library using JSOM.
    Tanks in advance .
    Regards,
    Hari
    Regards, Hari

    Hi,
    According to your post, my understanding is that you want to check the page level permission on SharePoint Pages library via JSOM.
    I have made a simple code demo to check whether current user has edit permission for the pages in Pages library, it works like a charm.
    You can re-write it to fit your environment.
    <script src="http://code.jquery.com/jquery-1.10.2.min.js" type="text/javascript"></script>
    <script type="text/javascript">
    var web;
    var list;
    $(function(){
    $("#Button1").click(function()
    console.log(1);
    getListItems('Pages',success_Items,error_Items);
    console.log(2);
    function getListItems(listTitle,success,error)
    var context = SP.ClientContext.get_current();
    this.web = context.get_web();
    this.list = context.get_web().get_lists().getByTitle(listTitle);
    this.items = list.getItems(SP.CamlQuery.createAllItemsQuery());
    this._currentUser = web.get_currentUser();
    context.load(this._currentUser);
    context.load(web,'EffectiveBasePermissions');
    context.load(items);
    context.executeQueryAsync(
    function() {
    success(items);
    error
    function success_Items(items){
    var e = items.getEnumerator();
    while (e.moveNext()) {
    this.item = e.get_current();
    console.log(this.item.get_item('FileLeafRef')); //print File or Folder Name
    console.log(this.item.get_item('FileRef')); //print File or Folder Url
    if (this.web.get_effectiveBasePermissions().has(SP.PermissionKind.editListItems)) {
    console.log('Nice, edit list item permissions!');
    else {
    console.log('Boo, no edit list item permissions!');
    function error_Items(sender,args){
    console.log(args.get_message());
    </script>
    <input id="Button1" type="button" value="Check Permissions"/>
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Transferring Custom Master-Page, Custom Page Layouts and Pages created to a new SharePoint Site.

    Hi All,
    I have a SharePoint 2013 Publishing Site for testing named 'Test'. In the Test I have created a Custom Master-Page and several Custom Page Layouts. Also using them I have created  several pages. Now they all are connected to the navigation. Now I want
    to transfer all the pages, custom master-page and custom page layouts to a new site (a publishing site) that will be used as production. Will I able to do this or not. Please advice me with best practices.
    Thanks and regards,
    Chiranthaka

    Hi Chiranthaka,
    thanks for posting your query, The master page can't be copied in designer and pasted into the new site collection. A better approach would be to bundle it into a feature and deploy it to the farm where it can't be activated and used.
    If you want to copy your master page to another site collection you can download your master page from the master page gallery and upload it to the the master page gallery of the second site collection. From the root site Site Actions > Site Settings
    > (Galleries)Master pages and page layouts
    If you want to deploy the same master page to multiple site collections using a feature, create a module in Visual Studio, add your custom master page to the module, and create an element manifest something like this:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <Module Name="Master Pages" List="116" Url="_catalogs/masterpage" RootWebOnly="TRUE">
    <File Path="Master Pages\MyCustom.master" Url="MyCustom.master" Type="GhostableInLibrary"></File>
    </Module>
    </Elements>
    The basic idea is to have your site-scoped feature include a module that copies your custom master page from the file system to the masterpage gallery. Since the feature folder is shared, the same master page gets copied to the site collection master page
    gallery whenever you activate the feature.
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Change the initial page

    Hi, i create a new smart project... and the first page is: overview_syncboinstances.jsp
    I want change the first page by another that i have... How can i do it?
    Thanks,

    Hi Victor,
    as you create the WAR file in MDK you are asked for a url pattern. This is set to /start at default value. If you then have a look into WEB.XML file in the WEB-INF folder, you foind:
    <servlet-mapping>
       <servlet-name>start</servlet-name>
       <url-pattern>/start.jsp</url-pattern>
    </servlet-mapping>
    change it to
    <servlet-mapping>
      <servlet-name>start</servlet-name>
      <url-pattern>/ownPage.jsp</url-pattern>
    </servlet-mapping>
    and it will use ownpage intead of start.jsp
    Hope this helps!
    Regards,
    Oliver

Maybe you are looking for

  • Sporadic Error in XLMP

    I get the following error (sporadically) when submitting a XML Publisher Report. Sometimes it works and other times it doesn't... totally random behavior. XML Report Publisher 5.0 Updating request description Waiting for XML request Retrieving XML re

  • Value too low on report client session on the WCS

    Hello, I'm trying to generate a report on the WCS through the menu: Reports > Report Launch Pad> Client >Client Sessions > Client Sessions Report Details Moreover for the report I customize it adding the Tx (bytes) and the Rx (bytes) column. My probl

  • Problem with creation message

    Hello. we have configured our Solution Manager for VAR. We added the Support Team to patrner schema (SLFC0001) also we added support team to rule 13200137 CRM_DNO_1. After that when we try to create message with BC* component the window "Create Suppo

  • How to Do searching in this forum

    Hi all, I want to how to do searching for this forum. Let us say i am only interested in forum posting where <b>SAPscirpt and email will appear.</b> Should i do "sapscript" and "email"? i tried, but it is not working. I am getting all link which is h

  • How to disable backup password

    how to disable backup password knowing that the box under backup (encrypt local backup) is not aailable to unmark