I've been developing a few cakephp apps on linux machines for a while,
and have them all bootstraped to share common classes.

e.g.
App::build( array(
        'datasources' => array( '/vol/shared.opskwan/models/datasources/' ),
) );

This works fine on all my linux boxes.

However I'm now trying to setup a windows dev machine and it's not
working properly. Do I *have* to add in windows paths to all my
bootstraped folders? or is there a way to get windows to recognize the
path "/vol/shared/foo/bar/" ?

I currently have it working with bootstrap defining two paths, but I
don't like leaving it this way:

App::build( array(
        'datasources' => array( '/vol/shared/models/datasources/', 'c:/vol/
shared/models/datasources/' ),
) );

-- 
Our newest site for the community: CakePHP Video Tutorials 
http://tv.cakephp.org 
Check out the new CakePHP Questions site http://ask.cakephp.org and help others 
with their CakePHP related questions.


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