![]() |
Codeigniter 4 ajax post results in 404 error - 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: Codeigniter 4 ajax post results in 404 error (/showthread.php?tid=90911) |
Codeigniter 4 ajax post results in 404 error - Binboy - 05-21-2024 I am trying to handle a form submit using the JQuery ajax function on localhost xampp. However, the following always results in a 404 page not found error: Code: $(document).on("click", ".iconsTop .iconst", function (e) { Controller: PHP Code: class App_home extends BaseController Router PHP Code: use CodeIgniter\Router\RouteCollection; After submitting the form, I always get the following error in Google Chrome's page inspector: Quote:jquery-3.7.1.min.js:2 POST http://localhost/app/public/filter 404 (Not Found) Quote:404 Controller or its method is not found: Filter::index RE: Codeigniter 4 ajax post results in 404 error - pippuccio76 - 05-21-2024 Why there is public in your url ? Have you set base_url with public ? Can you try to change $routes->get('filter', 'App_home::filter'); to $routes->get('/filter', 'App_home::filter'); RE: Codeigniter 4 ajax post results in 404 error - Binboy - 05-21-2024 (05-21-2024, 10:28 AM)pippuccio76 Wrote: Why there is public in your url ?Should I delete public? My baseurl is as: Code: public string $baseURL = 'http://localhost:80/'; I change to `$routes->get('/filter', 'App_home::filter');` but there is the same error RE: Codeigniter 4 ajax post results in 404 error - demyr - 05-21-2024 Well, I don't use setAutoRoute(true). So, I manually set my routes not only for $routes->gets but also for $routes->posts. Maybe this could be your problem too ?? Check here on documentation. You can also use match option for both get and post for the same url RE: Codeigniter 4 ajax post results in 404 error - InsiteFX - 05-21-2024 Did you try like this? PHP Code: $.ajax({ |