CodeIgniter Forums
[CI4] Toolbar DB Query And Event Duplication - 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: [CI4] Toolbar DB Query And Event Duplication (/showthread.php?tid=77765)

Pages: 1 2


RE: [CI4] Toolbar DB Query And Event Duplication - Awlikhaleghi - 10-24-2020

(10-16-2020, 01:20 PM)InsiteFX Wrote:
PHP Code:
// Change this to the below.
$row $this->select('option_value')
           ->where("option_key",$key)
           ->get()
       ->getRow();

// Change to this and see if it makes a deference.
$query $this->select('option_value')
           ->where("option_key",$key)
           ->get();

$row $query->getRow(); 

(10-24-2020, 11:13 AM)paulbalandan Wrote: Good news!! This has been fixed in latest develop branch.
Good to hear!

I will update my CI Core files with the new release to check it out whenever I get myself some free time.


RE: [CI4] Toolbar DB Query And Event Duplication - InsiteFX - 10-24-2020

All you need to do is copy the system folder over unless they make an update to the app folder.


RE: [CI4] Toolbar DB Query And Event Duplication - Awlikhaleghi - 10-26-2020

I've updated my system directory with the new release and it works, no more duplications by FileLocator everything works fine so far.


RE: [CI4] Toolbar DB Query And Event Duplication - Awlikhaleghi - 10-26-2020

(10-24-2020, 11:13 AM)paulbalandan Wrote: Good news!! This has been fixed in latest develop branch.

I didnt realize until now, after replacing the new system directory, the routes defined in Config/Routes.php with $route->post() shows 404 instead of the requested page ( authentication attempt, login/register/reset etc ).
I do not have the time to investigate the issue so I had to put back the previous system dir.
I will investigate it as soon as I get some free time.


RE: [CI4] Toolbar DB Query And Event Duplication - paulbalandan - 10-27-2020

Changes since 4.0.4 have been numerous and not only involved the system dir. There are updates also to app and public dirs.