Re: [dspace-tech] Cannot Delete Group Members/Subgroups from Groups in dspace v6.3

2020-06-19 Thread Braxton Van Gundy
Hi Mark, thanks for the reply! I think this is pointing us in the right direction. Now it's just a matter of getting my changes to GroupServiceImpl.java to actually take so I can figure out which path is the culprit. On Friday, June 19, 2020 at 10:48:29 AM UTC-4, Mark H. Wood wrote: > > The

AW: [dspace-tech] Broken Links After Server Upgrade to Windows Server 2019

2020-06-19 Thread Plate, Michael
Hi, something is different...check the CSS / structure of the new page - if you remove the "footer"-DIV it works, its like an overlay. CU Michael Von: dspace-tech@googlegroups.com im Auftrag von Paul Asay Gesendet: Freitag, 19. Juni 2020 20:08 An:

[dspace-tech] Broken Links After Server Upgrade to Windows Server 2019

2020-06-19 Thread Paul Asay
For some reason when we upgraded the server running dspace 5.4 from Windows Server 2012 to Windows Server 2019 most of the links on Dspace no longer work. Here is the website for Server 2012: http://scholars.indstate.edu/ Same site running Server 2019: http://139.102.65.11/ As you can see

Re: [dspace-tech] Cannot Delete Group Members/Subgroups from Groups in dspace v6.3

2020-06-19 Thread Sean Kalynuk
Here is a SQL query I've used for examining the group hierarchy. It is fixed to 5 levels since we don't have much nesting in our system. select epg1.eperson_group_id as GID1, epg1.name as Name1, epg2.eperson_group_id as GID2, epg2.name as Name2, epg3.eperson_group_id as GID3, epg3.name as Name3,

Re: [dspace-tech] Cannot Delete Group Members/Subgroups from Groups in dspace v6.3

2020-06-19 Thread Mark H. Wood
The seemingly endless recursion (which caused the stack overflow) makes me think that there may be a circular group membership somewhere. Group A contains group B contains group A would be a simple example. The only way I've thought of to look for such a problem is to inspect the group2group