Hi, I'm new to Silverstripe.
I was wondering if it was possible to find all mentions of a URL within a website. Or is it just a matter of using the site search or manually going through each page?
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Depending on the complexity of the site, you might be able to find most of the mentions of the URL in the SiteTree table in the database. The Content column contains the page content, so if the site is pretty basic where the content of each page is just stored there, a simple query on this might do the trick...
SELECT * FROM SiteTree WHERE Content LIKE '%theurl.com%';