Jack
There is a reason these pages are not accessible anymore: it was putting unnecessary strain on the servers.
It has to sort through every account in the whole game and it just isn't technically feasible as it is currently implemented, sorry. The more the game grows the more unusable the back-end of the HoF becomes to render.
As a Computer Science major, I understand how sorting through 1.3 million managers requires a lot of resources. To be specific, if the input size (1.3 million in this case), the time it takes to sort these is proportional to "n * log(n)" (assuming that you use some kind of comparison sort, like mergesort).
I propose an idea: What if the game calculates all the positions once every 1 hour (or at some other regular interval), and then caches it, so that every request in the subsequent hour can simply access the cached copy?