Marc, For local dev, I use apache virtual hosts (usually with the top level domain "local"). Based on your instructions above, to get the mxunit plugin working for my setup, I added two Alias directives.
Here's an example vhost directive, for a local dev url " project.fancybread.local" <VirtualHost 127.0.0.1:80> DocumentRoot "/Users/paul/htdocs/project/root" Alias /mxunit "/Users/paul/htdocs/mxunit" Alias /slcc/root "/Users/paul/htdocs/project/root" ServerName project.fancybread.local DirectoryIndex index.cfm <Directory "/Users/paul/htdocs/project/root"> Options All AllowOverride All </Directory> </VirtualHost> On my mac, /Users/paul/htdocs is my actual web root. The second directive is necessary, since the plugin assumes the eclipse project starts at the web root, but my project web root is below that at project/root This explanation is probably as clear as mud, but it works. :) The debug output is awesome, btw. Nice work! Paul On Fri, Mar 7, 2008 at 3:30 AM, Ronan Lucio <[EMAIL PROTECTED]> wrote: > > Hi Mark, > > Marc Esher escreveu: > > But I do understand that there are times when you can't develop > > locally. > > Yes, it´s my reallity. > I can't work on localhost with one specific project. > > > Please give this stuff a shot and let me know if it doesn't work out. > > > > Nice, it´s working now... :-) > > Thank you Marc, > Ronan > > > > -- Paul Marcotte Fancy Bread - in the heart or in the head? http://www.fancybread.com --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CFCDev" 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/cfcdev?hl=en -~----------~----~----~----~------~----~------~--~---
