![]() |
ErrorException gzuncompress(): data error - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5) +--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24) +--- Thread: ErrorException gzuncompress(): data error (/showthread.php?tid=76954) |
ErrorException gzuncompress(): data error - cb21 - 07-07-2020 I am using an application that I write and all works well and today I have a strange error that I don't understand ErrorException gzuncompress(): data error SYSTEMPATH/ThirdParty/Kint/kint.php at line 177 Code: 170 �
That error comes at an verry simple methode : add function add(){ $d = $this->addupd('a'); //var_dump($d); $db = db_connect(); $db->table(self::$table)->insert($d); $this->liste(); } Nothing had changed recently ... At first I was thinking of hacking and a thirt party success to introduce code in my applicaiton. But this is only an hypothese RE: ErrorException gzuncompress(): data error - InsiteFX - 07-07-2020 Did you download and install the newest version of CodeIgniter 4 ? RE: ErrorException gzuncompress(): data error - cb21 - 07-07-2020 (07-07-2020, 03:24 AM)InsiteFX Wrote: Did you download and install the newest version of CodeIgniter 4 ? Displayed at 06:22:59am — PHP: 7.3.18 — CodeIgniter: 4.0.0-rc.3 It is not really the last one but it is the CI4 One more information . all the app is brocken. I can't login anymore. On every page I have this message. I have the same code on local with the same database (I dump it for save) and it works well. RE: ErrorException gzuncompress(): data error - cb21 - 07-07-2020 I can add one more information. I dont know if that helps But my table already had 127 recored and the key was tinyint(4) I notice that when I test on other environement. I change this to int Maybe I break something in this database. 128 in int(4) !!! |