Welcome Guest, Not a member yet? Register   Sign In
Views not finding Controllers on lighttpd
#2

[eluser]Gordaen[/eluser]
I'm not sure what you mean by it's not loading the controllers or views? Or what you mean by not finding the controller or model?

If you're running it with php-fastcgi, you may have to set your config like this:

Code:
$config['uri_protocol'] = "REQUEST_URI";

and be sure to pass on all the appropriate variables

Code:
fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

fastcgi_param  REDIRECT_STATUS    200;


Messages In This Thread
Views not finding Controllers on lighttpd - by El Forum - 07-07-2009, 04:02 PM
Views not finding Controllers on lighttpd - by El Forum - 07-07-2009, 08:37 PM
Views not finding Controllers on lighttpd - by El Forum - 07-08-2009, 02:23 AM
Views not finding Controllers on lighttpd - by El Forum - 07-08-2009, 02:43 AM
Views not finding Controllers on lighttpd - by El Forum - 07-08-2009, 03:32 AM
Views not finding Controllers on lighttpd - by El Forum - 07-08-2009, 04:00 AM
Views not finding Controllers on lighttpd - by El Forum - 07-08-2009, 04:36 PM
Views not finding Controllers on lighttpd - by El Forum - 07-09-2009, 06:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB