Re: Just a tidbit for those who might not have use iif before

2007-03-23 Thread Rob Wilkerson
checked=#something eq 'somethingelse# That should work just fine. No need for the iff() in this case. On 3/23/07, Richard Cooper [EMAIL PROTECTED] wrote: I'm assuming there is a noticeable difference in using IFF? Recently I've been using it quite heavily in forms now i.e. cfinput

SOT: Getting Started with Flex

2007-03-23 Thread Rob Wilkerson
to hook me up with some info? I appreciate it. Rob Wilkerson ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2 Free Trial http://www.adobe.com/products/coldfusion/flex2/?sdid=RVJU Archive: http

Re: OT: css n00b question

2007-03-23 Thread Rob Wilkerson
I prefer using margin when I'm creating space between containers and padding when I'm trying to create space between content and the container edge. I just find it easier to think about that way, I guess. I don't know why margin isn't working for you, though. Can you post a *snippet* of the

Re: SOT: Getting Started with Flex

2007-03-23 Thread Rob Wilkerson
Thanks, Tom. I'll venture over there. On 3/23/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 23 Mar 2007, Rob Wilkerson wrote: Anyone willing to hook me up with some info? You might try asking over on FlexCoders (@ Yahoo Groups). -- Tom Chiverton Helping to quickly architect fine

Re: Hah? BlogCFC / BlogCFM

2007-03-23 Thread Rob Wilkerson
Couldn't help yourself, could you? :-) On 3/23/07, Raymond Camden [EMAIL PROTECTED] wrote: And I'd use Rick's blog. So now what do you do? ;) (just kidding btw :) On 3/23/07, Dwayne Cole [EMAIL PROTECTED] wrote: If I were to decide to start a blog today, I'd go with Ray's BlogCFC.

Re: OT: RSS Selector Utiltiy

2007-03-22 Thread Rob Wilkerson
Sounds a little like what Yahoo! Pipes is already doing. Selectively grabbing items from a feed may be troublesome just because of the mutable nature of feeds. On 3/22/07, Dwayne Cole [EMAIL PROTECTED] wrote: I have a client aiming to deploy a site that aggregates news from various RSS or XML

Re: Just a tidbit for those who might not have use iif before

2007-03-22 Thread Rob Wilkerson
Uh oh. You're probably about to get hammered with responses related to the performance cost... On 3/22/07, Peterson, Chris [EMAIL PROTECTED] wrote: I have never really used iif before, I was aware it existed but didn't really see a good place for it. Until today. =) Check this out:

Re: Just a tidbit for those who might not have use iif before

2007-03-22 Thread Rob Wilkerson
I think I heard something about them going back on tour this year... On 3/22/07, Andy Matthews [EMAIL PROTECTED] wrote: Here come the Iif police. -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Thursday, March 22, 2007 3:10 PM To: CF-Talk Subject: Just a

Re: Parsing Blogger Feeds

2007-03-21 Thread Rob Wilkerson
What error do you get? A valid feed is, by definition, valid XML, but sometimes white space gets thrown in by the process of downloading, etc. On 3/20/07, Tom Avey [EMAIL PROTECTED] wrote: A few weeks ago my feeds from blogger quit working. I'm looking for coldfusion solutions but looks like

Re: Parsing Blogger Feeds

2007-03-21 Thread Rob Wilkerson
If you're using PHP5, you can use SimpleXML to parse your feed. There's a decent explanation at http://blog.stuartherbert.com/php/2007/01/07/using-simplexml-to-parse-rss-feeds/. If you're still looking to move to CF, the look at Ray Camden's RSS.cfc. I don't have a URI, but check riaforge.com or

Re: Calling a function based on variable name

2007-03-20 Thread Rob Wilkerson
Take a look at this blog entry by Ben Nadel and see if it's what you need. http://www.bennadel.com/index.cfm?dax=blog:572.view On 3/19/07, Randy Johnson [EMAIL PROTECTED] wrote: Hello, Here is what I am trying to accomplish. I cannot seem to remember or find a way to do this: cfset

Re: CF7 on XP2 with IIS

2007-03-20 Thread Rob Wilkerson
I've done many of these installs with no problems. You didn't mention the issue(s) you were having, so I'm not sure what you might be bumping into. On 3/20/07, Jacob [EMAIL PROTECTED] wrote: Okay.. what is the secret on installing CF7 on XP2 with IIS? I disabled the firewall, allowed the

Re: cfhttp/xml help

2007-03-18 Thread Rob Wilkerson
You may have non-printing characters. I've seen this before as well and I've solved it, but I can't remember how. I'll try digging up some of my old code and see if I can be some help. On 3/17/07, Randy Johnson [EMAIL PROTECTED] wrote: Hi Bob, I had this happen with a couple rss feeds. I

Re: cfhttp/xml help

2007-03-18 Thread Rob Wilkerson
, that opening would mark the start of ?xml Hope this helps. On 3/18/07, Rob Wilkerson [EMAIL PROTECTED] wrote: You may have non-printing characters. I've seen this before as well and I've solved it, but I can't remember how. I'll try digging up some of my old code and see if I can

Re: cfhttp/xml help

2007-03-18 Thread Rob Wilkerson
when displaying the content of a feed. On 3/18/07, Rob Wilkerson [EMAIL PROTECTED] wrote: @Bob Randy - I cracked open some of my code and, if I was looking in the right place, this is what I did... cfset rawXML = REReplaceNoCase ( trim ( cfhttp.fileContent ), ^[^]*, ) / This code strips

Re: Looking for a good IIS URL rewriting plugin

2007-03-15 Thread Rob Wilkerson
Rob On 3/15/07, Nathan Strutz [EMAIL PROTECTED] wrote: Hey gang, I'm looking for people's opinions on URL Rewriting plugins for IIS 6. Any experience, good or bad, and recommendations. I've heard of a lot of them over the years, but haven't implemented any yet. Thanks! -- nathan strutz http

Re: Password Protect My DSN

2007-03-14 Thread Rob Wilkerson
user then what's the best way of achieving this, what settings should I be using for the user as far as their privileges are concerned? Thanks for any advice on this guys, Rob ~| Deploy Web Applications Quickly across

Re: FTP in Eclipse

2007-03-14 Thread Rob Wilkerson
That's correct. I'm looking at just such a setup on my own install. In the Aptana file view, scroll to the bottom. You'll see FTP and SFTP nodes. Right click to create a new server connection using the appropriate protocol. On 3/14/07, Dean Lawrence [EMAIL PROTECTED] wrote: Rob, I do

Re: OT: php equivalent of application.cfc

2007-03-02 Thread Rob Wilkerson
Hey Tom - It's been a couple of years (like 5), but as of PHP 4, there was a setting in php.ini that allowed you to define a file that would be called before every request the way Application.cfm is called. You have to define it explicitly, but it behaves exactly the same way, in my experience.

Re: OT: php equivalent of application.cfc

2007-03-02 Thread Rob Wilkerson
That could work (as would the related require_once() function), but it's maintenance-intensive since it has to be explicitly included on every page. Look at the auto_prepend_file directive in php.ini (I looked it up and I think that's what I was referring to in my earlier post). If you need

Re: OT: php equivalent of application.cfc

2007-03-02 Thread Rob Wilkerson
Ugh. :-) On 3/2/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Friday 02 Mar 2007, Rob Wilkerson wrote: That could work (as would the related require_once() function), but it's maintenance-intensive since it has to be explicitly included on every page. OTTOMH: find . -name '*.php' -exec

Re: php equivalent of application.cfc

2007-03-02 Thread Rob Wilkerson
Don't know what to tell them, but I've done it. At least with PHP 4.x. I've included the php.ini doc. Search for auto_prepend_file. The second hit describes what it does. http://de3.php.net/manual/en/ini.core.php On 3/2/07, Andy Matthews [EMAIL PROTECTED] wrote: I just asked two pro level

Re: php equivalent of application.cfc

2007-03-02 Thread Rob Wilkerson
Cool. I didn't know that. Theoretically, then, you could have a separate auto_append and auto_prepend file for each web root or even directory within a webroot, right? On 3/2/07, Ryan Stille [EMAIL PROTECTED] wrote: You don't need to have access to the php.ini file. You can set those

Re: Mail Spool Slow

2007-02-22 Thread Rob Kopp
Can you show me some code on how you're doing that? FWIW: we send out thousands and i find it easier to write the files directly to the mail root instead of getting CF to send the email via the cf spool. ~| ColdFusion MX7 by

ORM Question

