“Cannot retrieve the URL specified in the Link property. For more assistance, contact your site administrator” error ?
Well there are couple of reasons for it not working , Am going to go over once possibility at a time .
- It could be the access issue for accessing the resource url specified. -TRY anonymous access for the url that you try to key in .
- Did you check the web application pool account in IIS? It seems that you also need to add application pool account in below groups:
ISS_WPG and WSS_WPG
- Finally here is my trump card.
$farm = Get–SPFarm
$farm.Properties.DisableIntranetCalls = $false
$farm.Properties.DisableIntranetCallsFromApps = $false
$farm.Update()