![]() |
Hi guys,
I've updated from CI 4.4.6 to 4.5.2. One of my previously working code was calling a spark command in the controller using command(). This no longer works and results in the redirection to my xammp root (i.e. localhost/dashboard). There are no logs or error messages, so I cannot figure out what's going on. I'm using the legacy auto routing, so perhaps some changes in that area or how the filters work? I've read the change logs and upgrade instructions but nothing is obvious. If I run the spark command via the command line, it works fine. Here's a snippet of the controller in question: PHP Code: class Update extends BaseController To ensure that the command doesn't do anything that would cause it, I even removed all lines from the run command, but no change in behaviour. PHP Code: class Update extends BaseCommand I would appreciate any ideas or debugging tips.
Your sample code never redirects a request.
So the cause might be the changes in Filters. https://codeigniter.com/user_guide/insta...nd-options https://codeigniter.com/user_guide/insta...tion-order If you remove all filters, and run, you may get some clue. (06-21-2024, 12:53 AM)kenjis Wrote: Your sample code never redirects a request. So I just tested with a blank appstarter-4.5.2 install, with the following code in Home.php and I get the same result. The only other change I made was to enable legacy auto routing in Config/Routing/php. If you could test this on your end, then you could perhaps reproduce? PHP Code: namespace App\Controllers;
I cannot reprocude.
Code: --- a/app/Config/Routing.php Code: $ php spark serve Navigate to http://localhost:8080/, I see the CI4 Welcome page.
Hmm, ok just tested with php spark serve and no issue. But when served via xammp, it doesn't work.
I note when I serve with xammp, I'm running via https whereas with php spark it's http. Could there be something special there? EDIT: sorry, running with http on xammp also fails.
It seems there is something wrong with your Apache configuration.
The code was working prior to the CI upgrade. After the upgrade it no longer works.
I have tested with xampp 8.1.6 and xampp 8.2.4 with same results.
If I do it like this it displays the help in the welcome_meassage.
welcome_message: PHP Code: <?= $cmdResult;?> controller: PHP Code: $data = [ What did you Try? What did you Get? What did you Expect?
Joined CodeIgniter Community 2009. ( Skype: insitfx )
(06-21-2024, 03:07 AM)InsiteFX Wrote: If I do it like this it displays the help in the welcome_meassage. What webserver are you running? My point is that running any command (even an empty one) on xammp will result the page redirecting to localhost/dashboard. The problem does not occur when running with spark. In debugging further, I went into framework/system/Common.php and added the following code. It seems the service('commands') call triggers the redirect. I don't know anything about what this does (can't load the command runner?) so if anyone can throw some ideas I look into debugging further. PHP Code: function command(string $command)
This code is invalid.
PHP Code: log_message('after', 'before service(commands)'); There is no log level `after`. https://codeigniter.com/user_guide/gener...og_message |
Welcome Guest, Not a member yet? Register Sign In |