2007-02-20 Thread Rob Wilkerson
. I haven't. Yet. I was hoping someone here could answer that one question very quickly instead. :-) Thanks. Rob Wilkerson ~| Upgrade to Adobe ColdFusion MX7 Experience Flex 2 MX7 integration create powerful cross-platform

Re: SOT: ORM Question

2007-02-20 Thread Rob Wilkerson
Sadly, I can't. My involvement came after the initial creation was done. I'll talk to the guys who did it, though, and see if I can find anything out. On 2/20/07, Martin Thorpe [EMAIL PROTECTED] wrote: Hello. Sorry I cannot answer your question but I have also been using Hibernate a little

Mail Spool Slow

2007-02-20 Thread Rob Kopp
I am running ColdFusion MX 7 (7,0,1,116466). Mail is getting into the queue and processing however it is only doing them one at a time. I have an email that goes out nightly to about 1800 users and it is taking about 8 hours for all the email to leave. Even during the day when there is much

Re: ORM Question

2007-02-20 Thread Rob Wilkerson
://www.cfframeworks.com/blog/index.cfm/2007/2/20/Mark-Mandel-talks-about-his-Transfer-ORM-Framework HTH On 20/02/07, Steve Bryant [EMAIL PROTECTED] wrote: Rob, Apologies for the self-promotion, but I have a (free) tool that does this (though it isn't technically an ORM tool). blog: http

Re: Mail Spool Slow

2007-02-20 Thread Rob Kopp
We are using standard, however this has never been an issue in the past. This started happening a little over a month ago. Previous to then, it would shoot out 1800 emails in about 10 minutes. I'll check out IMS though, thanks! Are you running CF standard or enterprise? CF Standard does

Re: Mail Spool Slow

2007-02-20 Thread Rob Kopp
I am running Exchange 2003 and haven't had any problems until this. All out anti-spam is handled outside by postini and as the web server and mail server sit on the same subnet all the talking is local, so there isn't any worries there. I doubt it's an overloading issue as the system

Re: Mail Spool Slow

2007-02-20 Thread Rob Kopp
ok, having fixed DNS, I have IMS working on it's own without relay to my exchange server. It seems pretty darn quick, we'll see when my process kicks off later tonight. Thanks for your input Russ. ~| ColdFusion MX7 and Flex

Re: ORM Question

2007-02-20 Thread Rob Wilkerson
This one, perhaps? http://www.dopefly.com/techblog/entry.cfm?entry=149 Once you said something, it occurred to me that I had seen a similar post, as well... On 2/20/07, Dinner [EMAIL PROTECTED] wrote: On 2/20/07, Rob Wilkerson @gmail.com wrote: Thanks, all. Since I saw no evidence

Re: CF XML XSLT question

2007-02-15 Thread Rob Wilkerson
ColdFusion doesn't handle this well. The problem is that it doesn't recognize text nodes, per se. In your example you have, in effect: aTagtextnode /inlineTagtextnode //inlineTagtextnode //aTag There is no textnode tag, of course, but it's meant to be illustrative. ColdFusion doesn't make

Re: reFine :: search and replace for tag attribute

2007-02-12 Thread Rob Wilkerson
If you're using CFEclipse or, I think Homsite supported this as well, you can run a find and replace operation against a set of project files. The find can specify a regex and the replace can include backreferences, if necessary. On 2/11/07, AJ Mercer [EMAIL PROTECTED] wrote: Hi All, I have a

.Net pass to ColdFusion MX 6.1 Web Service

2007-01-31 Thread Rob Sherman
method does expect a struct, and one of them passes in a struct where one of the values is an array. Would anyone have some simple sample .Net code example I can pass along to the vendor to help him out? - Rob ~| Upgrade to Adobe

Re: Setting Linux user

2007-01-17 Thread Rob Wilkerson
As a general rule, I do what Eric suggests. I run CF and Apache under the same user (usually apache) and then make that user the owner of my web root with perms set to 755. Just a practice that I've found works for me. On 1/17/07, Eric Haskins [EMAIL PROTECTED] wrote: You can also set

Re: Eclipse/CFEclipse and autocomplete

2007-01-12 Thread Rob Wilkerson
I don't know whether it's a single file, but each time I set up a new workspace (I have workspaces for active projects, old projects, future projects and a build environment) I export the preferences from my original workspace and import it into the new workspace. That seems to retain most

Re: Direct query access to XML elements saved in a MS SQL 2005 field of type XML

2006-12-08 Thread Rob Wilkerson
On 12/8/06, Archie Campbell [EMAIL PROTECTED] wrote: I have a new CF7 web system that stores fields from a PDF form in an MS SQL 2005 table field of type XML. I know I can do a query that extracts the XML field that I can then get into using XMLParse. What I am wondering is how to do a SQL

Re: Table Cell Height Question

2006-12-01 Thread Rob Wilkerson
Setting your cellpadding to 0 is the best option I know of. By default, I believe the padding is 1. On 12/1/06, Steve LaBadie [EMAIL PROTECTED] wrote: I am pushing data in a tabular format with alternating colored rows. Is there a way to reduce the height of the cell so the colored background

Re: Country Name Case

2006-11-22 Thread Rob Wilkerson
On 11/22/06, RichL [EMAIL PROTECTED] wrote: Also, is there a UDF around for capitalising the first letter of each word? Take a look at initCapTitle() (I think that's the function name) at cflib.org. It won't be exact, but it'll get you pretty close.

Re: Stupid Field Names

2006-11-16 Thread Rob Wilkerson
I'm a little unclear about the type of structure you're using, but what about #['order-id']#? On 11/16/06, James Smith [EMAIL PROTECTED] wrote: While processing Amazon report files I notice that they have labelled most of their fields with - in. For example order-id and payments-date. Having

Re: Subversion help

2006-11-15 Thread Rob Wilkerson
On 11/15/06, Rick Root [EMAIL PROTECTED] wrote: Regarding subversion, how do people handle deployment? Just copy from your local working copy to the production server, or install tortoiseSVN on the server and check out working copies there? Because I create a product, I have an ant script

Re: Mixing CF and JavaScript.

2006-11-14 Thread Rob Wilkerson
-side. For you, this means that you can't do what you're trying to do the way you're trying to do it. You're trying to execute server code in a client function. You can accomplish the mission using AJaX, but not through inline methods like these. HTH. Rob Wilkerson

Re: Subversion and Eclipse - Version Rollback

2006-11-13 Thread Rob Wilkerson
have a similar environment except that we also run the db server locally. We do, of course commit source code to a central repository. Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting

Re: CFForms/XML format suddenly giving error messages

2006-11-12 Thread Rob Wilkerson
On 11/12/06, Mike Kear [EMAIL PROTECTED] wrote: [quote] javax.xml.transform.TransformerConfigurationException: javax.xml.transform.TransformerException: org.xml.sax.SAXParseException: Content is not allowed in prolog. [/quote] I've checked all the obvious things - looked for files that

Re: Source control recommendation

2006-11-12 Thread Rob Wilkerson
On 11/12/06, Nick Gleason [EMAIL PROTECTED] wrote: Hi there. We've been hosting our source code in VSS in the past but are considering moving to a new source control system and / or provider. We are basically interested in paying an affordable monthly fee to use a well regarded source

Re: Code Question

2006-11-12 Thread Rob Wilkerson
On 11/12/06, Rick Root [EMAIL PROTECTED] wrote: Robertson-Ravo, Neil (RX) wrote: I don't really use keyboard shortcuts other than ctrl-s, x, v, and c. I even use alt keys to access menu items... ALT-F, O to open files.. ALT-S,E for Extended Find/Replace (which can also be accessed via

Re: Code Question

2006-11-12 Thread Rob Wilkerson
On 11/12/06, Rick Root [EMAIL PROTECTED] wrote: Rob Wilkerson wrote: I don't understand why the use of keyboard shortcuts is hindering your adoption of CFEclipse. I'm also a keyboard shortcut junkie and CF/Eclipse offers me every bit of functionality I could ask for. And it's just

Re: FW: CFGURU: RegEx help (easy one)

2006-11-10 Thread Rob Wilkerson
*TemplateBeginEditable\s+name\s*=\s*[a-zA-Z]+\s*--/ HTH. Rob ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door four times a year. http

Re: CFXML tag: Not well-formed xml output.

2006-11-10 Thread Rob Wilkerson
-Original Message- From: Walter Conti [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 3:21 PM To: CF-Talk Subject: CFXML tag: Not well-formed xml output. A nudge in the right direction. The following code produces this error: The markup in the document following the

Re: Cleaning XML - Unicode 0x0

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Josh Nathanson [EMAIL PROTECTED] wrote: Yup, that's the first thing I tried...when it didn't work I posted here hoping for further guidance. Is the null character in your data or in the XML itself somehow? If the former, then I think CDATA may be the way to go. It's a good idea to

Re: Cleaning XML - Unicode 0x0

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Josh Nathanson [EMAIL PROTECTED] wrote: Thanks for your help Rob. I just don't know which field is the culprit as far as the null character (there's no description field or anything obvious like that), and I'm hesitant to CDATA every single field that's going into the db, unless

Re: Cleaning XML - Unicode 0x0 SOLVED sorta

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Josh Nathanson [EMAIL PROTECTED] wrote: Yes it's non scalable...but, since the data is not going into the database as xml, just plain old form fields, I can't use CDATA on the way in anyway, correct? I would have to run the same regex on each of the incoming form fields that are

Re: Cleaning XML - Unicode 0x0 SOLVED sorta

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Matt Quackenbush [EMAIL PROTECTED] wrote: Josh, I think the point that Rob and others were making is that your data should be validated and cleaned up BEFORE being inserted into the database - whether it's inserted as XML or not is completely and utterly irrelevant. That's

Re: Cleaning XML - Unicode 0x0 SOLVED sorta

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Josh Nathanson [EMAIL PROTECTED] wrote: Maybe I can summarize: 1) CDATA is not helpful when encountering control characters. True. Does lead you to wonder, though, how they're sneaking in there. Folks don't just type in null characters... 2) Thus, I have to use rereplace with

