Re: SOT: SSH Client for Mac (Equivalent to WinSCP)

2007-06-21 Thread Rob Wilkerson
On 6/20/07, Aaron Roberson <[EMAIL PROTECTED]> wrote: > Does anybody on this list know of a good equivalent to WinSCP for the Mac? > I've been using Macfuse with MacFusion for several months now and it's been great. Having the external file system mounted directly provides convenient access. ~~~

Re: RegEx to find a date in a string

2007-05-03 Thread Rob Wilkerson
Try: \b\d{4}-\d{2}-\d{2}\s+d{2}:\d{2}:\d{2}\.\d\b There's no validation built-in and no "intelligence", but if you just need a basic pattern match that should do (untested). The leading and trailing "\b" just make sure that the pattern is bracketed by non-word characters and not part of some grea

Re: Strange CF Problem on Fedora Linux

2007-04-25 Thread Rob Wilkerson
I've never seen this on various flavors of Linux or XP. Do your apache logs offer any hints? When you view source, is it just blank? On 4/25/07, Russ <[EMAIL PROTECTED]> wrote: > Rob, > > I have the same thing happening to me on Windows XP from time to time. I'm > not sure what causes it, I thi

Re: More questions on RSS

2007-04-22 Thread Rob Wilkerson
Probably. Typically, the URI is used as the GUID for RSS feeds (although that's not a requirement and may be different for other feed formats). How aggregators handle URI changes often differs, but I think most factor in the URI significantly (at least those I'm aware of). You'll probably be sen

Re: SOT: BlogCFC Error

2007-04-11 Thread Rob Wilkerson
11/07, James Holmes <[EMAIL PROTECTED]> wrote: > Make sure the filesystem allows you to write to the folder in which > the image is being written. Check what's returned by > getFileLocation(). > > On 4/12/07, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > > Hey all

SOT: BlogCFC Error

2007-04-11 Thread Rob Wilkerson
Hey all - It's getting late and I'm getting frustrated/desperate. I'm trying to get BlogCFC installed on a Linux box running CFMX 7. Everything's running fine (as far as I can tell so far) except for CAPTCHA. When I launch the window to add a comment the image is broken. When I call the CAPTCH

Re: CFXML - What am I doing wrong

2007-04-06 Thread Rob Wilkerson
Either use XMLFormat() or wrap dynamic data in a CDATA block: I prefer the latter simply because it's native XML and doesn't perform any conversion of my data. Either should work perfectly well, though. On 4/6/07, Joel Watson <[EMAIL PROTECTED]> wrote: > Can somebody tell me what's wrong with

Re: CFusionMX7 IIS XP instalation problems...

2007-03-30 Thread Rob Wilkerson
It's not really that bizzare. As I mentioned, a lot of AV software closes off all ports and then only opens the ones you specify (some common ports are open by default). The port you needed (5100, I think?) wasn't open by default so the connector wouldn't respond. You should be able to open that

Re: CFusionMX7 IIS XP instalation problems...

2007-03-30 Thread Rob Wilkerson
Try turning off your anti-virus, if you have one, and reinstalling. A lot of anti-virus software shuts down some useful ports by default. On 3/30/07, Paul Ihrig <[EMAIL PROTECTED]> wrote: > i am trying to install E:\CFusionMX7 > have manually mapped the .cfm et. to > E:\CFusionMX7\runtime\lib\wsc

Re: Regex

2007-03-27 Thread Rob Wilkerson
Maybe, but I'm telling you...once you make the leap and "get it" you'll never go back. I think regex might be the single greatest development tool ever devised. :-) On 3/27/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Oh the lengths I'll go to in order to avoid writing a regex. > > > >

Re: Regex

2007-03-27 Thread Rob Wilkerson
If you just want to extract a list of the numbers, you can just clear all of the non-numeric characters: The regex was tested, not the CF syntax. :-) On 3/27/07, Richard Cooper <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm really not very good with regex, but I need to extract a list of > mem

Re: CF (VMWare ESX Server Vs Physical Hardware)?

2007-03-25 Thread Rob Wilkerson
Are they offering you a significant savings? I agree with Jim that virtualization works great - at least in my dev environments (I've never used it in production), but I'm not sure I'd move off of a physical server to a VM without some sort of incentive. Especially if CF isn't fully supported in

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'

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). > > -- &

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 css?

SOT: Getting Started with Flex

2007-03-23 Thread Rob Wilkerson
costs. Anyone willing 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/fle

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. > > checked

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: J

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: 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

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: 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 l

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

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: > > > >

Re: cfhttp/xml help

2007-03-18 Thread Rob Wilkerson
sues I had 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... > > /> > > This code strips out any cha

Re: cfhttp/xml help

2007-03-18 Thread Rob Wilkerson
of "". 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

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.

Re: Looking for a good IIS URL rewriting plugin

2007-03-15 Thread Rob Wilkerson
I've used this one in the past and found it pretty decent. It's not as polished or as fully featured as the Apache implementation, of course, but the regex support is strong so it should handle most needs. And it's free (which is why I used it). http://www.iismods.com./url-rewrite/index.htm Rob

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 d

