Apache 2.0.40 - CFMX and Virtual Hosts

2002-11-12 Thread Wallick, Mike
Hi all. Just wondering: I've been fighting with using virtual hosts and CFMX for a week or so now and I simply cannot get it to work. No matter what I do, my Apache/CF combo will only serve CF templates from the first document root (C:\CFusionMX\wwwroot). I have modified jrun.xml to set the

RE: CFXImage not CFX_Image

2002-07-30 Thread Wallick, Mike
I'd be interested in that tag too. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 30, 2002 12:42 PM To: CF-Talk Subject: CFXImage not CFX_Image Hey All, Well I have discovered the other image tag CFXImage (not to be confused with CFX_Image).

Cffile Replacement

2002-07-24 Thread Wallick, Mike
Hey all. Anyone have any tricks to using cffile to upload files when the cf server is running as nobody (solaris)? My host has cffile enabled, but the cf process runs as nobody so it can't write to my web root. Is there any way around this? Mike Wallick * Web Application Developer * [EMAIL

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
permissions. Then add the user nobody to the group. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 10:15 AM

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
, some CFX, or some Java object; all of them will execute as the user nobody. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
CFX, or some Java object; all of them will execute as the user nobody. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED

RE: Quick Help...

2002-07-24 Thread Wallick, Mike
Just do a #ListLast(cgi.script_name, /)# to get the file name. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:54 PM To: CF-Talk Subject: Re: Quick Help... cgi.script_name -- problem is, it contains more than just the .cfm name

RE: jsp questions/Good JSP/CF host

2002-07-17 Thread Wallick, Mike
I use cqhost.com. I don't use their JSP server, but it is available if you want. They also have CF 5, PHP 4.x, Chilisoft ASP, mySQL, etc. I've been very happy with them so far. Mike -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 10:21

RE: 403 handler and CF code

2002-07-10 Thread Wallick, Mike
I don't know about 403's, but for my custom 404's I specify a URL for the error page, rather than a file (i.e. /index.cfm?fuseaction=home.404 as opposed to dsp_404.cfm). Know what I mean? Mike Wallick * Web Application Developer * [EMAIL PROTECTED] * 651.628.5377 *

RE: Passing a list to a Stored Procedure

2002-07-10 Thread Wallick, Mike
Send each element of the list as it's own cfprocparam. Like this: cfstoredproc procedure=procedure datasource=#dsn1# returncode=No debug=No cfloop index=this list=#list# cfprocparam type=In cfsqltype=CF_SQL_INTEGER value=#this# /cfloop /cfstoredproc That will send the values to the

RE: Passing a list to a Stored Procedure

2002-07-10 Thread Wallick, Mike
will continue to work on it. Jason -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 8:23 AM To: CF-Talk Subject: RE: Passing a list to a Stored Procedure Send each element of the list as it's own cfprocparam. Like this: cfstoredproc

RE: Passing a list to a Stored Procedure

2002-07-10 Thread Wallick, Mike
Thanks Jason -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 8:31 AM To: CF-Talk Subject: RE: Passing a list to a Stored Procedure Make sure the length of the list you're passing is the same as or less than the number of parameters

RE: Passing a list to a Stored Procedure

2002-07-10 Thread Wallick, Mike
Assignments.clnt IN (' + @ClientList + ') GROUP BY Assignments.dbnum, Master.prim_name, Master.prim_ssn ORDER BY Master.prim_name ') END GO Thanks for your help mike Jason -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 9:17 AM To: CF-Talk Subject

RE: cfif... not working properly?

2002-06-20 Thread Wallick, Mike
Try cfif ListFindNoCase(URLDecode(dir),\data, \) Note the \ at the end of the function call. This tells the function to delimit the list on a \. In your code cfif ListFindNoCase(URLDecode(dir),\data), since you aren't specifying a delimter, it defaults to a , which when using

What does this mean?

2002-06-20 Thread Wallick, Mike
I am setting a client variable with a random number ( RandRange(0, 9) ) and I get this: CFTempOnlyForSetVariableNeverUseThisNameInYourCFMLCode1223335654321 What the hell does that mean? Mike Wallick * Web Application Developer * mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] *

OT: Design Rates

2002-06-04 Thread Wallick, Mike
Hey all. I'm about to dive into the world of freelancing and I was wondering - Where might I get a good idea of what to charge for my services? I was thinking that there would be separate costs for design (just how the page looks, not what it does) and actual programming tasks (site management,

RE: if value exists, show it

2002-06-03 Thread Wallick, Mike
Personally, I use the ValueOrSpace() UDF from http://www.cflib.org. cfif Len(variable) is one I use quite often as well. I use ValueOrSpace() when say, populating a table from a db query, and Len(variable) when I'm deciding to do one thing or another with processing (like form processing). Mike

RE: Memory problems

2002-05-29 Thread Wallick, Mike
I think in the cfusion\bin directory there is a batch file provided that sets up your scheduler to restart cf services at 2am (or so). Mike Wallick * Web Application Developer * [EMAIL PROTECTED] * 651.628.5377 * http://www.securecomputing.com/ -Original Message- From: Costas Piliotis

RE: Memory problems

2002-05-29 Thread Wallick, Mike
Cycle.bat sets up the scheduler. Mike Wallick * Web Application Developer * [EMAIL PROTECTED] * 651.628.5377 * http://www.securecomputing.com/ -Original Message- From: Owen Leonard [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 1:43 PM To: CF-Talk Subject: Re: Memory

