Welcome Guest, Not a member yet? Register   Sign In
Missing variables via URL
#4

[eluser]Mr. Pickle[/eluser]
Is your server supporting PATH_INFO?
You can try to look at this by dumping the server variable:
Code:
var_dump($_SERVER)

If not, try to set this in the config file (if you're getting ORIG_PATH_INFO):
Code:
$_SERVER['PATH_INFO'] = $_SERVER['ORIG_PATH_INFO'];

Now you can set (or in your case leave) the uri_protocol to PATH_INFO
Code:
$config['uri_protocol'] = 'PATH_INFO';

Hope it helps!


Messages In This Thread
Missing variables via URL - by El Forum - 10-16-2012, 12:19 AM
Missing variables via URL - by El Forum - 10-17-2012, 02:13 AM
Missing variables via URL - by El Forum - 10-17-2012, 02:41 AM
Missing variables via URL - by El Forum - 10-17-2012, 02:54 AM
Missing variables via URL - by El Forum - 10-17-2012, 03:23 AM
Missing variables via URL - by El Forum - 10-17-2012, 01:37 PM
Missing variables via URL - by El Forum - 10-17-2012, 11:37 PM



Theme © iAndrew 2016 - Forum software by © MyBB