Re: Cleaning XML - Unicode 0x0 SOLVED sorta

2006-11-07 Thread Rob Wilkerson
On 11/7/06, Josh Nathanson [EMAIL PROTECTED] wrote: Hey Rob, True. Does lead you to wonder, though, how they're sneaking in there. Folks don't just type in null characters... It leads me to wonder allright!! Maybe forms autofill or something? I wish I had an answer for you. It's gotta

Re: Cleaning XML - Unicode 0x0

2006-11-06 Thread Rob Wilkerson
On 11/6/06, Josh Nathanson [EMAIL PROTECTED] wrote: Hey all, I've got a script that uses cfxml to create an xml object from data taken from a db. Occasionally control characters sneak into the database and break the xml when I try to do the output. I've been able to use rereplace to clean

Re: Cleaning XML - Unicode 0x0

2006-11-06 Thread Rob Wilkerson
On 11/6/06, Josh Nathanson [EMAIL PROTECTED] wrote: Don't know whether it'll work for you, but the regex I've used successfully is REReplace ( mystring, '\s*', '', 'ALL' ). It clears any whitespace between tags themselves. No dice, apparently whitespace is not the problem...anyone else?

Re: Cleaning XML - Unicode 0x0

2006-11-06 Thread Rob Wilkerson
That should be the NULL character. Try adding #chr(0)# to your regex. On 11/6/06, Josh Nathanson [EMAIL PROTECTED] wrote: Thanks Rob. It's data from a shopping cart orders database, the data is not captured as XML - it would be kind of overkill to wrap the several dozen incoming fields

Re: CFHTTP, SSL and Certificates (Obligatory Oh My)

2006-11-02 Thread Rob Wilkerson
except this - which I'll try in the morning when I get back into the office... Let you know how I get on -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: 01 November 2006 16:29 To: CF-Talk Subject: Re: CFHTTP, SSL and Certificates (Obligatory Oh

Re: Calling a function on a regex backreference

2006-11-02 Thread Rob Wilkerson
On 11/2/06, Ryan Mitchell [EMAIL PROTECTED] wrote: Hopefully this should be an easy and quick answer. I want to call a function on a regex backreference, ie: REreplace(string,regex,function('\1'),'ALL'); is this possible? I've tried every imaginable combination to make it work, and its

Re: Calling a function on a regex backreference

2006-11-02 Thread Rob Wilkerson
On 11/2/06, Ryan Mitchell [EMAIL PROTECTED] wrote: hmm, see that wouldn't work. im looping through a string, replacing emails with an obfuscated/hidden version of the email address... so i need to call the function directly... If context is important, try posting a larger snippet. Maybe that

Re: Calling a function on a regex backreference

2006-11-02 Thread Rob Wilkerson
Peter is right. Now that I see what you're trying to do, I don't think it can be done in CF. I'm don't think it can be done in Java, either. To perform multiple actions within a single string (which you're doing since you're assuming multiple matches), you'll need to use REFind() and loop over

Re: Calling a function on a regex backreference - SOLVED

2006-11-02 Thread Rob Wilkerson
On 11/2/06, Ryan Mitchell [EMAIL PROTECTED] wrote: wonderful... the java solution worked a treat! thanks! Would you mind posting the final code? I'd like to see how that operates. Thanks. ~| Introducing the Fusion Authority

Re: CFHTTP, SSL and Certificates (Obligatory Oh My)

2006-11-02 Thread Rob Wilkerson
://www.controller.jhu.edu/staff/phone_book/phone_co.jsp I'd like to ensure that it's not my environment. Or, if it is my environment, try to understand why my environment is causing me so many headaches. Thanks. Rob

Re: url variables

2006-11-02 Thread Rob Wilkerson
This should do it: isDefined ( 'URL[task 1]' ) On 11/2/06, Richard White [EMAIL PROTECTED] wrote: hi, i have a page that submits values to a form as follows: var sendString = rowNum= + taskGrid.getRowsNum(); for (i=1;i=taskGrid.getRowsNum();i++) { sendString = sendString + Task + a += +

CFHTTP, SSL and Certificates (Obligatory Oh My)

2006-11-01 Thread Rob Wilkerson
easily be screwing up the import process, but I'm at a loss for how I might be doing that since other sites appear to work as expected. The URI I'm trying to import is https://www.controller.jhu.edu/staff/phone_book/phone_co.jsp It can be accessed directly, of course. Thanks very much. Rob

Re: CFHTTP, SSL and Certificates (Obligatory Oh My)

2006-11-01 Thread Rob Wilkerson
On 11/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: What version of CF? MX 7.0.2 What error message are you getting... There is no error message beyond the Status code unavailable error returned by the CFHTTP call. Nothing in any log file. you said other HTTPS sites are working - I'm

Re: best practices for encryption

2006-10-30 Thread Rob Wilkerson
On 10/30/06, daniel kessler [EMAIL PROTECTED] wrote: How do you read something that is above web root? And to destroy it, do you just stick it in a var then overwrite the var with cfset myvar = '' when done? Using CFFILE and supplying an absolute path. The content of the file is simply the

Re: URL for CF7 Multi-Server configurations

2006-10-27 Thread Rob Wilkerson
I prefer Apache for a lot of reasons, but I've never done any benchmarking and can't say with any certainty whether it's faster. I mostly know that it's FAR more extensible and configurable and that makes my life much easier. On 10/27/06, Dave Hatz [EMAIL PROTECTED] wrote: Apache on a Win Box

Re: CF Wiki

2006-10-27 Thread Rob Wilkerson
On 10/27/06, Jason Manaigre [EMAIL PROTECTED] wrote: Hi everyone, I'm not being lazy, searching for wiki brings up tones of actual wikis, what I want to know is there a good wiki software package for CF freeware or commercial? At work here, we're all MS so far, but the boss wants to explore

Re: URL for CF7 Multi-Server configurations

2006-10-27 Thread Rob Wilkerson
On 10/27/06, Eric Haskins [EMAIL PROTECTED] wrote: I with Russ on this one. I came to work here and it was a windows only shop as of right now I have migrated alot over to RH4 with apache. I also have Apache on windows and we are super impressed with its functionality. One of the big concerns

Re: REReplaceNoCase

2006-10-26 Thread Rob Wilkerson
Yep, that should work. Assuming #context# is a variable string containing HTML and you're setting the return value int a variable: cfset context = REReplaceNoCase(context,[^]*,,ALL) / Is it stripping no HTML, some HTML? Is it erroring? On 10/26/06, Les Irvin [EMAIL PROTECTED] wrote: Dang,

Re: Good Linux books

2006-10-26 Thread Rob Wilkerson
-Original Message- From: Doug Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, October 26, 2006 5:36 PM To: CF-Talk Subject: OT: Good Linux books Hi all..There is so many books out there, I thought I would ask the group if anyone can recommend a good one. I have never used

Re: FireFox 2 Download help

2006-10-25 Thread Rob Wilkerson
On 10/25/06, Adrian [EMAIL PROTECTED] wrote: works fine for me... On 25/10/06, Ben Nadel [EMAIL PROTECTED] wrote: Hey all, I keep trying to download FireFox 2, but the link never works: http://mozilla2.mirrors.tds.net/pub/mozilla.org/firefox/releases/2.0/win

Re: URL for CF7 Multi-Server configurations

2006-10-25 Thread Rob Wilkerson
On 10/25/06, Russ [EMAIL PROTECTED] wrote: I'm not really sure... I don't use CF with IIS. I prefer apache, where you can plainly see your configuration at a glance. Maybe if you run wsconfig you can see it there? Russ Look on your start menu. You should see a Macromedia program group.

Re: URL for CF7 Multi-Server configurations

2006-10-25 Thread Rob Wilkerson
On 10/25/06, Dave Hatz [EMAIL PROTECTED] wrote: Do you run Apache on Win box? Yes. And Linux, and mac (OS X), and Solaris. :-) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: XML Question...

