![]() |
No POST data received - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: No POST data received (/showthread.php?tid=49153) |
No POST data received - El Forum - 02-09-2012 [eluser]mast3rpyr0[/eluser] Hey all, been having this weird issue with a brand new CI application(just downloaded the latest version). Nothing that I input into a login form is passed to the controller I'm posting too. What I have tried so far: I have checked that mod_rewrite is enabled, it is. Base_url is set correctly. I have tried all 5 uri_protocols, most of which break everything and the ones that do work give the same issues. index_page is blank for mod_rewrite usage. The only thing that I can think of is my .htaccess being wrong or I missed something in my server config; I am not strong in apache configuration. Or its just something really simple that I am over thinking, but i can't find it... Here are relevant code samples, thanks in advanced if anyone can manage to help me find the issue. Link here, it could be an issue locally as well, however its happened on all devices on my network: http://aaronblankenship.com/devzone/site/ .htaccess Code: <IfModule mod_rewrite.c> account/login function Code: public function login() login form Code: <?=form_open(base_url().'account/login');?> No POST data received - El Forum - 02-09-2012 [eluser]bobbob[/eluser] Code: $this->load->library('form_validation'); is missing in your controller No POST data received - El Forum - 02-09-2012 [eluser]mast3rpyr0[/eluser] Oh forgot to mention I autoload that. No POST data received - El Forum - 02-09-2012 [eluser]psychoder[/eluser] i think you forgot the name of your form fields... No POST data received - El Forum - 02-09-2012 [eluser]mast3rpyr0[/eluser] wow, kidding me >< i figured it would take IDs.. i feel like an idiot now lol thanks |