![]() |
CodeExtinguisher 2.0 Public Beta (RC10) - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: CodeExtinguisher 2.0 Public Beta (RC10) (/showthread.php?tid=6065) |
CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]BeingDefined[/eluser] hmm.. I'm trying to access crud with GET but its not working, showing the usual CI 404 error. I tried: http://localhost/backend.php/crud/?t=comments http://localhost/backend.php/crud?t=comments Same result for both. I have url rewrite enabled but i tried without it but same result. And I also get logged out sometimes, it's just random. I'm on apache, php5, ubuntu, mysql5, CI 1.6.1, CE 2.0 RC9. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]Majd Taby[/eluser] could you try http://localhost/backend.php/?c=crud&m=index&t=comments please? CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]BeingDefined[/eluser] Trying your suggestion and I get the following error: The URI you submitted has disallowed characters. I tried your suggestion with url rewrite on and off. Also note that I have $config['enable_query_strings'] = FALSE; in the config. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]Majd Taby[/eluser] well you need to have enable_query_strings set to TRUE for GET to work. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]BeingDefined[/eluser] Yep, that worked (: Sorry I got confused, I thought if u enable query_strings, you wouldn't be able to use rewrite but I was wrong. Also you got any plans for a "search" feature? and maybe even ASC or DEC database sorting. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]Majd Taby[/eluser] well with RC9 the tables are sortable, just click on one of the headers ![]() And yes, a search feature is in the roadmap CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]BeingDefined[/eluser] Maybe you should change all the urls in CE into GET queries .. just makes the things more flexible. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]BeingDefined[/eluser] [quote author="jTaby" date="1205190562"]well with RC9 the tables are sortable, just click on one of the headers ![]() And yes, a search feature is in the roadmap[/quote] This does the job but it works for whats in the view right now, not the whole table. CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]Majd Taby[/eluser] touche ![]() CodeExtinguisher 2.0 Public Beta (RC10) - El Forum - 03-10-2008 [eluser]Jauhari[/eluser] Why on RC 9 this problem not yet fixed? Code: Fatal error: Call to undefined method CI_DB_mysql_driver::get_where() in /Users/jauhari/Sites/Personal/First/codex/application/plugins/onetomany.php on line 133 So, I must edit it to getwhere() manually ![]() |