hi there,
i have the following problem:
while i managed to get mod_rewrite running, it fails on my
subdomain "admin.localhost".
### part of appcontroller dump
[controller] => AdminusersController
[controllerName] => Adminusers
)
[pageTitle] => Missing Controller
### part of appcontroller dump
Obviously this leads to an error since the controller
name is "Users" and not "Adminusers"
maybe i should mention this patch, which enabled the
admin routing via a subdomain in bootstrap.php
if(env("HTTP_HOST") == "admin.localhost"){
$_GET["url"] = "admin" . $_GET["url"];
}
elseif(strpos($_GET["url"], "admin") === 0){
header ("HTTP/1.0 404 Not Found");
die();
}
any advise ?
thanks, jyrgen
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---