Welcome Guest, Not a member yet? Register   Sign In
URLs have embedded "?" after updating 172 to 202
#2

[eluser]Narkboy[/eluser]
Code:
$config['allow_get_array']    = TRUE;
$config['enable_query_strings'] = FALSE;
$config['controller_trigger']    = 'c';
$config['function_trigger']    = 'm';
$config['directory_trigger']    = 'd'; // experimental not currently in use

This is the config section of CI2.02. Notice the addition of 'allow get array'? You want that TRUE, but query strings FALSE.

Under 2.02, get_array allows you to pass data via GET - query_strings allows you to call controllers and functions via GET. If query_strings is TRUE, then CI looks for the URL as GET rather than segments.

Make sense?

/B


Messages In This Thread
URLs have embedded "?" after updating 172 to 202 - by El Forum - 06-15-2011, 12:53 PM
URLs have embedded "?" after updating 172 to 202 - by El Forum - 06-16-2011, 04:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB