Welcome Guest, Not a member yet? Register   Sign In
[CI4] Toolbar DB Query And Event Duplication
#11

(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.
Reply
#12

All you need to do is copy the system folder over unless they make an update to the app folder.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#13

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

(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.
Reply
#15

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




Theme © iAndrew 2016 - Forum software by © MyBB