RegExp Help

2002-05-23 Thread Wallick, Mike
Hey all. I'm trying to cook up a regexp to search a block of text for links. What I'm looking for is something like: a href=path with spaces/file with spaces.htm I want to read the block of text and replace spaces with %20 so links won't break. I know, I know, links shouldn't have spaces in

RE: CF Wishlist

2002-05-01 Thread Wallick, Mike
Oh, man! That would be great. -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 11:42 AM To: CF-Talk Subject: CF Wishlist Ok, Have carefully considered what I want from CF, the most striking feature I want to see is... Stop treating

CFX C++ API Documentation/Tutorials

2002-04-30 Thread Wallick, Mike
Anyone know where I can get an API reference for building C++ CFX tags? The docs that come with CF server/studio are less than helpful. Mike Wallick Web Application Developer [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] 651.628.5377

Custom Error Templates

2002-04-23 Thread Wallick, Mike
Hey all. I'm using cferror to define a custom request error template and I'm having some strange issues: Naturally, I want the error page to look like the rest of the site (I like consistency). So I made the error template with the same colors, style stuff, etc. as the rest of the site.

RE: Custom Error Templates

2002-04-23 Thread Wallick, Mike
Templates No, you can't. What happens if you have an error in the error page? - Matt -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:13 PM To: CF-Talk Subject: Custom Error Templates Hey all. I'm using cferror to define a custom

Custom Tags as cfmodule

2002-03-29 Thread Wallick, Mike
On my web host, I don't have a Custom Tags directory (at least I don't think so). My question is, is there a way to use a custom tag that requires an end tag (cf_tag/cf_tag) as a cfmodule? Mike Wallick Web Application Developer [EMAIL PROTECTED]

RE: Custom Tags as cfmodule

2002-03-29 Thread Wallick, Mike
=== Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Wallick, Mike [mailto:[EMAIL

Complex List Delimiter

2002-03-28 Thread Wallick, Mike
Quick question for you gurus out there I want to use a text delimiter for my content that's in a database. I want to use [pagebreak] as the delimiter. In php, I would use: // Split the text into an array of pages $textarray = split(\[pagebreak], $content); However, in ColdFusion,

RE: Complex List Delimiter

2002-03-28 Thread Wallick, Mike
a new line? if so it would ce defined as #chr(13)##chr(10)#. Anthony Petruzzi Webmaster 954-321-4703 http://www.sheriff.org -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 28, 2002 11:54 AM To: CF-Talk Subject: Complex List Delimiter Quick

RegExp Help

2002-03-20 Thread Wallick, Mike
Anyone Have a RegExp to get all content between the BODY tags? I found a UDF that parses out the title, but I'm trying to modify it to parse out the body instead, but I'm not having much luck. Any help would be greatly appreciated. mike wallick * web application developer * [EMAIL PROTECTED] *

RE: RegExp Help

2002-03-20 Thread Wallick, Mike
You rock! That does exactly what I need it to do. Thanks Jerry Mike -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 1:13 PM To: CF-Talk Subject: Re: RegExp Help cfset BodyContent=reReplaceNoCase(fileContent,.*BODY[^]*(.*)/BODY.*,\1)

RE: Help! Problem registering serial number for cf 5.0 on HP/UX

2002-02-19 Thread Wallick, Mike
Make sure you have the case right. On Solaris at least, the serial number is case-sensitive. Mike -Original Message- From: Smith, Don , , WHS/PSD [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 9:58 AM To: CF-Talk Subject: Help! Problem registering serial number for cf 5.0

CFCONTENT and IE

2002-02-12 Thread Wallick, Mike
Hey everyone. I have a quick question... I was looking at the mime examples from http://www.figleaf.com/demo/mimetest on how to force a download dialog for a file using cfheader and cfcontent and it works great in Netscape. However, in IE (5 or 6) it sometimes works and sometimes it crashes the

RE: CFCONTENT and IE

2002-02-12 Thread Wallick, Mike
, sometimes it would freeze up the browser or just illegal op all together. __ steve oliver atnet solutions, inc. http://www.atnetsolutions.com -Original Message- From: Wallick, Mike [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 12, 2002 12:42 PM To: CF-Talk Subject

RE: Need something like the MSWC.BrowserType object

2002-01-15 Thread Wallick, Mike
I like cf_AEBrowser myself. It's free, and it gives you all kinds of info on the user's browser. (watch for wrapping) http://devex.macromedia.com/developer/gallery/info.cfm?ID=32B3985F-4BA 3-11D4 -AA9A00508B94F380method=Full Mike -Original Message- From: Billy Cravens [mailto:[EMAIL

RE: Resources for COM objects esp MS Word

2002-01-15 Thread Wallick, Mike
http://www.cfcomet.com - great ColdFusion - COM site. -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 15, 2002 10:04 AM To: CF-Talk Subject: Resources for COM objects esp MS Word Anyone know of any good web/print resources for using COM

RE: Web-based WYSIWYG content editor

2002-01-15 Thread Wallick, Mike
ActivEdit from http://www.cfdev.com. It's licensed per web server and it's _very_ cool. Only works in IE is the only problem (not a problem here though, most of our content owners use IE anyway). I think it's about $100(US) for the encrypted version w/out a spellchecker, and about $175(US) for