Same experience here.

        ���
         ~
Don Vawter

----- Original Message -----
From: "Brian Scandale" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, April 05, 2002 6:53 PM
Subject: RE: CF on Redhat 7.1


> Jim,
>
> I'm running CF5 very successfully first on RH7.1 and now 7.2 with apache
and postgreSQL ... cfinstall handles it very well.
>
> However my similar problem arose when I used the RH GUI tool to make any
configuration changes to apache. It ended up removing the cfinstall changes.
>
> So I now only modify httpd.conf with a text editing tool.
>
> hope this helps,
> Brian
>
> At 05:29 PM 4/5/02 -0500, you wrote:
> >We did that, but to no avail......
> >
> >hmm...
> >
> >- j
> >
> >-----Original Message-----
> >From: Don Vawter [mailto:[EMAIL PROTECTED]]
> >Sent: Friday, April 05, 2002 5:00 PM
> >To: CF-Talk
> >Subject: Re: CF on Redhat 7.1
> >
> >
> > From the cfdocs.
> >
> >
> >To configure Red Hat and Apache:
> >  1.. Shut down Apache with the following command:
> >/etc/rc.d/init.d/httpd stop
> >2.. To check whether your version of Apache is built with EAPI, run this
> >command:
> >httpd -V
> >If the output contains the line -D EAPI, you have an EAPI version of
Apache.
> >
> >  3.. Open the file /etc/httpd/conf/httpd.conf in a text editor.
> >    1.. If you are not running an EAPI version of Apache, in the section
> >LoadModule, add this line:
> >LoadModule coldfusion_module
> >/opt/coldfusion/webserver/apache/mod_coldfusion_standard.so
> >If you are running an EAPI, add this line:
> >
> >    LoadModule coldfusion_module
> >/opt/coldfusion/webserver/apache/mod_coldfusion_EAPI.so
> >    2.. In the section AddModule, add this line:
> >AddModule mod_coldfusion.c
> >3.. Save the file.
> >  4.. Restart Apache with this command:
> >/etc/rc.d/init.d/./httpd start
> >To configure SuSE/Cobalt and Apache:
> >  1.. To check whether your version of Apache is built with EAPI, run
this
> >command:
> >httpd -V
> >If the output contains the line -D EAPI, you are running an EAPI server.
> >(SuSE requires an EAPI version of mod.coldfusion.so.)
> >
> >  2.. Shut down Apache with the following command:
> >/etc/rc.d/apache stop
> >3.. Open the file /etc/httpd/httpd.conf in a text editor.
> >    1.. In the section LoadModule, add the following lines:
> >LoadModule mmap_static_module /usr/lib/apache/mod_mmap_static.so
> >LoadModule setenvif_module /usr/lib/apache/mod_setenvif.so
> >LoadModule coldfusion_module
> >/opt/coldfusion/webserver/apache/mod_coldfusion_EAPI.so
> >2.. In the section AddModule, add the following lines:
> >ClearModuleList
> >AddModule mod_mmap_static.c
> >AddModule mod_vhost_alias.c
> >AddModule mod_so.c
> >AddModule mod_setenvif.c
> >AddModule mod_coldfusion.c
> >3.. Save the file.
> >  4.. Create a symbolic link from the EAPI version of the ColdFusion
Server
> >module to the /usr/lib/apache directory, to ensure that the EAPI module
is
> >executable:
> >chmod 755 /opt/coldfusion/webserver/apache/mod_coldfusion_EAPI.so
> >  ln -s  /opt/coldfusion/webserver/apache/mod_coldfusion_EAPI.so
> >/usr/lib/apache/mod_coldfusion.so
> >5.. Open the file /etc/rc.d/apache in a text editor.
> >    1.. Look for the following lines:
> >if ! test "$HTTPD_SEC_MOD_SAPCGI" == "no" ; then
> >      test -e /usr/lib/apache/mod_fastcgi_sap.so || \
> >          test $(/usr/sbin/httpd -l | grep  "mod_fastcgi_sap.c") =
> >"mod_fastcgi_sap.c" 2> /dev/null \
> >          && MODULES="-D SAP_CGI $MODULES" && echo -n " SAP-fastcgi"
> >fi
> >2.. Add these lines directly below the previous lines:
> >if ! test "$HTTPD_SEC_MOD_COLDFUSION" == "no" ; then
> >  test -e /usr/lib/apache/mod_coldfusion.so && MODULES="-D COLDFUSION
> >$MODULES" && echo -n " Coldfusion"
> >fi
> >6.. Restart Apache with this command:
> >/etc/rc.d/apache start
> >
> >        ���
> >         ~
> >Don Vawter
> >
> >----- Original Message -----
> >From: "Jim Curran" <[EMAIL PROTECTED]>
> >To: "CF-Talk" <[EMAIL PROTECTED]>
> >Sent: Friday, April 05, 2002 2:53 PM
> >Subject: CF on Redhat 7.1
> >
> >
> >> Hi all,
> >>
> >> I'm installing Coldfusion 5 under RedHat Linux 7.1 for the first time.
> >Went
> >> through all the install steps as directed and the coldfusion processes
are
> >> all running, but .cfm documents are processed just as straight-ahead
> >> txt/html documents.
> >>
> >> I've been over this a number of times, even tried uninstalling and
clean
> >> re-installing but the situation remains the same. I'm guessing I'm
missing
> >> something fairly simple, probably in the Apache setup?
> >>
> >> Any help would be greatly appreciated.
> >> thanks,
> >>
> >> -j
> >>
> >> -----Original Message-----
> >> From: Ian Lurie [mailto:[EMAIL PROTECTED]]
> >> Sent: Friday, April 05, 2002 4:43 PM
> >> To: CF-Talk
> >> Subject: RE: RegEx newbie help...
> >>
> >>
> >> Yup, as soon as I saw it it made sense - one of those days for me, I
> >> guess...
> >>
> >> -----Original Message-----
> >> From: Jerry Johnson [mailto:[EMAIL PROTECTED]]
> >> Sent: Friday, April 05, 2002 1:41 PM
> >> To: CF-Talk
> >> Subject: Re: RegEx newbie help...
> >>
> >>
> >> And if you are wondering why,
> >>
> >> <[^>]*>
> >>
> >> in english:
> >>
> >> a < followed by zero or more characters that are not a > followed by a
>
> >>
> >> Jerry Johnson
> >>
> >>
> >> >>> [EMAIL PROTECTED] 04/05/02 04:26PM >>>
> >> rereplace(st,'<[^>]*>','',"all")  should do it
> >>
> >>          +
> >>          ~
> >> Don Vawter
> >>
> >> ----- Original Message -----
> >> From: "Ian Lurie" <[EMAIL PROTECTED]>
> >> To: "CF-Talk" <[EMAIL PROTECTED]>
> >> Sent: Friday, April 05, 2002 2:21 PM
> >> Subject: RegEx newbie help...
> >>
> >>
> >> > Hi all,
> >> >
> >> > Just started messing with Regular Expressions - I need to replace all
> >> > instances of < and >, and any characters in between them, with "".
> >> >
> >> > What's the right statement? I tried:
> >> >
> >> > #rereplacenocase((left(summary,200)),"(<*>)","")#
> >> >
> >> > and
> >> >
> >> > #rereplacenocase((left(summary,200)),"<*>","")#
> >> >
> >> > but can't seem to get it right.
> >> >
> >> > Thanks in advance,
> >> >
> >> > Ian
> >> >
> >> > Portent Interactive
> >> > Helping clients build customer relationships on the web since 1995
> >> > Consulting, design, development, measurement
> >> > http://www.portentinteractive.com
> >> >
> >> >
> >>
> >>
> >>
> >>
> >
> >
> 
______________________________________________________________________
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to