I am getting closer to what I need. I have my apache server running coldfusion code but only on files within the htdocs folder. It will not execute anything that is in a folder that uses subversion like the second example. Is there anything specific I need to set? http://10.10.10.2:81/index.cfm <http://10.10.10.2:81/index.cfm> //This executes the coldfusion code fine http://10.10.10.2:81/svn/Ameridose/branches/Marketing%20Project/Extranet /index.cfm <http://10.10.10.2:81/svn/Ameridose/branches/Marketing%20Project/Extrane t/index.cfm> //This only prints out the coldfusion code, does not execute it. Here is some code from my httpd.conf # JRun Settings LoadModule jrun_module "D:/ColdFusion8/runtime/lib/wsconfig/2/mod_jrun22.so" <IfModule mod_jrun22.c> JRunConfig Verbose false JRunConfig Apialloc false JRunConfig Ignoresuffixmap false JRunConfig Serverstore "D:/ColdFusion8/runtime/lib/wsconfig/2/preserver.store" JRunConfig Bootstrap 127.0.0.1:51012 #JRunConfig Errorurl url <optionally redirect to this URL on errors> #JRunConfig ProxyRetryInterval 600 <number of seconds to wait before trying to reconnect to unreachable clustered server> #JRunConfig ConnectTimeout 15 <number of seconds to wait on a socket connect to a jrun server> #JRunConfig RecvTimeout 300 <number of seconds to wait on a socket receive to a jrun server> #JRunConfig SendTimeout 15 <number of seconds to wait on a socket send to a jrun server> AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf </IfModule>
<Location /svn> DAV svn SVNParentPath "C:\Program Files\Apache Software Foundation\Apache2.2\htdocs" SVNListParentPath on </Location> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:319486 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

