Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

install with apache/jrun

Status
Not open for further replies.

NorthStarDA

IS-IT--Management
Mar 16, 2004
614
US
i have installed apache 1.3 and the cfmx7.2 development edition server on jrun4 multiserver, apache is configured to handle .cfm requests, but it still tries to download to my client. here are the relevant parts of my httpd.conf file:

Code:
LoadModule jrun_module "C:/JRun4/lib/wsconfig/1/mod_jrun.so"

...

<VirtualHost 127.0.0.1>
  ServerName 127.0.0.1
  DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"
  DirectoryIndex index.html index.htm index.cfm
</VirtualHost>

...

<IfModule mod_jrun.c>
  JRunConfig Verbose false
  JRunConfig Apialloc false
  JRunConfig Ssl false
  JRunConfig Ignoresuffixmap false
  JRunConfig Serverstore "C:/JRun4/lib/wsconfig/1/jrunserver.store"
  JRunConfig Bootstrap 127.0.0.1:51020
  # JRunConfig Errorurl <optionally redirect to this URL on errors>
  # JRunConfig ProxyRetryInterval 600
  # JRunConfig ConnectTimeout 15
  # JRunConfig RecvTimeout 300
  # JRunConfig SendTimeout 15
  AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf
</IfModule>

does anybody have any ideas of what i did wrong?

=========================================
Don't sweat the petty things and don't pet the sweaty things.
 
i also noticed that when trying to start apache i get the error:

Cannot remove module mod_jrun.c: not found in module list

=========================================
Don't sweat the petty things and don't pet the sweaty things.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top