How to fix the gzip compression(Content Encoding Error)

How to fix the gzip compression(Content Encoding Error) in seo panel version <= 3.3.1
Steps to fix teh issue
1) Open file seopanel/libs/session.class.php in any editor
2) Change code in line 28 as follows
To
3) Save code and it will fix the issue.
Steps to fix teh issue
1) Open file seopanel/libs/session.class.php in any editor
2) Change code in line 28 as follows
- Code: Select all
ob_end_clean();
To
- Code: Select all
// to fix the zip encoding issue
if (!ob_start("ob_gzhandler")) {
ob_start();
}
ob_end_clean();
3) Save code and it will fix the issue.