I have a code igniter project, and I wanted to try debugging it using Zend Studio. WHen I start debugging, I immediately run ino
\"The URI you submitted has disallowed c
in Expression engine you'll find this in /admin/expressionengine/config/config.php
$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\\-';
change to
$config['permitted_uri_chars'] = '';
but read the line comment before you do this.
Or don't use anything CI based.