HELP!!!!GET is not working!!! |
[eluser]pokerking[/eluser]
hi, At first CI was breeze to start with. Then i start to have problems. I am converting my project from zend framework to codeigniter for various reasons. I am at present stuck at GET query string. Here is the issue. Segments is working fine http://localhost:81/admin/searchsubmit/page/2 it goes to my admin controller and searchsubmit method. i can get the page values using segment method but also i need this to work. http://localhost:81/admin/searchsubmit?page=2&.... very long search string.... My $_GET('page') returns null. It seems like page is not exist in GET array. This is my .htaccess # Turn on the Rewrite Engine Options +FollowSymLinks RewriteEngine On # If the file or directory exists, show it RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^(.+) - [PT,L] # Blank queries get sent to the index RewriteRule ^$ index.php? [L] # All other queries get sent to the index as index.php/whatever RewriteRule ^(.*)$ index.php?/$1 [L] ======================================================================= I modified CFI_INPUT class so it does n't reset my GET varaibles. $this->allow_get_array=TRUE; before $this->_sanitize_globals(); I think problem is with URL (.htaccess) ... I wanted to maintain same segment approach and GET query string just the way it worked in zend framework. No compormise in this!. I never had problems with zend framework... I am trying to move to CI because it is small. Now i have this problem. i went thru this forums...it seems like hack is working for evreyone except me. Also PATH_INFO returns nothing when i used in $config['uri_protocol'] I am using windows. your help is appreciated.!! |
Messages In This Thread |
HELP!!!!GET is not working!!! - by El Forum - 04-04-2008, 08:22 PM
HELP!!!!GET is not working!!! - by El Forum - 04-04-2008, 11:35 PM
HELP!!!!GET is not working!!! - by El Forum - 04-05-2008, 12:28 AM
HELP!!!!GET is not working!!! - by El Forum - 04-05-2008, 03:22 AM
HELP!!!!GET is not working!!! - by El Forum - 04-05-2008, 12:35 PM
HELP!!!!GET is not working!!! - by El Forum - 04-05-2008, 12:52 PM
HELP!!!!GET is not working!!! - by El Forum - 04-05-2008, 06:34 PM
HELP!!!!GET is not working!!! - by El Forum - 04-06-2008, 04:22 PM
HELP!!!!GET is not working!!! - by El Forum - 04-06-2008, 09:37 PM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 01:42 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:16 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:35 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:42 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:45 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:50 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 02:54 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 03:03 AM
HELP!!!!GET is not working!!! - by El Forum - 04-07-2008, 05:05 PM
HELP!!!!GET is not working!!! - by El Forum - 04-12-2008, 12:38 AM
HELP!!!!GET is not working!!! - by El Forum - 04-13-2008, 12:56 AM
|