2006-10-25 Thread Rob Wilkerson
Just out of curiosity, what about using cfxml? It's a much more readable method of creating an XML doc, IMO. On 10/25/06, Charles E. Heizer [EMAIL PROTECTED] wrote: Hello, So I'm playing with creating a xml file but I'm not sure what I'm doing wrong. The problem is that it's only displaying

Re: XML Question...

2006-10-25 Thread Rob Wilkerson
On 10/25/06, Charles E. Heizer [EMAIL PROTECTED] wrote: What is cfxml? Just another CFML tag. http://www.cfquickdocs.com/?sourceid=cfQDSearch1.02getDoc=cfxml ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: REGEX help

2006-10-24 Thread Rob Wilkerson
On 10/23/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: That's not anal OR picky. It won't work without it. I understand the technicalities, just as I'm sure Nathan does. I was making fun of both of us for making the same mistake - laziness and/or haste - in different ways.

Re: REGEX help

2006-10-24 Thread Rob Wilkerson
On 10/24/06, Bobby Hartsfield [EMAIL PROTECTED] wrote: I was too ;-) I hear you. Glad someone's keeping me on my toes. :-) ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion

Re: URL for CF7 Multi-Server configurations

2006-10-24 Thread Rob Wilkerson
separate machines - one running an IIS webserver and the other running Apache. All of them run on port 80. Rob Wilkerson On Oct 24, 2006, at 6:47 PM, Dave Hatz wrote: I set up multiple instances of CF7 Server. Each Instance is using a different port to listen on. So, don't I need to tell

Re: CFMXE7: controlling Verity

2006-10-23 Thread Rob Wilkerson
is seeing this or, at the very least, no one understands it any better than I do. If you have any insight or discover any new information, please share. Thanks. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update

Re: REGEX help

2006-10-23 Thread Rob Wilkerson
Try \barchitect\b. Of course, replace architect with the keyword that was entered. the \b marks word boundaries. Rob Wilkerson On Oct 23, 2006, at 6:44 PM, Jake Churchill wrote: I'm not really good with regexes so I need some help here. I have a simple search page which searches

Re: REGEX help

2006-10-23 Thread Rob Wilkerson
that was going to be picky, but Nathan's right. You need all that other stuff to do anything useful. I was lazier than I should have been in my initial response. Rob Wilkerson On Oct 23, 2006, at 8:21 PM, Nathan Strutz wrote: If you're trying to highlight the word architect, using rob's

Re: Changed CGI.REQUEST_URI behaviour with CF7/Apache - A Solution

2006-10-19 Thread Rob Wilkerson
. Is this documented anywhere? I couldn't find anything. I believe I even posted the question to the list, but got no response. This information must be buried pretty deep. Thanks. Rob Wilkerson On Oct 18, 2006, at 10:08 PM, James Holmes wrote: Those who have upgraded their Apache 2 CF servers

Re: Compare the content two files.

2006-10-19 Thread Rob Wilkerson
When you retrieve it, store the value of the last-modified header. When you retrieve it the next time, pass the if-modified-since request header. That's what I do with a feed aggregator I wrote and it works great. You could also look at the ETag value. Rob Wilkerson On 10/19/06, Ian Skinner

Re: cfadmin 404 with apache

2006-10-18 Thread Rob Wilkerson
On Oct 17, 2006, at 10:50 PM, Doug Brown wrote: Ok, now I have it to the point where it can find the administrator/index.cfm, but it wants to download it instead of run it. Man I should have known apache was going to be a pain in the arse for someone who never used it... I understand

Re: connector error redhat linux es 3 and apache

