Re: [dspace-tech] Administrator Reports (Beta feature) is not turning on in Dspace Version 8

2025-03-28 Thread Michael Koch
If you are on the 8.1 version (Tag in GitHub), there is one thing you have to do in the frontend code: Either update src/app/menu-resolver.service.ts to the newest version in GitHub or add this.createReportMenuSections(); in the function createAdminMenu$() in the same file. That did it for me

[dspace-tech] Issue with HTTP Status Codes in DSpace Responses

2025-03-28 Thread Joan Caparros
Hi everyone, I’ve noticed an issue with the HTTP status codes returned by DSpace. It seems that pages which should return a 500, 404, or 403 status code are instead returning a 200 OK. This is particularly concerning because it negatively impacts SEO and could lead to incorrect indexing by se

Re: [dspace-tech] Administrator Reports (Beta feature) is not turning on in Dspace Version 8

2025-03-28 Thread Kalyan kumar
Thanks @michael Koch. Will try. Kalyan Greenbooks On Fri, Mar 28, 2025 at 1:55 PM Michael Koch wrote: > If you are on the 8.1 version (Tag in GitHub), there is one thing you have > to do in the frontend code: > Either update src/app/menu-resolver.service.ts to the newest version in > GitHub or

Re: [dspace-tech] Administrator Reports (Beta feature) is not turning on in Dspace Version 8

2025-03-28 Thread Mehmet Demirel
Solved: I updated src/app/menu-resolver.service.ts in v8.x this.createReportMenuSections(); https://github.com/DSpace/dspace-angular/blob/dspace-8_x/src/app/menu-resolver.service.ts On Friday, 28 March 2025 at 11:25:28 UTC+3 Michael Koch wrote: > If you are on the 8.1 version (Tag in GitHub), the