Sharepoint 2013 - Site Settings shows $Resources:ReportServerResources,ReportServerSiteSettingsGroupTitle;

I didn't notice this before, but I have 2 site collections, one shows this when I go to Site Settings:
$Resources:ReportServerResources,ReportServerSiteSettingsGroupTitle;
$Resources:ReportServerResources,ScheduleList;
$Resources:ReportServerResources,SiteLevelSettings;
$Resources:ReportServerResources,ManageSiteDataAlerts;
and the other one doesn't. 
Thise are hyperlinked and when I click on the links I get an error "Something Went Wrong".
The one that is showing this in Site Settings also has the Features Activated:
$Resources:ReportServerResources,FeatureTitle;
$Resources:ReportServerResources,FeatureDescription;
and
$Resources:ReportServerResources,RSAdHocReportDesignerFeatureTitle;
$Resources:ReportServerResources,RSAdHocReportDesignerDescription;
I've seen another person ask this question, but doesn't explain why the Site Collection Feature also looks like that, it doesn't look like it should be that way. 
The Reporting Service was setup previously and it really hasn't been utilized yet. I don't remember seeing it before. Could something have gotten corrupted?
Thanks
Kim
Kim.Williams

Hi Kim,
If the issue site, is there custom site feature or the issue site is created based on custom site template? If so, then try disabling the custom site feature and test the issue again.
If it doesn't solve the case, then the issue might be related to Reporting Services. I'd suggest you find error message related to it. Or if RS is not utilized yet, you could uninstall it. Then re-install it if necessary.
For more related information:
http://msdn.microsoft.com/en-IN/library/hh479745.aspx
http://msdn.microsoft.com/en-us/library/jj219068.aspx
Similar issue:
https://social.technet.microsoft.com/Forums/sharepoint/en-US/deb11087-13ae-4380-8363-642647be48ed/how-to-get-rid-of-resourcesreportserverresourcesreportserversitesettingsgrouptitle?forum=sharepointadmin
https://social.msdn.microsoft.com/forums/sqlserver/en-US/eeaafd73-a8ba-4254-a665-46c23cc1edfa/reporting-services-in-three-tier-sharepoint-2013-environment
Regards,
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected] .
Rebecca Tu
TechNet Community Support