Re: Password Protect My DSN

2007-03-14 Thread Rob Wilkerson
Absolutely. I'm not a security hawk and tend not to get too out of control with locking things down, but I do like to create a user with only those privileges required to execute the application functionality (and, of course, only the database or databases required by the app). I then supply that

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 > dire

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 leve

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

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 somet

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: 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: > > > > T

Re: ORM Question

2007-02-20 Thread Rob Wilkerson
Thanks, all. Since I saw no evidence that either tool would do this, I thought I'd ask, but since I also didn't see any evidence with Hibernate...well, it does it, maybe other tools just don't market that capability either. I guess that's not the case. Nick, I'll definitely look at the interview

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 litt

ORM Question

2007-02-20 Thread Rob Wilkerson
ons extensively. 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 & cr

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: There is no tag, of course, but it's meant to be illustrative. ColdFusion doesn't make that distinction, however. I never found a way around this. On 2/15/

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 ha

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 permis

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 informa

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 d

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 backg

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. > >

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 s

Re: Mixing CF and JavaScript.

2006-11-14 Thread Rob Wilkerson
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
ubversion to commit > changes to our central repository. We 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 ~| Introduci

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

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 v

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 c

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

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 follow

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

2006-11-10 Thread Rob Wilkerson
On 11/10/06, Mark A Kruger <[EMAIL PROTECTED]> wrote: > Sorry for the double post (I put this on another list) I need some regext > help. > > _ > > Ok.. I got it (sort of)... > > I need the expression part to allow for letters, numbers, spaces and > quotation marks Can someone give me tha

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

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 w

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: > > 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 tha

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, unl

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

Re: Cleaning XML - Unicode 0x0

2006-11-06 Thread Rob Wilkerson
or whatever. > > -- Josh > > > - Original Message - > From: "Rob Wilkerson" <[EMAIL PROTECTED]> > To: "CF-Talk" > Sent: Monday, November 06, 2006 4:07 PM > Subject: Re: Cleaning XML - Unicode 0x0 > > > > On 11/6/06, Josh Nathans

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...a

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 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 "cle

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 +

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

2006-11-02 Thread Rob Wilkerson
On 11/2/06, Kola Oyedeji (E-mail) <[EMAIL PROTECTED]> wrote: > Well that did the trick! > > I was reluctant to start updating the JVM given nothing had changed > (including the third parties certificate) - however I did install a new JVM > (1.4.2_09) on the machine *but didn't set ColdFusion to use

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: 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 e

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

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, > a

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

2006-11-02 Thread Rob Wilkerson
s post: > > > > > http://www.talkingtree.com/blog/index.cfm?mode=entry&entry=25AA75A4-45A6-284 > > 4-7CA3EECD842DB576 > > > > There is possibly a bug with the version of the JVM 1.4.2-b28. I've tried > > everything except this - which I'll try in

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 workin

CFHTTP, SSL and Certificates (Obligatory "Oh My")

2006-11-01 Thread Rob Wilkerson
;m not above admitting that I could 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

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 > when done? Using CFFILE and supplying an absolute path. The content of the file is simply the value of the

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 co

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 exp

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: 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

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: ]*>","","ALL") /> Is it stripping no HTML, some HTML? Is it erroring? On 10/26/06, Les Irvin <[EMAIL PROTECTED]> wrote: > Dang, I'm confused. Will this function s

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.02&getDoc=cfxml ~| Introducing the Fusion Authority Quarterly Update. 80 pages of

Re: XML Question...

2006-10-25 Thread Rob Wilkerson
Just out of curiosity, what about using ? 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 dn

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 ColdF

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 gro

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 > > 32/en-US/F

Re: URL for CF7 Multi-Server configurations

2006-10-24 Thread Rob Wilkerson
n two 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&

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 ColdFusio

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-23 Thread Rob Wilkerson
you 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,

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

Re: CFMXE7: controlling Verity

2006-10-23 Thread Rob Wilkerson
rom the lack of response I've gotten, no one else 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

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 Sk

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

2006-10-19 Thread Rob Wilkerson
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

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: cfadmin 404 with apache

2006-10-18 Thread Rob Wilkerson
Check the AddHandler directive within your jrun20.so block. This is the JRun-specific config data for my installation (Apache 2.0.58 on WinXP): LoadModule jrun_module "D:/macromedia/jrun4/lib/wsconfig/1/mod_jrun20.so" JRunConfig Verbose false JRunConfig Apialloc false JRunConfig Ssl

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

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 unders

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:\we

Re: cfadmin 404 with apache

2006-10-17 Thread Rob Wilkerson
as that I was using > apache 2.23 I > installed 2.0.59 and now I am just getting a CF error saying that > it cannot > find /CFIDE/administrator/index.cfm. Any ideas on this? > > > > - Original Message - > From: "Rob Wilkerson" <[EMAIL PROTECTED]&

Re: cfadmin 404 with apache

2006-10-17 Thread Rob Wilkerson
Any ideas on this one? > Again > 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

  1   2   3   4   >