Welcome Guest, Not a member yet? Register   Sign In
Controller Method file extensions? (.xml or .php)
#9

[eluser]Fenix[/eluser]
I'm working with the _remap() method recommended by slowgary above, it's working great for the xml type but when I get to the php type, CI is assuming I'm looking for a php file and gives me a 404 Not Found error. Any way I can get around this?

Here is what I have so far. It doesn't actually remap anything but it gets the content type for the response at least for xml.

Code:
function _remap($method)
{
    $content_type = stristr($method, '.');
    switch($content_type)
    {
        case '.php': $this->content_type = 'php'; break;
        case '.xml': $this->content_type = 'xml'; break;
        default: $this->errors[] = 1003;
    }
}


Messages In This Thread
Controller Method file extensions? (.xml or .php) - by El Forum - 04-23-2009, 10:35 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-23-2009, 09:35 PM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 01:08 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 06:57 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:21 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:30 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 07:55 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:26 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:30 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:48 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:52 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 08:56 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:12 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:14 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:15 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 09:22 AM
Controller Method file extensions? (.xml or .php) - by El Forum - 04-24-2009, 10:40 AM



Theme © iAndrew 2016 - Forum software by © MyBB