Welcome Guest, Not a member yet? Register   Sign In
Period changed to underscore
#14

[eluser]jeffpeck[/eluser]
To anybody having an issue with this, this might help. It appears that it is using the $_GET variable which you can plainly view is converting any periods to underscores. As noted here, this is the expected behavior of $_GET:
http://php.net/manual/en/language.variab...ternal.php

Quote:Note: Dots and spaces in variable names are converted to underscores. For example <input name="a.b" /> becomes $_REQUEST["a_b"].

To fix this, modify the config.php file:

Code:
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string.  The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO'            Default - auto detects
| 'PATH_INFO'        Uses the PATH_INFO
| 'QUERY_STRING'    Uses the QUERY_STRING
| 'REQUEST_URI'        Uses the REQUEST_URI
| 'ORIG_PATH_INFO'    Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol']    = "QUERY_STRING";

In my case, QUERY_STRING worked. You might need to try others, or have the script print_r($_SERVER) to easily find the correct variable.


Messages In This Thread
Period changed to underscore - by El Forum - 10-16-2008, 03:41 PM
Period changed to underscore - by El Forum - 10-16-2008, 04:45 PM
Period changed to underscore - by El Forum - 10-16-2008, 08:41 PM
Period changed to underscore - by El Forum - 10-17-2008, 08:48 AM
Period changed to underscore - by El Forum - 03-03-2009, 05:57 AM
Period changed to underscore - by El Forum - 03-03-2009, 09:31 AM
Period changed to underscore - by El Forum - 03-04-2009, 04:54 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:05 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:15 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:21 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:25 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:28 PM
Period changed to underscore - by El Forum - 03-04-2009, 05:34 PM
Period changed to underscore - by El Forum - 07-12-2010, 07:33 AM
Period changed to underscore - by El Forum - 02-10-2011, 12:02 PM



Theme © iAndrew 2016 - Forum software by © MyBB