ReflectionException Class "Login" does not exist - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: ReflectionException Class "Login" does not exist (/showthread.php?tid=87681) |
ReflectionException Class "Login" does not exist - isaacongoma - 05-19-2023 I am getting this error yet the Login controller does exist and the namespace is well captured. This error is only showing on the live server but on my local server (laragon) this error doest show. Kindly help. RE: ReflectionException Class "Login" does not exist - InsiteFX - 05-19-2023 Use your Web Browsers development tools F-12 on most then click on the networks & console. This should show you what is going on. RE: ReflectionException Class "Login" does not exist - isaacongoma - 05-20-2023 I can only see the checklogin route with status code 200 and preview section showing a loginn form. Clearly its not logging in on live server but does log in in local server RE: ReflectionException Class "Login" does not exist - InsiteFX - 05-20-2023 Did you try changing the $uriProtocol in app/Config/App.php ? RE: ReflectionException Class "Login" does not exist - isaacongoma - 05-20-2023 Wow. Thanks so much buddy. I changed from PATH_INFO to REQUEST_URI and it worked magic. Am so grateful |