I'm trying to get two Cake installs working on my local machine.

I used Apache virtual hosts (1.2) to get the local domains working:
http://localhost   which goes to \htdocs.
http://lh2 which goes to \htdocs2.

localhost works no problem.
lh2  works for anything outside of Cake (e.g. PhpMyAdmin), but if I
try a cake page, I get:

-------------
Fatal error: Call to undefined method DboSource::connect() in d:\Apache
\Apache\htdocs2\cake\libs\model\datasources\dbo_source.php on line 96
-------------


Anyone have any idea what's going on?

-------------------------------------------------
My Apache httpd.conf:

NameVirtualHost *

    <VirtualHost *>
    ServerName localhost
    DocumentRoot "D:/Apache/Apache/htdocs"
    </VirtualHost>

    <VirtualHost *>
    ServerName lh2
    DocumentRoot "D:/Apache/Apache/htdocs2"
    </VirtualHost>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" 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