I'm troubleshooting a site failure that happened after someone attempted to rename the site collection using the commands:
$oldurl="https://example.com"
$newurl="https://newname.com"
$site=Get-SPSite $oldurl
$site.Rename($newurl)
The site only works on the static pages and Performance Point and Reporting Services (Access is denied) do not work anymore.
When I try to create a new subsite I get the error: "Pages" cannot be used as a site name. Site names cannot contain certain reserved words and cannot begin with an underscore. Please enter a different name.
Any thoughts on what is going on and how to fix?