Woops, well I made one mistake on what I gave you.

>
> define(APP_DIR, ROOT . DS . 'app');
>

That should be define(APP_DIR, 'app');

And your .htaccess should be right 'beside' your index.php in your
webroot directory: /var/www/webroot/cake-test/html

If that doesn't fix it, then add the following lines to your
index.php.

echo 'ROOT: [' . ROOT . ']<br />';
echo 'APP_DIR: [' . APP_DIR . ']<br />';
echo 'CAKE_CORE_INCLUDE_PATH: [' . CAKE_CORE_INCLUDE_PATH . ']<br />';
exit;

put them right above the note that says

//DO NOT EDIT BELOW THIS LINE//

point at one of your   /posts page

You should get

ROOT: [/var/www/webroot/cake-test]
APP_DIR: [app]
CAKE_CORE_INCLUDE_PATH: [/var/www/webroot/cake]

I don't think your .htaccess is causing the problem unless you
modified or something.  If you get those values above and you're still
failing then I'm not sure what's wrong.

Jeff


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to