Greetings,
The default site-reports are not listing under the reports tab in the cms. According to the documentation, there should be three default reports. "Empty Pages", "Pages edited within the last two weeks" and "To Do". None of those list down the left hand column. There is however a report for "Broken Links." This is actually useful, but I also need the To Do report.
Thanks.
Xochi
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.
Hi.
Which SS-version are you using?
Maybe you are just looking in the wrong location, so here is a screenshot (v.2.4.2) for you.
Cheers,
Christian
Yes you are absolutely right. I am using 2.4.2. Here is a screenshot of what I was looking at. And in the Pages tab, I see them where you pointed out. I am not sure why there are two places and with different reports? Thank you.
Xochi
The reports are located in cms/code/SideReport.php:
SideReport_ToDo
SideReport_BrokenLinks
SideReport_BrokenFiles
SideReport_BrokenVirtualPages
SideReport_BrokenRedirectorPages
SideReport_EmptyPages
They can be added to ReportAdmin by registering them in the _config.php:
SS_Report::register('ReportAdmin', 'SideReport_ToDo',-20);