Similar Messages

  • SharePoint 2013 Site Collection shows logged on as different credential

    Hi
    I am getting report from from users who said when they access various Site Collections (not all the sites) and the logon credential at the top right hand conner show someone else credential.
    such like a user login the network as domain\John Doe and access a SharePoint site collection and the credential at the top right hand corner of the site page showed Mary West ... 
    My understand is this credential at top right hand corner come from the UIF (User Information list) and indeed I looked into the UIF and found that Mary West user entry exist in the list and when I clicked on Mary West link it opened John Doe
    profile page.
    This happen only when they access SharePoint sites. How can a user ID cross with another user ID? I have never seen anything like this or couldn't find any information relate to this behavior
    Anyone have seen this or have any advise or suggestion where i can begin to troubleshoot, please advice
    Thanks so much in advance for any information
    Swanl

    Hi,
    Has the user domain\John has recently updated some of his information (such as the user's display name) in Active Directory Domain Services. The information was updated correctly in the user Profile Service Application. However, on the specific
    Microsoft SharePoint Site Collection, that information was not updated in the information list.
    To solve the issue, access All People group , you can modify the following URL in the browser:
    < Site URL>/_layouts/people.aspx?MembershipGroupId=0
    Remove the user from this group, this also removes the user from the userInfo table in the Microsoft SQL Server database. When you re-add the user, the user's information is updated in this table.
    For more information, refer to the following link:
    https://support.microsoft.com/en-us/kb/2568838?wa=wsignin1.0
    Best Regards,
    Lisa Chen
    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 2013 - Site Settings - Users and permissions - "Access Request and invitations" link missing

    I am site collection administrator and have configured the outgoing email in Central administration but "Access Request and invitations" link  is missing, pl advice any additional configurations for this link to show up
    I was though able to configure access requests by going to Site Settings->Users and permission and on the ribbon selected "Access Request Settings"
    What is the difference in either of the approaches?
    Thanks
    Abhishek

    Hi there,
    I noticed this post, and didnt really find an appropriate solution to your issue. I noticed the same issue when dealing with Access Requests. First of all to make sure that the Request feature is enabled, you need to access 
    Site Settings -> Site Permissions -> Access Request Settings -> Make sure the
    'Allow access requests' option is enabled.
    The Allow access screen just allows you to enable the feature and also to specify a email address that notifications are sent to. Whereas the 'Access Requests and Invitations' section provides a screen to manage Access Requests and request history.
    I noticed then that the Access Requests and Invitations link under 'User and Permissions' didnt actually appear until someone actually requests to join the site. It seems that this is needed to display the screen. Once actioned once, the option stays there.
    Hope it helps

  • MySite NewsFeed is not showing the feeds from a SharePoint 2013 site which followed programmatically

    Hi Experts,
    I am facing an issue with following SharePoint 2013 site programmatically. When i was followed a site programmatically, unable to see the posts from followed site in MySite NewsFeed. But i can able to see the followed site in the list of sites i am following.
    If i did the same manually by clicking on Follow link on right top of the site, i can able to see the posts from the followed site in MySite NewsFeed.
    Here is my code. I am doing this activity in an event receiver, while adding an user to the site. 
                                SPSocialFollowingManager manager = new SPSocialFollowingManager(profile);
                                SPSocialActorInfo actorInfo = new SPSocialActorInfo();
                                actorInfo.ContentUri = new Uri(properties.Web.Url);
                                actorInfo.AccountName = targetUser.LoginName;
                                actorInfo.ActorType = SPSocialActorType.Site;
                                manager.Follow(actorInfo);
    Any help would be appreciated. Thanks in advance!
    dinesh

    Hi,
    According to your description, my understanding is that you want to follow site programmatically in SharePoint 2013.
    I suggest you debug the code step by step to check whether the variable is valid.
    You can also create a simple console application to test whether it works.
    Here is a code snippet for your reference:
    SPServiceContext serverContext = SPServiceContext.GetContext(web.Site);
    UserProfileManager profileManager = new UserProfileManager(serverContext);
    string userString = user.LoginName.ToString();
    UserProfile userProfile = profileManager.GetUserProfile(userString);
    if (userProfile != null)
    SPSocialFollowingManager manager = new
    SPSocialFollowingManager(userProfile);
    SPSocialActorInfo actorInfo = new SPSocialActorInfo();
    actorInfo.ContentUri = new Uri(web.Url);
    actorInfo.AccountName = user.LoginName;
    actorInfo.ActorType = SPSocialActorType.Site;
    manager.Follow(actorInfo);
    More detailed information about follow site programmatically:
    http://stackoverflow.com/questions/23271133/how-do-i-follow-site-in-sharepoint-2013-with-ssom
    http://msdn.microsoft.com/en-us/library/office/jj163217(v=office.15).aspx
    Best regards,
    ZhengyuGuo
    Zhengyu Guo
    TechNet Community Support

  • SharePoint 2013 site coll's created. Home page not displaying for any site collection in farm

    SharePoint 2013 site coll's created. Home page not displaying. Same issue for all site coll's in the farm. Done the basic checks. Any Ideas?

    Hi lakshita,
    Would you please check whether you can go to the page:
    http://siteurl/_layouts/settings.aspx page:
    http://siteurl/default.aspx page? If so, go to Site Features in site settings page, reactivate the Wiki Page home page feature, check the result.
    If not, please check whether there is related information in ULS log and event viewer log file? Does the page shows page not found or other errors? Check whether the site can be opened in other machine?
    Thanks,
    Qiao Wei
    TechNet Community Support

  • SharePoint 2013 site in 2010 mode - Web Analytics functionality?

    We recently upgraded to SharePoint 2013 from SharePoint 2010.  Our main portal site is running in 2010 mode.  Are "Site Web Analytics reports" supported for 2013 sites running in 2010 mode?  After our upgrade, it appears that no
    new data is showing in these Web Analytics reports, although we can see historic data from before the upgrade.
    I know about the changes in these analytics reports in 2013. Note that I can see the new popularity trends and usage reports in 2013 sites located in the same site collection, but they are NOT running in 2010 mode.  My question is only about
    2013 sites in 2010 mode and the ability to run web analytics reports of any kind to assess page popularity, document popularity, etc.
    Any information would be helpful.  Thank you!

    Hi,
    According to your description, my understanding is that you want to know if the Site Web Analytics reports is supported in SharePoint 2013 sites running in SharePoint 2010 mode.
    The Site Web Analytics reports is supported by Web Analytics Service Application in SharePoint 2010, but Web Analytics is no longer service application in SharePoint 2013 and analyses and reporting process incorporated to search service application. So if
    we view the Site Web Analytics reports in SharePoint 2013 sites running in SharePoint 2010 mode, we will not be able to get the results.
    http://www.toddklindt.com/blog/Lists/Posts/Post.aspx?ID=250
    I recommend to update the sites running in 2010 mode to SharePoint 2013, then you can get the web analytics reports from Popularity Trends and Most Popular Items.
    http://technet.microsoft.com/en-us/library/jj715890.aspx
    Thanks,
    Victoria
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Victoria Xia
    TechNet Community Support

  • How to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser

    how to disable the selection of "Title and logo URL of a SharePoint 2013 site" from browser or How can we able to set our custom default log to the sp2013 site using code.So that users are not allowed to change from browser again.
    Thanks &amp; Regards, Krishna

    Hi  Krishna,
    For your issue, you need to deploy a farm solution using HideCustomAction to hide site settings link. For example to hide “Title, description, and logo” link you can use below code:
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
    <HideCustomAction
    GroupId="Customization"
    HideActionId = "ProjectSettings"
    Location = "Microsoft.SharePoint.SiteSettings">
    </HideCustomAction>
    </Elements>
    Reference:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/92f002b7-0e9c-424e-836a-de40c4e5d81f/hide-option-from-site-settings-page-in-sharepoint-2010?forum=sharepointdevelopmentprevious
    http://blog.milanchauhan.com/2013/06/add-custom-section-in-site-settings.html
    Best Regards,
    Eric
    Eric Tao
    TechNet Community Support

  • Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    Can i use Report viewer web part in SharePoint 2013 app to show SSRS reports?

    SharePoint app you mean a simple sharePoint 2013 application like site, team site etc, or do you mean an App (the new feature like webPart).
    To add a SSRS Report viewver web part follow these steps
    1. Edit the page
    2. Choose insert a webpart
    3.Select SQL server Reporting -> SQL Server Reporting Services Report Viewer webpart
    4. Configure the webpart to show your .rdl files.
    (See the img below. Plz mark as answered if it helps).

  • SSRS subscriptions in default zone of sharepoint 2013 are not showing in intranet zone and vice versa.

    one of the Sharepoint 2013 site collection has alternate access mappings created. Default site is .com and intranet is .local.
    So when we add SSRS subscription in .com - they are not showing in .local and vice- versa. How do we fix this so the subscriptions are same in both .com and .local.

    Hi spanda,
    Per my understanding that you have configured the alternate access mappings which Default site is .com and intranet is .local. But the subscription in one of the site will not list in another mapped site, right?
    Actually, if you are on a different Alternate Access Mapping other than the Subscription was created on, we will get no subscriptions, Because we are using the method "Microsoft.ReportServices.SharePoint.UI.ManageSubscriptionPages"
    to deal with the logic by creating the value for "m_reportUrl" using the current context of the URL the user is using and passing that to the "SubscriptionListControl".  You can find the code in this article if you have some
    knowledge of development:
    SQL Server Reporting Services ignores Alternate Access Mappings When Checking for Report Subscriptions
    I recommand you to submit an feedback at
    https://connect.microsoft.com/SQLServer/
    If the suggestion mentioned by customers for many times, the product team may consider to add the feature in the next SQL Server version. Your feedback is valuable for us to improve our products and increase the level of service
    provided.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • Sharepoint 2013 site webdav path on office

    Dear All
    I had a problem when open a document word or excel on sharepoint 2013 site,
    when open it and choice save as it will show the path on PC default location not a sharepoint site web path.
    How can I fix it.
    Regards
    PK

    Hi PK,
    According to your description, my understanding is that when you opened a SharePoint document, and chose Save as, it didn't open the SharePoint path.
    Why not use "Save" button to save the document to SharePoint site? I suggest you click "Save" instead of "Save as".
    If this issue still exists, please uncheck “Enable Protected View for files located in potentially unsafe location” in the Trust Center of Office.
    There are two posts, please check if they are useful for you:
    http://blogs.interfacett.com/word-2010-not-saving-back-to-sharepoint-2010-by-default
    http://isharepoint.wordpress.com/2011/05/26/can-not-save-document-back-into-document-library/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Upload 100 GB data into sharepoint 2013 site

    Hi Team,
    I want to upload 100GB data into sharepoint 2013 site for performance testing.
    I have the 5 document libraries.
    I want to upload the 10GB data to each document library in the site using powershell.
    Is it possible or not? Can you explain the detailed steps

    This should not be a problem, but you can't do it in 1 go as the default upload size per document = 50 MB (see
    https://msdn.microsoft.com/en-us/library/ff487972.aspx). I've created a tool that uploads documents in chunks, maybe you can use that (read the article as you'll need to increase some settings):
    https://gallery.technet.microsoft.com/office/The-Migration-Dragon-for-628acae0 Maybe that's an option for you too.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Will Office Web Apps Server 2013 work with SharePoint 2013 sites hosted in SP2010 compatibility mode?

    We are planning a upgrade of a SP2010 farm to 2013. There has been a bit of customization so we wish to run the old sites on the new SP2013 platform in SP2010 compatibility mode.
    So my question is will Office Web Apps Server 2013 work with the old sites hosted in compatibility mode?
    I found a similar query from March 2014 found here 
    http://sharepoint.stackexchange.com/questions/93101/office-web-apps-2010-running-on-sharepoint-2013-for-compatibility-mode-sites/116281#116281 
    Has there been an update released to resolve this
    Cheers D

    Hi  ,
    According to your description, my understanding is that you need to know whether Office Web Apps 2013 is working with SharePoint 2013 sites which is in SharePoint 2010 compatibility mode.
    For my test, Office Web Apps 2013 with SharePoint 2013 sites which is in SharePoint 2010 compatibility mode is working fine.
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Eric Tao
    TechNet Community Support

  • Adding a Left Navigation in the place of Current navigation in SharePoint 2013 Site.

    Hi All,
    I have successfully converted an HTML Page to a SharePoint 2013 Master Page. I also created a Custom Page Layout. Using both them I have created my SharePoint Site with 30+ pages. Each page is consisted with the Top Header Navigation as it is inheriting
    from the Master Page I have used. Now I need the left navigation inherit from the master page also. It gives me the advantage of updating it from the master page and affects it through the entire SharePoint Site. 
    But at the moment I am inserting the Left Nav using a web part as an HTMl code snippet individually for each and every page. If needs a modification I have to go through all the pages and do the modification. This is not convenient also. I want to this left
    nav like the SharePoint Current Navigation alternative but within my Page Layout.
    Is there an option to chat within these forums?
    Could someone help me to solve this problem?
    Thanks and regards,
    Chiranthaka

    Hi Chiranthaka,
    Thank you for posting in MSDN forum.
    Since
    this forum is to discuss: Visual
    Studio WPF/SL Designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System, and Visual Studio Editor.
    Based on your issue,
    it is more related to the sharepoint, so I’m afraid that
    it is not the correct forum for this issue.
    In addition, I find that you have been posted this issue in this SharePoint forum:
    https://social.msdn.microsoft.com/Forums/en-US/7e3af32b-2bf8-41f5-9420-9265ed64458c/adding-a-left-navigation-in-the-place-of-current-navigation-in-sharepoint-2013-site?forum=sharepointgeneral ,
    so we will merge this case to the above case, I think that the SharePoint expert will follow up your issue.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot sync Microsoft Sharepoint workspace 2010 with Sharepoint 2013 site

    I keep getting the below error message when I try to sync a doc lib from a sharepoint 2013 site with sharepoint workspace 2010.
    The field "AppAuthor" contains a lookup list "AppPrincipals" that cannot be resolved. The target list may not be part of the site
    I have uninstalled Lync 2013, uninstalled and re-installed office 2010, 2687364 hotfix yet the issue still persists.
    Any help will be greatly appreciated
    Kind Regards
    Louis
    thanks

    Hi,
    Is this issue only occur in one client machine? Can other machines installed SharePoint Workspace 2010 works when perform syncing?
    As you have reinstalled the 2687364 hotfix and the issue still exists, I suggest you install Office 2010 SP2 to see if it can work:
    32-bit
    http://www.microsoft.com/en-us/download/details.aspx?id=39667
    64-bit
    http://www.microsoft.com/en-us/download/details.aspx?id=39647
    Feel free to reply with the test result if the issue still exists.
    Best regards
    Patrick Liang
    TechNet Community Support

  • SharePoint 2013 Site Mailboxes behind UAG

    Hello,
    I tried to connect to my SharePoint 2013 site mailbox through UAG. From internal access, it works fine.
    From external access, I was connected to the SharePoint Site. I clicked on the Mailbox link I have a OWA form based authentication. After wrote my credential, I had an error page "404 - File or Directory not found". I clicked on back button an
    reauthenticate myself, I received a message "Logon error. Access to the page was made from an unauthorized URL.
    If you were confronted to a same error, how did you corrected this one ?
    Thank you.
    Philippe
    philgood031

    Hi Luo,
    Thank you for your answer. Below replies to yours :
    1. Yes we have activated the form based authentication on UAG. We used based authentication on Outlook Web Access. Connections to Webmail works fine.
    2. We used external URL for Webmail, but for Office Web Apps reasons we have added another internal DNS zone with the same domain name than external domain. We have added Hosts Record.
    3. On local network, we can have access to Site Mailbox in Outlook, I have never tested this from external network. I have added "send as" rights for the user on the shared mailbox and the full rights on the shared mailbox.
    Summary :
    Our client have installed SharePoint 2013, Office Web Apps 2013 and Exchange 2013 SP1. He wants to have an external access to Office documents and also to Site Mailboxes on SharePoint. Office Web Apps works fine inside and outside. Site Mailboxes works fine
    Inside but not outside. They used a domain name like "internal.cotonso.com" and the external domain name is "contoso.com". They called us to resolved this problem. The only Warning informations we received from the Event Viewer with
    sixteen different event id with number 67
    The description for Event ID 67 from source Microsoft Forefront UAG cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the
    local computer.
    If the event originated on another computer, the display information had to be saved with the event.
    The following information was included with the event:
    2xx.yyy.zzz.156
    charel
    webmail2013
    1
    OWA2013
    ExchangePub2013
    /owa/[email protected]/plt1.ashx?cId=3292ea71-4116-4f59-8957-7e3444de3883&msg=SessionDataError&tg=&MDB=abe00dfc-d231-4a90-aede-4a9b67b68c2e&sdCoId=3292ea71-4116-4f59-8957-7e3444de3883_1397656540883&fe=null&be=null&cbe=null&cver=15.0.847.32&rand=1397656541490&rpo=0&off=0&pal=0&rfe=0&PLT=uES,4,uEE,4,fS,0,dLS,0,dLE,0,cS,0,cE,0,reqS,2,resS,2,resE,5,domL,12,pE,631,now,632&lbv=15.0.847.32&icv=15.0.847.32&iacr=15.0.847.32&lcver=15.0.847.32
    Default rule
    POST
    Thank you.
    Philippe.
    philgood031

Maybe you are looking for

  • My itunes is not syncing my films to my phone?

    hi i have converted my films from avi to meg4 and they are showing in my itunes but not syncing to my iphone, does anyone know why? it may be a setting or something because i can get video podcasts, im on windows xp if that helps, thanks

  • HT1577 hey can we download songs from other websites on mac n thn load it onto iphone?

    hii, i had songs loaded onto my pendrive which were downloaded from various websites & some were even sent through bluetooth..... i bought an Iphone 4S, then loaded all those songs to it, gradually all songs were deleted by itself. This is my first q

  • Bonjour, without WLC, pointers?

    If I can ask for some pointers or ideas on this: Currently have a mix of 3502e and 3602e APs.  They are configured in auton. mode, so no WLC.  The same config across them has a native vlan of 1, vlans 10, 20, and 60.  These all are running off a stac

  • I want to make a complaint but how? Cant find an address to write to?

    I'm extremly annoyed: purchased a 13" mac book pro on 13/11/13 for my teenage sons birthday and christmas present, on 29/11/13 he couldnt start the mac book up. We took it to our nearest apple store & saw an apple genius, we left it with them for 2 h

  • How can i display more than 5 documents

    in the "Recents" section?  With the new update for IOS7 it's now only showing the last 5 docs opened.