Works very well for me. I was wondering why my site suddenly crawled.
Also, the sort page is still not working, so the “Sort Media Items” links are essentially useless. In order to make these nice listing pages at least a bit useful (even without the sorting capability) I hacked sort.php to allow linking to view and edit the images:
(Starting on line 147 replace whole if statement with)
if ($results){
$num_rows = count($results);
if($num_rows>0)
{
$i=1;
$bgcol="";
foreach ( $results as $row )
{
$label = $row->post_title;
$id = $row->ID;
$fileUrl = $row->guid;
$mime = $row->post_mime_type;
$thumbnailSize = 'thumbnail';
$thumb = wp_get_attachment_image_src( $id, 'thumbnail' );
$full = wp_get_attachment_image_src( $id, 'full' ); //--- fix to view full images RHD
$editlink = "media.php?attachment_id=".$id."&action=edit"; //--- fix to link to image edit RHD
$currentOrderBy = $row->term_order;
if($mime=='image/jpeg')
{
print "
<tr id='$id' style='background-color:$bgcol'>
<td>$id</td>
<td><a href='".$editlink."' title='Edit Image'>$label</a></td>
<td><a href='".$full[0]."' title='View Full-Sized Image'><img src='".$thumb[0]."' /></a></td>
</tr>";
}
else
{
print "
<tr id='$id' style='background-color:$bgcol'>
<td>$id</td>
<td>".$fileUrl."</td>
</tr>";
}
$i+=1;
}
}
}