hot questions tagged masterpage+sharepoint - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T15:35:40Zhttp://stackoverflow.com/feeds/tag?tagnames=masterpage%2bsharepoint&sort=hothttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1790266/masterurl-default-master-does-not-exist0~masterurl/default.master does not existCiprian Grosu2009-11-24T14:03:40Z2009-11-25T08:31:15Z
<p>Hello all,</p>
<p>I try to create a custom webpart page. I tried a book example that start with : </p>
<pre><code><%@ Page MasterPageFile="~masterurl/default.master"
Inherits="Microsoft.SharePoint.WebPartPages.WebPartPage,
Microsoft.SharePoint, [full 4-part assembly name]"
meta:progid="SharePoint.WebPartPage.Document" %>
</code></pre>
<p>....but no result....
The page is deployed into _layouts folder but when I try to access it from browser I get : "_layouts/~masterurl/default.master does not exist".
What I do wrong ?</p>
<p>Thank you in advance !</p>
<p>Solved the problem : read again the book and indeed I did not have to add the page to _layouts folder. Thank you for opening my eyes :). All steps are well explain in the book but I was not concentrating enough. Yes, one down....</p>
http://stackoverflow.com/questions/1472176/proper-way-to-hide-place-holders-in-a-sharepoint-2007-master-page0Proper way to hide place holders in a SharePoint 2007 Master Page?Mike Arsenault2009-09-24T14:43:24Z2009-09-25T14:38:11Z
<p>I am working on a specialized instance of MOSS for a client where What I am wanting to do is hide elements on the master page. In particular, I want to hide the main top navigation bar, the search functionality and the label that shows up in the upper-left-hand corner that tells you the name of the site you are on. So I made a copy of the default.master, and then in SP Designer I set the visible attributes for the placeholders for these blocks to “false” in the new master file. </p>
<p>I can then assign the master to my normal site collection no problems and it seems to been working like I want it to. But when I go to look at the system pages (i.e. any of the forms or backend stuff), it is still using the old default master. And when I tried to set the System Master Page to my customized master file, my MOSS instance threw a File Not Found error. Then certain parts of the admin area just started failing in that same way (i.e. I would try to go into Site Settings -> Content and Structure and it also would throw a File Not Found error) Then at one point, the whole Site Collection would throw “Unknown Error” and there didn't seem to be a way to recover, short of reverting the state of the VM I am running MOSS in for development purposes.</p>
<p>So I am curious, what is the best way to create a custom master page and then hide elements on that page? I realized that my web cluster didn’t have the proper flag set up to actually show me real ASP error messages, so I am going to change that tonight when I get home and see what SP is really telling me about all of this. I have also read that changing the application.master file is not recommended, but I figured I could get away with making a custom page for the Site and System master pages and not worry about application.master. I have been reading a bunch of Heather Solomon articles as well as various other things. They all basically say that it’s ok to hide elements on a master page, but not delete them outright as SP will break if you do that. Would it be advisable to use a JS/CSS hack to manually hide elements that way, rather than actually making a new master page?</p>
http://stackoverflow.com/questions/1402241/forms-authentication-and-sharepoint-profilepropertyloader0Forms Authentication and SharePoint ProfilePropertyLoaderScott Jones2009-09-09T21:37:02Z2009-09-10T08:45:08Z
<p>I am trying to use the ProfilePropertyLoader to display a welcome message in this format:</p>
<pre><code><SPSWC:ProfilePropertyLoader runat="server"/>
Welcome,
<SPSWC:ProfilePropertyValue PropertyName="FirstName" ApplyFormatting="false" runat="server"/>
<SPSWC:ProfilePropertyValue PropertyName="LastName" ApplyFormatting="false" runat="server"/>!
</code></pre>
<p>which I have in my master page.</p>
<p>The site that uses both windows authentication and forms authentication. This works fine when logging in via the windows auth site, but when I attempt it using forms authentication I get an Access Denied error while logging into the site.</p>
<p>I even tried setting permissions of a user to full control in sharepoint but still no luck. It seems to be denying forms users (simple auth against the aspnetdb database in sql server) access to those controls. </p>
<p>Anyone have any ideas?</p>