I am trying to get v 1.1.12.4205 running on a Lighttpd server.
Everything seems to be working aside from $_GET requests like these:
http://www.chattypet.org/pets/?page=2
page=2 would not get picked up in this example. I have no access to it
through $this->params and $_GET in Cake.
My configuration for the host in lighttpd.conf is as follows:
One guess is that because index.php?url= is being used in rewrite, the
GET info is getting chopped off, can anyone help?
$HTTP["host"] == "chattypet.org" {
server.document-root = "/var/www/vhosts/chattypet.org/httpdocs/"
url.rewrite-once = (
"/(css|files|img|images|devedit|flash|js|stats|login)/(.*)" => "/
app/webro
"/(.*)$" => "/app/index.php?url=$1"
)
}
$HTTP["host"] == "www.chattypet.org" {
server.document-root = "/var/www/vhosts/chattypet.org/httpdocs/"
url.rewrite-once = (
"/(css|files|img|images|devedit|flash|js|stats|login)/(.*)" => "/
app/webro
"/(.*)$" => "/app/index.php?url=$1"
)
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---