I noticed that the userpage list was filled with empty pages. I changed two lines so that it only lists pages that have some pagedata.
first change line 530 of userpage.php
Original code
PHP Code:
FROM " . TABLE_PREFIX . "userpage
Modified code ( the '' at the end it two ' symbols NOT a single " )
PHP Code:
FROM " . TABLE_PREFIX . "userpage WHERE pagedata <> ''
second change line 584 of userpage.php
Original code
PHP Code:
$users = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "userpage ORDER BY username ASC LIMIT $limitlower,$perpage");
Modified code
PHP Code:
$users = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "userpage WHERE pagedata <> '' ORDER BY username ASC LIMIT $limitlower,$perpage");