Support » Plugin: WordPress MU Domain Mapping » [Plugin: WordPress MU Domain Mapping] domain_mapping.php (v0.5.2) only shows 20 domains

  • First of all: great plugin! πŸ™‚

    When one has more than 20 domains mapped, not all are shown due to the lack of pagination. In the file domain_mapping.php (v0.5.2) I removed the limit from the next query (as a quick fix):

    $rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC LIMIT 0,20” );

    This query then becomes:

    $rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC”);

    Cheers!

    Laurens Meurs
    (Rotterdam, the Netherlands)

Viewing 4 replies - 1 through 4 (of 4 total)
  • Yes – pagination (or no limit) would be a nice feature here. We have 72 mapped domains right now and you have to know exactly what you’re looking for to update it.

    huh. I thought it did.

    I’ll alert the devs.

    Hello,
    WE’ve wordpress-mu setup,
    Now we need 4 differnt domains to be managed under same superadmin.
    domains are having differnet IP, DNS and they aren’t subdomain.
    Hence, we need abc.com , xyz.com,pqr.com, mnop.com ‘s wordpress articles to be managed under same superamdin.
    Cna youp ls advise steps for the same?

    Please don’t post to multiple threads with the same question, when your question should really be a new post on its own.

    Domain mapping is intended when you’re hosting all the sites on the SAME server and usually with the same IP address.

    You still have individual admin areas for each domain, not one. You may want to look at ManageWP instead of multisite.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WordPress MU Domain Mapping] domain_mapping.php (v0.5.2) only shows 20 domains’ is closed to new replies.