CodeIgniter Forums
Problem Upgrading from 4.1.9 to 4.2.6 - 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: Problem Upgrading from 4.1.9 to 4.2.6 (/showthread.php?tid=83023)



Problem Upgrading from 4.1.9 to 4.2.6 - vimkaf - 09-12-2022

After upgrading my app from v4.1.9 to 4.2.6 i noticed that the debug toolbar is missing. How can i fix this?


RE: Problem Upgrading from 4.1.9 to 4.2.6 - captain-sensible - 09-12-2022

the couple of things i can think of are :

somehow environment got changed to production eg

[CODE]
// in .env
CI_ENVIRONMENT = production

// or in index php

$_SERVER['CI_ENVIRONMENT'] = 'production';


//base settings do not match your actual url to landing page
public $baseURL = 'http://localhost:8080/';

[CODE]

Or because toolbar is displayed as an after filter , somehow filters has glitched it.
Actually good time to mention how many people jump from download to live web ?
probably none ; so why is the default environment set to 'production'?