I am using a list on SharePoint 2010 to feed data into Excel via OData. It worked fine under the old list name of "FM Utilities" as https://portal2010.xxxxxx.com/sites/fmvendors/_vti_bin/listdata.svc/FMUtilities (etc).
I changed the list name to "3 FM Utilities", and now the href in listdata.svc is "c_3FMUtilities". I am fine with that, but when I try to go to https://portal2010.xxxxxx.com/sites/fmvendors/_vti_bin/listdata.svc/c_3FMUtilities, I get an error message that Internet Explorer cannot display this feed, and the error below states "The following tags were not closed: feed."
I've tried to edit the feed name in both the browser and SharePoint Designer, but I still have the same problem. I have looked for a solution, but I can't find one. Any ideas?
Thank you!
Alex
Related
Using Diagrams.net (draw.io), I would like to link specific elements to web pages. This is easily accomplished currently by creating a link for the element (say a rectangle).
However, I would like to navigate directly to a specific id bookmark in the HTML page. I cannot seem to get that to work.
For example, if I try to use this syntax (which works in the browser location bar):
https://en.wikipedia.org/wiki/Canada#Geography
I will be taken to the main page:
https://en.wikipedia.org/wiki/Canada
However, the goal is to go to the "Geography" section of this page.
I have also tried the json syntax without any success:
data:action/json,{"actions":[{"open":"https://en.wikipedia.org/wiki/Canada#Geography"}]}
I have also played with different action syntax such as:
data:action/json,{"actions":[{"open":"https://en.wikipedia.org/wiki/Canada"},{"scroll":{"tags":["Geography"]}}]}
Note: I'm using the diagrams.net desktop version 14.1.8.
Thank you for taking the time to read this question.
Paul
On Windows this only seems to work if the browser isn't already open. There is not much we can do to fix this as we're passing the link to the OS.
We have restore site from dev machine to staging. We have list in our site with people picker which is working fine on dev, but on staging it is showing message "Sorry, we're having trouble reaching the server.".
I have try to create one more people picker column in list(Stag), but new column also giving same error.
If i create new list on new column to other list(stag), it is working fine.
Can any one please help me in that.
We are facing this issue due to SP.js file is available on NewForm.aspx page with other js files.
There is some discrepancy while loading the page and error occurs. It is working for us when we removed the reference of SP.js file.
This worked for me
https://social.technet.microsoft.com/wiki/contents/articles/36583.sharepoint-2013-people-picker-error-sorry-were-having-trouble-reaching-the-server.aspx
$webApp = Get-SPWebApplication https://<web adderss>
$newdomain = new-object Microsoft.SharePoint.Administration.SPPeoplePickerSearchActiveDirectoryDomain
$newdomain.DomainName ='<Domain Name like domain.com>';
$newdomain.ShortDomainName ='<net bios name (optional)>';
$newdomain.LoginName ='domain\Farm Account'
$newdomain.IsForest='false'
$webapp.PeoplePickerSettings.SearchActiveDirectoryDomains.Add($newdomain)
$webapp.update()
To verify
$webapp.PeoplePickerSettings.SearchActiveDirectoryDomains
I'm trying to get FQL working in an out-of-the-box Enterprise Search Site Collection in on-premise SharePoint 2013, with no success.
Intended query behavior is to:
- Accept and query search terms
- Limit results to the current subdomain (https://teams.domain.com/...)
- Exclude People from results
Our functioning KQL Query Transform is
{?{searchTerms} {?path:{QueryString.p}} -ContentClass=urn:content-class:SPSPeople}
As instructed in MSDN I copied current Result Source (in Site Collection Administration) and modified the Query Transform to:
andnot((and({?{searchTerms}},{?path:{QueryString.p}})),(filter(contentclass:"urn:content-class:SPSPeople*")))
I tried other variations as well but none work.
Even more puzzling to me when I go from "Basics" tab to "Test" tab and click "Show more", the Query text box is ALWAYS appended with
-ContentClass=urn:content-class:SPSPeople
Since it's not FQL formatted I figure that's why my template won't work. I've been at this all day now... Any suggestions what to do next? How do I get rid of that KQL suffix?
Figured it out... I trusted the FQL Query Tranformation was correct and bypassed the "Launch Query Builder" button altogether, inputting the FQL into Query Transform text box.
I just upgraded a client's test installation of Sitecore to 7.2 (SP1) and now, any image that has an underscore in its name is throwing a 404 error when being referenced by a page. This was actually a series of upgrades from 6.4 so it's quite possible that a config setting somewhere got missed along the way, but I don't see anything standing out at me that would cause this problem.
If I change the image name to not have an underscore, it works fine, and it also works fine if I set "Media.UseItemPaths" to false, but they would prefer it if their image URL's had the file name displayed.
Can anyone help identify what may have gone wrong?
Due to a change in Sitecore 7.1, any replacements specified in encodeNameReplacements are now also applied to media items as well as regular items in the content tree.
One option is to remove the replaceWith="_" declaration, but the likely reason this was added was to possibly replace spaces in your URLs so they do not display with %20. Removing this declaration will mean they return!
You can instead apply the fix specified in this Sitecore Knowledgebase article: Sitecore is unable to open media items when using encodeNameReplacements
Until recently, everything worked, then the website has had the great idea to up the font and therefore part of my program doesn't work now. But let's get to the gist of the problem, I use a code to download the values of a table football scores that are constantly updated.
The code works fine, the only bug currently is in the way the value is captured by my regex.
Especially if the team has a table name like: "Manchester" then the values are downloaded properly, and if it is abbreviated from the site as: "Manchester Uni ...." then the bug appears.
I capture the team name using this code:
.Name = Remove_Tags(Regex.Match(Content, "<td class=""text team large-link"">(.+?)</td>").Groups(1).ToString)
Site link example: itDOTsoccerwayDOTcom
Image Example: http://www.mediafire.com/convkey/d022/ho877h9ahbo6bffzg.jpg
Complete class project: http://pastebin.com/kGxCXyWQ
to be precise, my code works on the table "Classifica" because the name "Manchester United" is full, while on other tables as "Tabelle larghe" values are not captured as the team's name is abbreviated from the site. I ask for help to you to fix this bug, my clients complain to me and I have to find an efficient solution as soon as possible. Sorry if I haven't insert the image here but I doesn't have the necessary reputation.