Getting Apache 2.x to work with Coldfusion MX 7

Ask a Question related to Coldfusion - Getting Started, Design and Development.

  1. #1

    Default Getting Apache 2.x to work with Coldfusion MX 7

    I have windows 2003 server and I'm running apache 2.x and coldfusion MX 7 full
    CD.
    I used to mess around with coldfusion 6.1 trail version, and that was easy
    because it had the Apachecoldfusion.dll file or whatever its called. Now I'm
    stuck with MX 7 becasue coldfusion MX 7 does not have that dll file.

    I've mess around wit this link to tell me how to get coldfusion started with
    apache. link is below:


    [url]http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/[/url]
    wwhelp.htm?context=ColdFusion_Documentation&file=0 0000049.htm

    Now what do I do from this point on. Please help me.

    One more thing, this is a mySQL question. mySQL comes with apache 2.0, but
    what I dont understand is why doesn't the ODBC settings show that I have mysql
    install even though it is. I'm trying to use mySQL for my database connection
    through coldfusion.

    The ICON Guest

  2. Similar Questions and Discussions

    1. Apache & ColdFusion 7
      First off Im running a WAMP with EasyPHP 1-8 Apache version 1.3.33 Coldfusion 7 Trial version I installed coldfusion, and have read the...
    2. Coldfusion 6.1 and MX7 on Apache
      I am using debian linux. I already have coldfusion 6.1 deployed via apache-ssl 1.34. I want to have load coldfusion mx7 onto the same server so I...
    3. ColdFusion Link with apache
      I successfully got coldfusion installed on my gentoo linux machine (CFMX7). Only took me 2 and a half days of hacking the files.. =( So now...
    4. ColdFusion with Apache?
      Hello, I am using Homesite with ColdFusion and Apache. Now when I try to view the the file in Homesite I get a "Setup server mappings"...
    5. Coldfusion MX + Apache 2!
      I'm testing Coldfusion MX with Apache 2 so that we can migrate from Coldfusion 4.5 on Apache 1.3 I ran the installer, selected "multi server...
  3. #2

    Default Re: Getting Apache 2.x to work with Coldfusion MX 7

    I found that the connector that is running to make the hook is messed up, at
    least in my case. Find the connector .bat file for your particular environment
    and open it up, should be in the cfmx7 connector folder. In my case the path
    that was stated was something like, c:\program files\apache group\apache.....,
    in all actuality it should be c:\program files\apache group\apache2..... if you
    are using default install locations. This worked for me.

    As far as the ODBC, if you are doing what I think you are, by going to the
    Windows ODBC settings, you wont see it there unless you installed the myODBC
    driver, also available from the mySQL site. But you should see the driver
    listed in the cfadmin when setting up a datasource.

    NOTE: if you are using a later version of mySQL, you may need to download a
    jdbc driver in order to connect to the mySQL db, its something 3.18 if I
    remember correctly.

    rmorgan Guest

  4. #3

    Default Re: Getting Apache 2.x to work with Coldfusion MX 7

    <----This is the code that the Macromedia site tolled me it should like like
    ---->

    # JRun Settings
    LoadModule jrun_module "c:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun.so"
    <IfModule mod_jrun.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ssl false
    JRunConfig IgnoreSuffixmap false
    JRunConfig Serverstore
    "c:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51000
    #JRunConfig Errorurl <optionally redirect to this URL on errors>
    JRunConfig jrun-handler .jsp .jws .cfm .cfml .cfc .cfswf .cfr
    </IfModule



    <----This is what the code looks like in my httpd.conf file after following
    the instructions ---->

    </IfModule>
    # JRun Settings
    LoadModule jrun_module "C:/CFusionMX7/runtime/lib/wsconfig/1/mod_jrun20.so"
    <IfModule mod_jrun20.c>
    JRunConfig Verbose false
    JRunConfig Apialloc false
    JRunConfig Ssl false
    JRunConfig Ignoresuffixmap false
    JRunConfig Serverstore
    "C:/CFusionMX7/runtime/lib/wsconfig/1/jrunserver.store"
    JRunConfig Bootstrap 127.0.0.1:51011
    #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>



    The ICON Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139