SharePoint Foundation 2010 - Display Site Pages on the Quick Launch

how do you display site pages on the quick launch?
sukai

Try below:
http://sharepoint.stackexchange.com/questions/28056/how-to-display-subsites-and-their-sitepages-via-the-quick-launch-navigation-menu
http://office.microsoft.com/en-in/sharepoint-server-help/configure-the-quick-launch-for-site-navigation-HA102130960.aspx
http://stackoverflow.com/questions/3636366/display-quicklaunch-on-webpartpage-in-sharepoint-2010

Similar Messages

  • SharePoint Foundation 2010 - StoreMan.aspx page not reporting proper metrics

    The configuration of my farm:
    Sharepoint 2010 Foundation - up to date on all service packs.
    SharePoint Offers an Application Page (_layouts/storman.aspx) which enables the user to view the Size usage of files throughout a Site collection. 
    Currently this page is only referred from within the Site settings. Only those with owner rights can get to the link.  We are planning to set  up the link on an "Admin Dashboard page" so all users can see and use the information to delete
    versions or uneeded documents. It's very handy for this type of reporting.
    The problem is that the numbers shown in the .aspx page do not properly reflect the values shown in the libraries. I'm sure the timer job that runs this report is looking at all versions throughout the portal (even in the recycle bin). This is where I see
    the innacuracy I'm experiencing.  Is there a way to get Storageman.aspx to only run on the files in libraries and ignore the recycle bin? Does anyone have any ideas of how to give users more accurate data on file sizes? Our storage is locally hosted and
    we adhere to a strict data usage policy, yet I'm finding it difficult to enforce without the ability to show users where the "problem children" live.

    HI Shaun,IE11 is having some know issues with the share point.Make sure the IE (Internet Explorer) Version should be 32-bit and not a 64-bit.
    http://expertsharepoint.blogspot.de/2014/08/issues-with-sharepoint-2013-and.html
    Anil Avula[MCP,MCSE,MCSA,MCTS,MCITP,MCSM] See Me At: http://expertsharepoint.blogspot.de/

  • Sharepoint Foundation 2010 - Search service cannot start

    Hi,
    I'm trying to start the Search Service on SharePoint Foundation 2010 SP2, but I get the following error:
    Could not access the Search administration database. A generic error occurred while trying to access the database to obtain the schema version info.
    However the search database is well created during the process and I've checked that Shared Memory is enabled for SQL Native Client.
    Can you please suggest me on this
    Thanks

    Hi
    Alemaitre,
    If Shared Memory is enabled can you try below article
    http://svengillis.blogspot.com/2011/09/could-not-access-search-administration.html
    http://blog.arjanfraaij.com/2012/06/could-not-access-search-administration.html
    or if this is the problem after installing any SP / CU then make sure you have successfully ran PSConfig on all servers
    Let us know your results, thanks
    Regards,
    Pratik Vyas | SharePoint Consultant |
    http://sharepointpratik.blogspot.com
    Posting is provided AS IS with no warranties, and confers no rights
    Please remember to click Mark As Answer if a post solves your problem or
    Vote As Helpful if it was useful.

  • Slowness Issues with Windows Authentication in SharePoint Foundation 2010 sites

    All, 
    We are having a strange issue with SharePoint Foundation 2010 sites where sites are very slowly loading when accessed via windows based authentication where as the extended sites in  forms authentication are loading normally.
    There were no error logs or even SharePoint logs also except the images load time is showing with different load times.
    Attached are the patches that were updated to the server that may be issue but not sure. Can some one please share your thoughts.
    SQL connectivity b/w the server is good.there are no n/w issues except that the users are using the sites with a different domain other than the domain in which the servers were hosted.
    There is a trust b/w the two domains.This was never changed and there were no issues in the last 2 years.
    Thanks keshav,Share point Developer

    we do have trusted domains
    Inder : It would be better if you run that command again now.
    Inder: How many AD server do you have
    Inder: Do you notice the login request go to nearest AD server. 
    and https sites. Please share your thoughts.
    Inder: All the certificate have intermedite certificates. You need to logon to each SP server, and install
    these certificates on trusted root authority 
    If this helped you resolve your issue, please mark it Answered

  • Reg:: SharePoint Foundation 2010 site Migration

    Dear Techys,
    I have a scenario regarding SharePoint 2010 Migration, Please guide me for below one.
    I'm having SharePoint Foundation 2010 sitecollection, and I would like to move the sitecollecton from Foundation to Server farm. I mean SharePoint Foundation 2010 to SharePoint server 2010 environment.
    Many Thanks,
    Madhu

    Hi,
    The easiest way is content database attaching approach when the following conditions are fulfilled.
    If you do not have the custom developed stuffs such as (web parts,workflows,event receivers and any other business logic involving in dealing with web services or assemblies.)
    If your SQL Build version and Cumulative updates /Patches on the server is higher and identical respectively.
    On second scenario where you have some custom stuffs on your server that need to be updated along with server edition,then you need to move this (assemblies,workflow related xml files if any) on first and then use SharePoint Power Shell Command site backup
    and restore on your target server.
    Before doing this, take copy of your old server's web.config and web application related IIS configuration files to cross verify any of the migrated stuffs missing or get well informed about exception occurred on backup/restore and migration process.
    Murugesa Pandian.,MCTS|App.Development|Configure

  • Prompting the credentials while click MS office documents in document library in SharePoint Foundation 2010

    Hi,
    I have site with contains many document library each contains many MS Office and Pdf files. We have provided document library level access rights. While users click the file name, "Prompting the credentials while click MS office documents in document
    library in SharePoint Foundation 2010".
    Its annoying the user.
    How could i resolve this? Its for all users.
    Note: only for MS Office file. other files are opening correctly.
    Kind Regards
    Poomani Sankaran

    Hi,
    According to your post, my understanding is that you got the promote issue when clicked the documents in the library of the SharePoint foundation server.
    The issue may be caused that the Kerberos authentication is misconfigured, you can change to NTLM to check whether it works.
    http://www.techrepublic.com/blog/smb-technologist/prevent-unwanted-credentials-prompts-with-sharepoint-document-libraries/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • Applying theme to all sites in a site collection SharePoint Foundation 2010

    I am working in SharePoint Foundation 2010 and want to apply a theme found in my top level site to all the remaining sites in the site collection.  I found the following bit of code on-line and put it in a script:
    function Apply-SPTheme([string]$SiteUrl, [string]$webName, [string]$themeName)
     $site = new-object Microsoft.SharePoint.SPSite($SiteUrl)
     $web = $Site.OpenWeb($webName)
     $theme = [Microsoft.SharePoint.Utilities.ThmxTheme]::Open($site,"_catatlogs/theme/" + $themeName + ".thmx")
     $theme.ApplyTo($web,$false)
     $web.Update()
     $web.Dispose()
     $site.Dispose()
    Apply-SPTheme "https://sitename" "" "themeName"
    I call the function in the last line and the web site where I obtained the code indicated that this would put the theme in all other sites.  When I run the script I get the follwing message:
    You cannot call a method on a null-valued expression. At C:\applyTheme.ps1(the script file):6 char:16
    $theme.ApplyTo <<<< <$web,$false>
    +CategoryInfo: InvalidOperation: (ApplyTo:String) [], RuntimeException
    +FullyQualifiedErrorId:InvokeMethodOnNull
    I'm a novice programmer and particularly novice on Powershell. I'm not sure I understand what the problem is or how to fix it.
    I'd appreciate any help.

    I highly recommend going back to the SharePoint 2010 site and going through all of the fundamentals.  If yo allocate an hour a day you should be caught up in two weeks.  This will save you hundreds of hours of fishing for solutions.
    SharePoint is far too complex to be "guessed" at.  You will never guess at its structure. Going through the basics from the ground up will burn the structure of its design into you head.  You will then be able to find answers quickly because you
    will know the documentation and how to ask the questions.
    If you are only a basic Admin then your company should allow the vendor to either do the configurations or pay for you to be trained or compensate you to use your personal time for training.  It would be a win for them.
    There are many very good books on SharePoint and PowerShell.  They are only good if you already have the basics of both.  One that I acquired recently is quite good at you level of involvement as it is a cookbook of solutions in PowerShell for
    normal configuration and administration items that goes beyond what is available on the web site or in the basic training.
    http://www.wrox.com/WileyCDA/WroxTitle/productCd-0470533331.html
    I actually have the 2013 version but you should stick to the 2010 version until you are up to speed.  I bought 2013 as a catch up.  Read it over two long dinners of
    Sushi and Sake.
    The books run the gamut of SP from planning to admin.  They are not technical manuals and not developer books.  They are written for general administration,  You will read through quickly and then refer back to chapters as needed.  As
    your SP site evolves the book will help you evolve with it.
    Start by becoming extremely familiar with all of the resources on the SharePoint 2010 product site.  Post future requests that are SharePoint related to the SP forums.  They are very good with PowerShell at this time (three versions but they seem
    to have caught up) - They know the product better than most here and are closer to the MS MVPs on SharePoint.  If there is a pure PowerShell issue then the people in this forum can very helpful,
    Here are all of the SharePoint forums:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/home?filter=alltypes&sort=lastpostdesc&brandIgnore=true
    ¯\_(ツ)_/¯

  • How to provide internet access for a site collection in SharePoint Foundation 2010

    Hi all,
    I am working on SharePoint Foundation 2010. I have to make a site collection available on internet.
    Only one site collection is to be brought on internet rest of the site collections should not be accessible from outside.
    How do I achieve this. Any help is greatly appreciated.
    Thanks in advance.

    Hello,
    As per my knowledge, you have to create new Web Application for your site to publishing it to internet. Since internet settings can be done at web application so create new one and then backup your existing site and restore in new web app.
    You can refer below thread for licensing:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/b63b3643-d0c7-45d2-8372-364fda348ed0/sharepoint-foundation-licensing-on-internetfacing-server?forum=sharepointgeneralprevious
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Can Sharepoint 2013 Server Team Site page layout be changed to have the same page layout as Sharepoint's previous version?

    Hello Community
        Using WS2012 and Sharepoint 2013 Server you can add a
    Calendar to a page.
        The problem is that Sharepoint 2013 Server's default "Team Site"
    page is not setup with a box on the far right of the page and 2 boxes in the
    middle (one above the other) where you could insert web parts into
    those boxes.
        So the question is when you use Sharepoint 2013 Server "Team Site"
    page (if not is there any other site page) where you can have a box
    on the far right of the page and 2 boxes in the middle of the page
    (one above the other) so that you can insert web parts into those boxes
    (as the previous version of Sharepoint's default page was setup) and if so
    how?
        Thank you
        Shabeaut

    Hi Shabeaut,
    Based on your description, my understanding is that you want to change the text layout for the home page of the team site as it was in SharePoint 2010.
    If I misunderstood, please feel free to correct me.
    I recommend to edit the home page and then click Text Layout in the ribbon on Format Text tab, then select the text layout you need.
    Best regards,
    Victoria
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • SharePoint Foundation 2010 Workspace problem

    I've installed sharepoint foundation 2010 in a Windows server 2008 R2 standard environment. I've added some site collections and added some libraries to the site pages. Ive put in various permissions and groups and tested no problem using
    Sharepoint workspace 2010 on a Windows 7 32 bit client.
    But when I do a remote desktop connection to another server with 2008 R2 standard installed I can't get Sharepoint workspace 2010 to work properly. It opens an account and connects to my sharepont site but in the pane to the right where I would normally
    see library documents listed all that comes up is an error stating - Error: Cannot Display Tool.
    Also if I try to sync I get the following error:-
    The parameter is incorrect
    HResult: 0x80070057 (0x386d7565)
    Process: Groove.exe (ID:17936(0x00004610))  
    No amount of googling has found a solution, no similar postings had any resolutions.
    Any help would be much appreciated
      

    My apologies. I'd focused on the error and hadn't adequately read the information you provided on the environment. The issue is probably with using SharePoint Workspace on the remote computer, not with SharePoint Foundation.
    Here is what I understand you to be doing:
    You use Remote Desktop to connect to the Windows Server 2008 R2 computer, where you log in with your domain account, which is a member of the local Users group.
    On the remote computer, you start SharePoint Workspace.
    On the Launchbar, you click New, click SharePoint Workspace, select your site, and then click
    OK.
    The workspace is created and appears (from the progress bar) to download content.
    When you click Open Workspace, no content is displayed. Instead, you see the "Cannot Display Tool" error.
    Is that correct?
    There are three areas where SharePoint Workspace is complicated to run remotely:  
    Where SharePoint Workspace will be run by a user other than the one installing it, it must not be lauched during the installation. This seems the most likely to be the issue, as we have seen the same failure and error at a customer site where several
    users had been given a computer image created on a computer where SharePoint Workspace had been launched before image creation.
    Only one user should run SharePoint Workspace (Groove.exe) at a time. (Sometimes multiple instances work, but it's not reliable.)
    You need to have a local profile on the computer which is running SharePoint Workspace. SharePoint Workspace is not supported with Roaming or Temporary profiles. Usually, this problem would prevent you from starting SharePoint Workspace, but some
    environments with custom permissions can lead to other errors.
    SharePoint Workspace uses the current user's permissions for SharePoint server access, In the case of Forms-Based authentication, it prompts for credentials at workspace creation, but then uses the credentials in the active browser session when opening
    the workspace. I think this could only be related to your problem if you are logged in as another user in your browser, and that user has access to some, but not all, of the site your workspace connects to.

  • SharePoint Foundation 2010: search error: "Your search cannot be completed because of a service error."

    Hi,
    I have SharePoint Foundation 2010 running on a single server with databases, with a second server in the farm serving as a 2nd app tier. Both server have the exact same versions of SharePoint loaded (according to the Central Admin site).
    Whenever I try to run a search from any site in my SharePoint Foundation 2010 installation (in this example I typed "this is my query"), it hangs for 20-30 seconds while the IE status bar says:
    Waiting for http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2Ftfs2010db%2Ftfs%2FSITE1
    Then it finally returns a results screen with an error that says: "Your search cannot be completed because of a service error. Try your search again or contact your administrator for more information."
    Checking the SharePoint logs under C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS, the relevant entries say the following (items I deem important
    bolded):
     11/05/2011 18:22:25.88 w3wp.exe (0x35F0) 0x1908 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (HEAD:http://172.22.100.101:80/)) 11/05/2011 18:22:25.88 w3wp.exe (0x35F0) 0x1908 SharePoint Foundation Logging
    Correlation Data xmnv Medium Name=Request (HEAD:http://172.22.100.101:80/) a7ab70a3-61bd-4d62-b5a4-cf77a45dafb9
    11/05/2011 18:22:25.88 w3wp.exe (0x35F0) 0x1908 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (HEAD:http://172.22.100.101:80/)). Execution Time=3.33645756653429 a7ab70a3-61bd-4d62-b5a4-cf77a45dafb9
    11/05/2011 18:22:50.73 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1))
    11/05/2011 18:22:50.73 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1)
    fea6cc87-0404-497a-838e-5e154f422aa4
    11/05/2011 18:22:50.73 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1)).
    Execution Time=4.3055751499143 fea6cc87-0404-497a-838e-5e154f422aa4
    11/05/2011 18:22:50.73 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1))
    11/05/2011 18:22:50.73 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1)
    5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:22:50.75 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/tfs/SITE1 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:22:50.77 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Search Query dn6r High FetchDataFromURL start at(outside if): 1 param: start 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:22:50.79 mssearch.exe (0x58A4) 0x2534 SharePoint Foundation Search QueryComponentSelection aee7 Medium
    Did You Mean Suggester not found. [smart2.hxx:382] d:\office\source\otools\inc\search\common\ytrip\tripoli\smart2.hxx 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:22:50.91 mssearch.exe (0x58A4) 0x2534 SharePoint Foundation Search Query Processor e0pg Medium 1dd958fb-b605-4b3b-a676-28a3cafb2eb6:
    Query completed 125 ms, detailed time: Query stage execution ms times: 0 125 0 0 125 0 0 0 Query stage cpu ms times: 0 31 0 0 31 0 0 0 Query stage hit counts: 1 1 1 7 1 0 1 1 Cursor count: 260 Mapped page count: 164 Total index count: 7 [srequest.cxx:5526]
    d:\office\source\search\native\ytrip\tripoli\cifrmwrk\srequest.cxx 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Search Exceptions 1hjo
    Medium Exception thrown: 0x80040e31 (d:\office\source\otools\inc\search\common\ytrip\tripoli\timeout.hxx:51 ip 0x000007FEECF099B7) 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Search
    Query Processor e2o1 High In CRootQuerySpec::Execute - caught exception: 0x80040e31, translated to: 0x80040e31 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Search Administration 0000
    High Log Query: More Information: Execution stopped because a resource limit was reached. No results were returned.
    5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Web Parts 89a1
    High Error while executing web part: Microsoft.SharePoint.Search.WebControls.Srhdc GenericException: Your search cannot be completed because of a service error. Try your search again or contact your administrator for more information.
    ---> System.ServiceProcess.TimeoutException: System error. at Microsoft.SharePoint.Search.Query.KeywordQueryInternal.Execute() at Microsoft.SharePoint.Search.Query.QueryInternal.Execute(QueryProperties properties) at Microsoft.SharePoint.Search.Query.Query.Execute()
    at Microsoft.SharePoint.Search.WebControls.SearchResultHiddenObject.GetResultData() --- End of inner exception stack trace --- at Microsoft.SharePoint.Search.WebControls.SearchResultHiddenObject.get_ResultsReturned() at Microsoft.SharePoint.Search.Internal.WebControls.CoreRes...
    5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08* w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Web Parts 89a1 High ...ultsWebPart.ModifyXsltArgumentList(ArgumentClassWrapper argList) at Microsoft.SharePoint.WebPartPages.DataFormWebPart.PrepareAndPerformTransform(Boolean
    bDeferExecuteTransform) 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Web Parts 89a2
    High InnerException 1: System.ServiceProcess.TimeoutException: System error. at Microsoft.SharePoint.Search.Query.KeywordQueryInternal.Execute() at Microsoft.SharePoint.Search.Query.QueryInternal.Execute(QueryProperties properties) at Microsoft.SharePoint.Search.Query.Query.Execute()
    at Microsoft.SharePoint.Search.WebControls.SearchResultHiddenObject.GetResultData() 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.08 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (DataBinding DataFormWebPart ()). Execution Time=15302.2074034549 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.09 w3wp.exe (0x35F0) 0x3148 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (POST:http://SERVER2010:80/tfs/SITE1/_layouts/searchresults.aspx?k=this%20is%20my%20query&u=http%3A%2F%2FSERVER2010%2Ftfs%2FSITE1)).
    Execution Time=15358.1002613461 5e283c89-990f-4572-ae77-a1e6a5aad502
    11/05/2011 18:23:06.59 w3wp.exe (0x35F0) 0x58E0 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://SERVER2010:80/tfs/SITE1/Shared%20Documents/SITE1_logo_sharepoint.png))
    11/05/2011 18:23:06.59 w3wp.exe (0x35F0) 0x58E0 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://SERVER2010:80/tfs/SITE1/Shared%20Documents/SITE1_logo_sharepoint.png) f0d03f8e-d78b-4004-9a5f-3ee9955afa60
    11/05/2011 18:23:06.59 w3wp.exe (0x35F0) 0x5C6C SharePoint Foundation General af71 Medium HTTP Request method: GET f0d03f8e-d78b-4004-9a5f-3ee9955afa60
    11/05/2011 18:23:06.59 w3wp.exe (0x35F0) 0x5C6C SharePoint Foundation General af75 Medium Overridden HTTP request method: GET f0d03f8e-d78b-4004-9a5f-3ee9955afa60
    11/05/2011 18:23:06.59 w3wp.exe (0x35F0) 0x5C6C SharePoint Foundation General af74 Medium HTTP request URL: /tfs/SITE1/Shared%20Documents/SITE1_logo_sharepoint.png f0d03f8e-d78b-4004-9a5f-3ee9955afa60
    11/05/2011 18:23:06.60 w3wp.exe (0x35F0) 0x58E0 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://SERVER2010:80/tfs/SITE1/Shared%20Documents/SITE1_logo_sharepoint.png)). Execution Time=9.75459171486879 f0d03f8e-d78b-4004-9a5f-3ee9955afa60
    Not sure what "resource limit is reached" actually means. This SharePoint installation is running under regular SQL 2008 R2, and the
    WSS_Content database is fairly small (10gig). I've reviewed the Search Service, the process account running it, the
    WSS_SEARCH index database, and verified that the Content database is using the proper index database. Everything looks like it should be crawling/indexing/working fine. But the WSS_SEARCH
    database isn't very large, so I'm not sure if the crawling is actually filling it with anything.
    Not sure where to start seriously troubleshooting this. Any advice would be appreciated. Thanks.

    Hi,
    The query ran in tens of seconds. This indicates that at some point a bad plan compiled and stayed in the cache. 
    It may have gotten there because the statistics were out of date. 
    A possible way to keep this from happening is to rebuild statistics with full scan more frequently.
    Try free the proc cache and see the result.
    http://msdn.microsoft.com/en-us/library/ms174283(v=SQL.105).aspx
    Thanks,
    Rock Wang
    Regards, Rock Wang Microsoft Online Community Support

  • Issue with SharePoint foundation 2010 to use Claims Based Auth with Certificate authentication method with ADFS 2.0

    I would love some help with this issue.  I have configured my SharePoint foundation 2010 site to use Claims Based Auth with Certificate authentication method with ADFS 2.0  I have a test account set up with lab.acme.com to use the ACS.
    When I log into my site using Windows Auth, everything is great.  However when I log in and select my ACS token issuer, I get sent, to the logon page of the ADFS, after selected the ADFS method. My browser prompt me which Certificate identity I want
    to use to log in   and after 3-5 second
     and return me the logon page with error message “Authentication failed” 
    I base my setup on the technet article
    http://blogs.technet.com/b/speschka/archive/2010/07/30/configuring-sharepoint-2010-and-adfs-v2-end-to-end.aspx
    I validated than all my certificate are valid and able to retrieve the crl
    I got in eventlog id 300
    The Federation Service failed to issue a token as a result of an error during processing of the WS-Trust request.
    Request type: http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue
    Additional Data
    Exception details:
    Microsoft.IdentityModel.SecurityTokenService.FailedAuthenticationException: MSIS3019: Authentication failed. ---> System.IdentityModel.Tokens.SecurityTokenValidationException:
    ID4070: The X.509 certificate 'CN=Me, OU=People, O=Acme., C=COM' chain building failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. 'A certification chain processed
    correctly, but one of the CA certificates is not trusted by the policy provider.
    at Microsoft.IdentityModel.X509CertificateChain.Build(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509NTAuthChainTrustValidator.Validate(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509SecurityTokenHandler.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Tokens.SecurityTokenElement.GetSubject()
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    --- End of inner exception stack trace ---
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.BeginGetScope(IClaimsPrincipal principal, RequestSecurityToken request, AsyncCallback callback, Object state)
    at Microsoft.IdentityModel.SecurityTokenService.SecurityTokenService.BeginIssue(IClaimsPrincipal principal, RequestSecurityToken request, AsyncCallback callback, Object state)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.DispatchRequestAsyncResult..ctor(DispatchContext dispatchContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.BeginDispatchRequest(DispatchContext dispatchContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.ProcessCoreAsyncResult..ctor(WSTrustServiceContract contract, DispatchContext dispatchContext, MessageVersion messageVersion, WSTrustResponseSerializer responseSerializer, WSTrustSerializationContext
    serializationContext, AsyncCallback asyncCallback, Object asyncState)
    at Microsoft.IdentityModel.Protocols.WSTrust.WSTrustServiceContract.BeginProcessCore(Message requestMessage, WSTrustRequestSerializer requestSerializer, WSTrustResponseSerializer responseSerializer, String requestAction, String responseAction, String
    trustNamespace, AsyncCallback callback, Object state)
    System.IdentityModel.Tokens.SecurityTokenValidationException: ID4070: The X.509 certificate 'CN=Me, OU=People, O=acme., C=com' chain building
    failed. The certificate that was used has a trust chain that cannot be verified. Replace the certificate or change the certificateValidationMode. 'A certification chain processed correctly, but one of the CA certificates is not trusted by the policy provider.
    at Microsoft.IdentityModel.X509CertificateChain.Build(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509NTAuthChainTrustValidator.Validate(X509Certificate2 certificate)
    at Microsoft.IdentityModel.Tokens.X509SecurityTokenHandler.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Tokens.SecurityTokenElement.GetSubject()
    at Microsoft.IdentityServer.Service.SecurityTokenService.MSISSecurityTokenService.GetOnBehalfOfPrincipal(RequestSecurityToken request, IClaimsPrincipal callerPrincipal)
    thx
    Stef71

    This is perfectly correct on my case I was not adding the root properly you must add the CA and the ADFS as well, which is twice you can see below my results.
    on my case was :
    PS C:\Users\administrator.domain> $root = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\
    cer\SP2K10\ad0001.cer")
    PS C:\Users\administrator.domain> New-SPTrustedRootAuthority -Name "domain.ad0001" -Certificate $root
    Certificate                 : [Subject]
                                    CN=domain.AD0001CA, DC=domain, DC=com
                                  [Issuer]
                                    CN=domain.AD0001CA, DC=portal, DC=com
                                  [Serial Number]
                                    blablabla
                                  [Not Before]
                                    22/07/2014 11:32:05
                                  [Not After]
                                    22/07/2024 11:42:00
                                  [Thumbprint]
                                    blablabla
    Name                        : domain.ad0001
    TypeName                    : Microsoft.SharePoint.Administration.SPTrustedRootAuthority
    DisplayName                 : domain.ad0001
    Id                          : blablabla
    Status                      : Online
    Parent                      : SPTrustedRootAuthorityManager
    Version                     : 17164
    Properties                  : {}
    Farm                        : SPFarm Name=SharePoint_Config
    UpgradedPersistedProperties : {}
    PS C:\Users\administrator.domain> $cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("C:\
    cer\SP2K10\ADFS_Signing.cer")
    PS C:\Users\administrator.domain> New-SPTrustedRootAuthority -Name "Token Signing Cert" -Certificate $cert
    Certificate                 : [Subject]
                                    CN=ADFS Signing - adfs.domain
                                  [Issuer]
                                    CN=ADFS Signing - adfs.domain
                                  [Serial Number]
                                    blablabla
                                  [Not Before]
                                    23/07/2014 07:14:03
                                  [Not After]
                                    23/07/2015 07:14:03
                                  [Thumbprint]
                                    blablabla
    Name                        : Token Signing Cert
    TypeName                    : Microsoft.SharePoint.Administration.SPTrustedRootAuthority
    DisplayName                 : Token Signing Cert
    Id                          : blablabla
    Status                      : Online
    Parent                      : SPTrustedRootAuthorityManager
    Version                     : 17184
    Properties                  : {}
    Farm                        : SPFarm Name=SharePoint_Config
    UpgradedPersistedProperties : {}
    PS C:\Users\administrator.PORTAL>

  • SharePoint Foundation 2010 Search returns no results

    Hi,
    SharePoint foundation 2010 Search is not showing any results after configuring the step from the below link.
    http://wiki.sirkit.ca/2011/04/sharepoint-foundation-2010-search-returns-no-results/
    My Server Setup : 
    SharePoint Foundation 2010
    SQL Server 2008 r2
    We have created two web application and configured the search service as above mention link.
    And we have migrated a site from MOSS 2007 to SharePoint 2010 to one of  web application,we assigned search database to the newly migrated content database.
    Previously there was Form based Authentication was done on Moss 2007 site and on SP 2010 we are working on Windows authentication.
    Database showing crawl is working and showing success results as well in SQL table, Its only Not able to show the results on the page.
    Thanks in Advance
    Dinesh
    Regards, Dinesh Reddy.

    Don't look at the databases, it's a bad habit to get into and will lead to confusion.
    In search administration are you getting any sucsess messages in the crawl history and is the number of items in your index non-zero?
    If so that implies that the crawl process is working and it's the user security that's the issue.
    To confirm try searching for a file whilst logged in as the crawl account, that should return results.

  • Sharepoint Foundation 2010 few questions

    Hi, I'm using Sharepoint Foundation 2010, and have some questions:
    1. How do I create different columns on folder level, and different columns inside folder. I.E., on folder level I'd like to have two columns: Client (folders in this column), Country, Date of last entry. Inside folder I'd like to have columns: Date,
    Contact, Form, Actions.
    2. How do I get value of item from subfolder level and use it on folder level. I.E., I'd like on folder level, in the column "Date of last entry", display date of last item added inside folder.
    3. I have List of Clients on one site, and I'd like to use it in "Look up" type of item on different site. How do I do that? By now, I can only use lookup item when list to choose from is on the same site.
    4. Is it possible to employ autocomplete in Sharepoint Foundation 2010? I.E., when I start to write name of a client already defined in the clients list, after few letters, my input is autocompleted.
    Adam.

    1. How do I create different columns on folder level, and different columns inside folder. I.E., on folder level I'd like to have two columns: Client (folders in this column), Country, Date of last entry. Inside folder I'd like to have columns: Date, Contact,
    Form, Actions.
    Inder : It cannot be achieved Out Of box. Plan to create different views for same
    2. How do I get value of item from subfolder level and use it on folder level. I.E., I'd like on folder level, in the column "Date of last entry", display date of last item added inside folder.
    Inder : Use the last modified field or a calculated column 
    3. I have List of Clients on one site, and I'd like to use it in "Look up" type of item on different site. How do I do that? By now, I can only use lookup item when list to choose from is on the same site.
    Inder: Out of Box, not possible in 2010. In 2013 try below:
    http://www.codeproject.com/Articles/619118/Cross-site-Lookup-Column-for-Sh
    http://spform.com/lookup
    4. Is it possible to employ autocomplete in Sharepoint Foundation 2010? I.E., when I start to write name of a client already defined in the clients list, after few letters, my input is autocompleted.
    Inder : It is called search as you type. Use Jquery for same
    https://searchasyoutype2010.codeplex.com/
    http://www.codeplex.com/site/search?query=sharepoint%20search%20as%20you%20type&ac=3
    If this helped you resolve your issue, please mark it Answered

  • When building a vacation leave holiday system using SharePoint Foundation 2010 and SharePoint Designer workflows how can I add half day functionality?

    Hi,
    I have built a vacation leave holiday system for SharePoint Foundation 2010 using SharePoint Designer workflows and Javascript. Everything works perfectly but I'm struggling to design a solution for users to specify half day requests that span over dates
    greater than 1 day, i.e. my half day solution works but only when the start and end date are the same. How would I change the user interface to allow users to choose which day they want the half day to be requested when the vacation leave holiday request is
    from, say,  6th - 10th Jan 2014?
    Thanks.

    Hi ,
    I have a test on my machine with a custom approval workflow and it can work normally .Here are the detailed steps :
    1.      
    Open the site in SharePoint Designer .Create a workflow to associate with the document library .Set the workflow to start when an item is created and when an item is changed
    .Also allow the workflow to start manually .
    2.      
    Choose ‘Collect Data from a user’ .
    3.      
    Click on the data and give a name to the Task created .
    4.      
    Define the custom form field name as ‘Approve ?’ .Set the information type as Choice .
    5.      
    Set the choices as ‘Approve’ and ’Reject’ .Display as Checkboxes .Uncheck the ‘Allow fill-in values’ and ‘Allow blank values’
    .Click finish to save .
    6.      
    Click on users and add the users who will approve the documents .
    7.      
    Keep the output to variable as collect .
    8.      
    Add a new step .Choose ‘If any value equals value ’ .Set the any value ‘Data source’ as  workflow variables and parameters .Set the ‘Field
    from source’ as Variable: collect .
    9.      
    Set the value behind ‘equals ’ as ‘Approve’ .
    10.  
    Add a new action ‘Update list item ’ .Set the item as current item .Add the field Approval status as Approved .
    11.  
    Add an Else-if branch to update the Approval status as Rejected .
    12.  
    Publish the workflow and test in your site .
    Thanks,
    Entan Ming

Maybe you are looking for

  • How do I move an app icon from one page to another?

    I would like to organize my Ipad2 but can figure out how to move the app icon from one page to another.

  • PICTURES DIS-COLOURATION

    HIYA...I HAVE A NOKIA LUMIA 710.....I HAD THE SCREEN REPLACED AND EVERYTHING ELSE WORKS PERFECT APART FROM THE PICTURES THAT WERE ONCE OK ARE NOW VERY PIXELATING AND BULKEY COLOURS...SORRY ABOUT THE DISCRIPTION BUT THATS THE BEST WAY I CAN DESCRIBE I

  • Making an HDR document Aperture-Photoshop workflow experiment, any takers?

    Howdy, Fellow Photographers I tried this recently but failed and I'm trying to figure it out. So, is anyone interested in a 32-bit HDR test using Aperture and Photoshop CS2? I think this feature is revolutionary in Photoshop CS2 and hope Aperture wil

  • Any shortcuts to accessing ProRes 4:2:2 ...?

    hi folks, I have an older version of FCP (5.1.4) and the current version of FCE, neither of which seems to support Apple ProRes 422. My workflow these days requires use of PR422 as final output for edited video. I'm not interested in FCP X, I can't a

  • Can't enter/change info for songs...

    I can change the info for some of my songs but not for most of them. Why is this?