Skip to main content

Posts

How to hide ribbon row when enabling anonymous access in SharePoint 2010

enable anonymous access to your site the ribbon row will appear for anonymous users but without "site actions" menu and it will be "Login" link but if you need to hide all this row you have to do the following 1- Open your masterpage with SharePoint designer 2- Find the ribbon row Search on "ribbonrow" 3- before the div that holds the ribbon add this tag sharepoint : spsecuritytrimmedcontrol id ="SPSecurityTrimmedControl2" runat ="server" permissionsstring ="ManageSubwebs"> 4- after the end of the ribbon div close the security tag / sharepoint : spsecuritytrimmedcontrol >

How to hide ribbon row when enabling anonymous access in SharePoint 2010

When you enable anonymous access to your site the ribbon row will appear for anonymous users but without "site actions" menu and it will be "Login" link but if you need to hide all this row you have to do the following 1- Open your masterpage with SharePoint designer 2- Find the ribbon row Search on "ribbonrow" 3- before the div that holds the ribbon add this tag 4- At the end of the ribbon div close the security tag

Missing Create or Extend Web Application in Central Administration

Recently I wanted to create a new web application in SharePoint and so I went to the Central Admin website to create one, but the option was missing. Even though I was logged in as the System Account, the farm administration account I couldn't see the link. If I navigated directly to /_admin/extendvs.aspx I got an access denied message and none of the accounts configured for SharePoint would allow me access. Use the link from Start Menu. As soon as I navigated from the start menu I realized that I was . using Windows Server 2008 and that Central Admin has to be run with administrator privileges. As soon as the browser opened the 'Create or Extend Web Application' link .

Custom Master Page (File Not Found Error) - MOSS 2007

Create a custom Master page and Page Layouts and install it as a Sharepoint feature in the site collection. The steps for creating a feature (MOSS) is mentioned by Heater Solomon http://www.heathersolomon.com/blog/articles/servermstpageforsitecollect_feature.aspx Problem Investigation: Upon applying my custom master page I got an unusal error File Not Found. I spent few hours identifying the problem and then realised that SPD (Sharepoint designer) changed the path inside the code Example Orginal Code Changed By SPD Lesson(s) Learnt: Do not open any files (Stored in file system) using Sharepoint Designer If the file is already stored in content database, then use Sharepoint designer to modify the code

How to rename the web site?

>>I have a new installation of Sharepoint. Before we start using it, I would like the site to be more meaningful than http://server08/site.>>I would like to change the name so that is is something like http://mysite/site . Answer: There are several ways of how to rename Web Site. You can use stsadm -o renameweb command. More details are in MSDN article . But this command does't help you if you want to rename the site with the port. For example if you have http://server08:88/site and want to rename it to new name with the default port then the best way is to create the new site, and then use stsadm -o export/import to move the content between sites. Example The following example uses the following site: http://server_name/sites/site_name/subsite_name. To rename a URL using the newname parameter, use the following syntax: stsadm -o renameweb -url http://server_name/sites/site_name/subsite_name -newname NewWeb The URL of the subsite would become http://server_name/sites/...