楼主我发现了解决方法:
修改:/author/book_chapter_new.php
原:
if($gotonext) {
jumpage('author/book_chapter.php?bid='.$bid, '添加成功');
}else {
jumpage('author/book.php', '添加成功');
}
修改为:
if($gotonext) {
jumpage('book_chapter.php?bid='.$bid, '添加成功');
}else {
jumpage('book.php', '添加成功');
}
原来是程序中多了个:author 导致跳转错误。