Manage Members in Admin

Boardhopper

Member
When ever you have a large amount of members, the screen takes a long time to load. Even though you are displaying 10 or so at a time, the screen loads all the members. Anyway to reduce this for large topsites?
 
sure, I'll look into some options for this today and see what I come up with
 
Can you dome a favor? if possible, try disabling javascript in your browser and then opening the manage members page and see if the page renders significantly faster.
 
alright open skins/admin/wrapper.html and find:

HTML:
            $('#man').dataTable( {
                "sPaginationType": "full_numbers"
            } );

replace with

HTML:
            $('#man').dataTable( {
                "sPaginationType": "full_numbers",
        "bLengthChange": false,
        "bFilter": true,
        "bSort": false,
        "bInfo": false
            } );

lets see if that makes enough of a difference, if not I'll work in a server side AJAX solution..
 
alright I'll work on the server side solution, might post an alternative file without any JS in the mean time.

How many members on your list? I have tested up to 600 members and its still zippy but I guess this will depend on your local PC power and browser resources available.
 
Hmm, it does not seem to help speed up loading time, it takes about 30 seconds to load the 728 members. This is not a big deal for me, so no hurry for you to try and solve this.

I'm going live with the site tonight, so I'm sure my members will report back to me any bug they might find on the front end. Thanks Mark for your hard work, it really is appreciated.
 
got it thanks, I made a tweak to sources/members.php and it should be zippy for you now. Let me know how it goes.
 
Back
Top