As I thought... The problems were already in the pppanel file, but I have sorted them.
open pppanel.php and find this:
PHP Code:
$user = $bbuserinfo['userid'];
Afterward, add this:
PHP Code:
$page=$_REQUEST['page'];
That will sort out your page problems
now for the no pictures thing...
same file, find this:
PHP Code:
if ( $numrows < 16 ) $nextpage = 0;
aftwerward, I put this:
then find this:
and afterward, add:
then find this:
PHP Code:
if ( $i == 0 ) {
and change it to:
PHP Code:
if ( $y == 0 ) {
nJoy