Hi,

I am targetting all DDL webmasters that are still running kDDL. As you may already know when you have a huge number of downloads in your database it takes a (long!) while to load the view/edit downloads page. It's because of all the page number that are generated at the bottom. I made an improved code to increase the loading time from ages to really fast lol.

open edit.class.php

Find:
Code: 
$this->page("admin.php?go=stats&page=");
Replace by:
Code: 
for($y = 1; $y <= 20 ; $y++){
  echo '<a href="admin.php?go=stats&page='.$y.'">['.$y.']' ;
}
change the 20 to how many pages you want it to display in your admin panel.

Enj0y!
Whoo Reviewed by Whoo on . kDDL Webmasters - Better Loading Edit Downloads Hi, I am targetting all DDL webmasters that are still running kDDL. As you may already know when you have a huge number of downloads in your database it takes a (long!) while to load the view/edit downloads page. It's because of all the page number that are generated at the bottom. I made an improved code to increase the loading time from ages to really fast lol. open edit.class.php Find: $this->page("admin.php?go=stats&page="); Replace by: Rating: 5