In order for you to setup that kind of structure you need to follow this
structure.

www/
    lib/                         -- putting all the cakephp versions you can
dump any version of cake here for reference
        cakephp1.2.5/
            cake/
            vendors/
            .htaccess
            index.php

    site1/
        app/

    site2/
        app/

    site3/
        app/

you need to edit the following files:

/site1/app/webroot/index.php
/site2/app/webroot/index.php
/site3/app/webroot/index.php

change the following lines to

/site1/app/webroot/index.php

if (!defined('ROOT')) { define('ROOT', DS.'www'.DS.'site1'); }
if (!defined('APP_DIR')) { define('APP_DIR', 'app'); }
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH',DS.'www'.DS.'lib'.DS.'cakephp1.2.5'); }

/site2/app/webroot/index.php

if (!defined('ROOT')) { define('ROOT', DS.'www'.DS.'site2'); }
if (!defined('APP_DIR')) { define('APP_DIR', 'app'); }
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH',DS.'www'.DS.'lib'.DS.'cakephp1.2.5'); }


/site3/app/webroot/index.php

if (!defined('ROOT')) { define('ROOT', DS.'www'.DS.'site3'); }
if (!defined('APP_DIR')) { define('APP_DIR', 'app'); }
if (!defined('CAKE_CORE_INCLUDE_PATH')) {
define('CAKE_CORE_INCLUDE_PATH',DS.'www'.DS.'lib'.DS.'cakephp1.2.5'); }

I hope this one will help..

you can add as many site as you want...



On Fri, Jan 29, 2010 at 11:57 AM, Dave <make.cake.b...@gmail.com> wrote:

> I want to set up my virtual environmant so i can use 1 copy of Cake and all
> site being developed can use that 1 copy.
>
> So i currently have my www folder
> www/
>    site1/
>            app/
>            cake/
>
>    site2/
>            app/
>            cake/
>
>
>    site3/
>            app/
>            cake/
>
> But this is not the obvious setup.
>
> I would much preffer
>
> Www/
>        cake/
>        site1/ (would site1 just be renaming app folder to site1?)
>        site2/
>        site1/
>
> What would I need to change to get this type of set up running? Just the
> htaccess? Or do I need to do anything with cake also?
>
> Thanks
>
> Dave
>
> Check out the new CakePHP Questions site http://cakeqs.org and help others
> with their CakePHP related questions.
>
> You received this message because you are subscribed to the Google Groups
> "CakePHP" group.
> To post to this group, send email to cake-php@googlegroups.com
> To unsubscribe from this group, send email to
> cake-php+unsubscr...@googlegroups.com<cake-php%2bunsubscr...@googlegroups.com>For
>  more options, visit this group at
> http://groups.google.com/group/cake-php?hl=en
>

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to
cake-php+unsubscr...@googlegroups.com For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to