2006-10-18 Thread Rob Wilkerson
On 10/18/06, alex poyaoan [EMAIL PROTECTED] wrote: HI can somebody help me with this.. tried installing coldfusion on redhat linux es 3 with apache as web server it installs fine but when i load it there's always this connector error problem.. tried all the instructions of macromedia and

Re: cfadmin 404 with apache

2006-10-18 Thread Rob Wilkerson
#JRunConfig ConnectTimeout 15 #JRunConfig RecvTimeout 300 #JRunConfig SendTimeout 15 AddHandler jrun-handler .jsp .jws .cfm .cfml .cfc .cfr .cfswf /IfModule Hope this helps. On 10/18/06, Doug Brown [EMAIL PROTECTED] wrote: Rob, I (was) using apache version 2.23 and when I could never get

Re: cfadmin 404 with apache

2006-10-18 Thread Rob Wilkerson
Can you send you JRun module block like I did earlier? That might help. On 10/18/06, Doug Brown [EMAIL PROTECTED] wrote: Nope, still want to open the Admin in homesite...Weird My apache error log [Wed Oct 18 06:09:48 2006] [notice] jrApache[2412: 30468] Server has not been properly

Re: Stupid apache question

2006-10-17 Thread Rob Wilkerson
The configuration directory is the directory in which your httpd.conf file is located. It's typically apache install root/conf/. Rob Wilkerson On Oct 16, 2006, at 9:52 PM, Doug Brown wrote: Well, it is a stand alone dev machine and I have apache installed. I used the wsconfig and am

Re: Apache, IE cgi.http_referer

2006-10-17 Thread Rob Wilkerson
On 10/17/06, Richard Cooper [EMAIL PROTECTED] wrote: I've a system that relies quite heavily on CGI.SERVER_NAME. Is there a more robust an alternative to this? I prefer to use CGI.HTTP_HOST. In Apache - at least with 1.3 a few years ago - CGI.SERVER_NAME returned the value in the ServerName

Re: Stupid apache question

2006-10-17 Thread Rob Wilkerson
On 10/17/06, Rob Wilkerson [EMAIL PROTECTED] wrote: The configuration directory is the directory in which your httpd.conf file is located. It's typically apache install root/conf/. Rob Wilkerson On Oct 16, 2006, at 9:52 PM, Doug Brown wrote: Well, it is a stand alone dev machine and I

Re: cfadmin 404 with apache

2006-10-17 Thread Rob Wilkerson
this is windows 2000 adv svr In this case, it looks like your problem might be the backslash (\). Even on Windows, Apache likes forward slashes in your paths. You can often get away with backslashes if your path is quoted, but forward slashes are safer, I think. Rob Wilkerson

Re: cfadmin 404 with apache

2006-10-17 Thread Rob Wilkerson
That's a completely different error, so I'm a little confused. But, back to this question...is the CFIDE directory in your web root? Are you using virtual hosts? On Oct 17, 2006, at 8:09 PM, Doug Brown wrote: Rob, Thanks for the reply. I think the problem was that I was using apache

Re: cfadmin 404 with apache

2006-10-17 Thread Rob Wilkerson
Okay, that may be helpful. Are you running multiple sites on this server (via virtual hosts) or just one site? Rob Wilkerson On Oct 17, 2006, at 8:32 PM, Doug Brown wrote: Rob When I installed MX it asked where my web root was and I had made a directoy of d:\webroot The CFIDE

Re: Convincing CF to process xml files

2006-10-16 Thread Rob Wilkerson
Maybe I'm missing something here, but why does CF have to process this file? Why not write the XML file to your web root (or any other URI-accessible location) and then let the web server handle it? -- Rob Wilkerson On 10/16/06, James Smith [EMAIL PROTECTED] wrote: I don't know anything

Re: Convincing CF to process xml files

2006-10-16 Thread Rob Wilkerson
On 10/16/06, James Smith [EMAIL PROTECTED] wrote: Why does it have to be a .xml document? If it is a .cfm and it is strict or transitional then CF will run the code. What does the the extention matter? Because, as I said, it is providing information to a third party, and they require

Re: Convincing CF to process xml files

2006-10-16 Thread Rob Wilkerson
On 10/16/06, James Smith [EMAIL PROTECTED] wrote: Any chance you're using Apache? This would be a perfect exercise for mod_rewrite. If not, maybe one of the IIS implementations. Any of those should be able to handle it. IIS is passing the file over to CF but CF is then refusing to do

<    1   2   3   4   5   6   7   8   9   10   >