6
           
            
                
     
    
     $xoopsTpl->assign('category', $category); 
 
        if (empty($filelist['id'])) { 
        redirect_header('index.php', 1, _MD_DEBASER_NOFILES); 
        } 
        else { 
        $xoopsTpl->assign('genrelist', $filelist['genre']); 
        } 
 
        if ($xoopsUser) {  
I see that genre.php was modified 8/30/2007 (one of the files in the zip package) The latest on any of the rest is 12/2004.
I don't have the technical ability but if I did I would try commenting out this part where the redirection takes place and see what it did ... keeping a copy of the original of course so I could back out of any changes I had made.
Frankblack is the name attached to the zip file so maybe he will be able to help you. I see he posts here every now and then. Hopefully he will see your request.
https://xoops.org/userinfo.php?uid=35962EDIT:
This may offer some help,
 CREATE TABLE debaser_genre ( 
    genreid int(11) NOT NULL auto_increment, 
    subgenreid int(11) NOT NULL default '0', 
    genretitle varchar(128) NOT NULL, 
    imgurl varchar(150) NOT NULL default '', 
    catweight int(4) NOT NULL default '0', 
    PRIMARY KEY (genreid)  
I think I saw once where the auto increment from empty may cause a problem. Maybe manually doing the first one via directy entry into the database will get it started. 
These are just uneducated ideas, they may not work at all.
BS