Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Ron Rennick

    (@wpmuguru)

    It would be nice to be able to edit domains that have fallen off the bottom of the list without having to mess with the database. Does anyone know if this is going to be resolved?

    You can either search for the domain you want to edit or use the user DM tool to edit the domain maps for a particular site.

    The mapped domains are shown in the site listing.

    Hi Ron, I have the exact same problem as dpegasusm.

    But if I use the search nothing happens. It is just as if the page reloads with the same list as before. See this small screencast: https://screencast.com/t/ZTXeq5ahEV

    I’m in a situation where I need to check some mappings and the network sites list is not a good place for this as I can’t search for specific mappings. What is this “User DM Tool” you talk about..?

    In /wp-content/mu-plugins/domain_mapping.php, I changed this line:
    $rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC LIMIT 0,20” );

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

    It now shows all my sites in the list..

    Thanks tejsr, that was very helpful! I also changed:
    $rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY id DESC LIMIT 0,20” );

    to:
    $rows = $wpdb->get_results( “SELECT * FROM {$wpdb->dmtable} ORDER BY blog_id ASC LIMIT 0,250” );

    Which orders the sites by blog_id in ascending order.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Domains not listed past the first 20’ is closed to new replies.