Okay, here's how the configuration should go.  Extract Cake and use the
extracted folder to replace your public_html folder.  Do not change any
path settings.  Since you're on a shared host and you can't change the
DocRoot anyway, separating the core from /app won't do you any good
anyway.  As long as you have mod_rewrite installed, all requests will
be forwarded to /webroot anyway.

One other thing you may be able to do is take all the files out of your
extracted Cake folder and move them into /home/username.  Then, rename
/app to /public_html.  Then, go into /webroot/index.php, and find the
line that says:

define('APP_DIR', 'app');
and change it to:

define('APP_DIR', 'public_html');
Keep in mind, if your entire Cake installation lives inside
/public_html and you do *not* have mod_rewrite installed, then all
requests will come to the /index.php at the root of your Cake install.
In every other case, all requests will be forwarded to
/webroot/index.php.  This is important, because this determines which
copy of index.php you will need to make your settings changes in.


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

Reply via email to