![]() |
Error in Module 'timezonedb' already loaded - 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: Error in Module 'timezonedb' already loaded (/showthread.php?tid=68063) |
Error in Module 'timezonedb' already loaded - Kitro - 05-18-2017 Hi everyone, I use Codeigniter [b][b]3.1 to programmer a website, it's perfect framework for php.[/b][/b] [b][b]recently i show error in bottom page said : [/b][/b] Code: A PHP Error was encountered i search for module timezonedb in php.ini and in .htaccess files i don't find any duplication for loading this module. could someone help me to fix this error. thanks RE: Error in Module 'timezonedb' already loaded - ragingTorch - 05-18-2017 Sounds like timezonedb is being loaded twice in your php.ini. Are you sure you are looking in and editing the right php.ini? perhaps create a php page with just phpinfo() in it, visit that to view all the details about your php setup - it will show you where php is loading php.ini from, there could be multiple locations, it will be in one of these. RE: Error in Module 'timezonedb' already loaded - sevmusic - 01-10-2018 I couldn't change any of our host's php.ini configuration so I prevent the error from appearing by adding an IF statement to the error views: application/views/errors/html/error_php.php Code: <? if($message !== "Module 'timezonedb' already loaded"): ?> |