Woot, it is now solved.  I don't know why but, for some reason, I had
to leave off the trailing "cake" on the end of the
define('CAKE_CORE_INCLUDE_PATH', '/home/username');.

All in all, this is now my directory structure:
/home/username
               /cake
               /vendors
               /domain.com
                    /app
                    .htaccess
                    index.php
               /sub.domain.com
                    /app
                    .htaccess
                    index.php

This way, I just have one cake install with multiple apps that draw
off of it.  I can now change out my java libraries as well and it will
be up to date on all apps.

What I ultimately had to change were these:
/domain.com/index.php

Line 35  define('ROOT', '/home/username/domain.com');

Line 44 define('CAKE_CORE_INCLUDE_PATH', '/home/username'); (Notice I
left off the trailing 'cake')

/domain.com/app/webroot/index.php

Line 43 define('ROOT', '/home/username/domain.com');

Line 56 define('CAKE_CORE_INCLUDE_PATH', '/home/username'); (Notice
'cake' was left off of the end)

-----------------
Do the same thing for the sub.domain.com and change all of the
domain.com to sub.domain.com


I appreciate all of the replies!


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