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 /conf/. > > Rob Wilkerson > > > > On Oct 16, 2006, at 9:52 PM, Doug Brown wrote: > > > Well

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 ServerNa

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 /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 h

Re: Stupid apache question

2006-10-16 Thread Rob Wilkerson
ldfusion apache connector" should yield some results), but it's not difficult. Are you running CF in a standalone configuration so that any/all virtual sites will run off of the same CF service or do you have a more sophisticated config? Rob Wilkerson On Oct 16, 2006, at

Re: Stupid apache question

2006-10-16 Thread Rob Wilkerson
er. That value is applied as the ServerName in your httpd.conf. It can be changed easily enough. Even in a dev scenario, you're probably going to access the server by some name. If you're dev situations are anything like mine then you'll set up multiple virtual sites (Vi

Re: Dynamically creating and assigning session variables

2006-10-16 Thread Rob Wilkerson
On 10/16/06, Dave Hoff <[EMAIL PROTECTED]> wrote: > Thanks Rob. I'll try and paste the entire code below. > > for(i=1; i LTE getTopLevel.recordset.recordcount; i=i+1) > { > tempName = getTopLevel.recordset.name[i]; > tempCFC = "gateway.imified.apps."

Re: Dynamically creating and assigning session variables

2006-10-16 Thread Rob Wilkerson
On 10/16/06, Dave Hoff <[EMAIL PROTECTED]> wrote: > I'm sure this isn't best practice, but I'm working with the "menu" event > gateway example that ships with CF7 and I'm trying to generate the menu from > a database replacing the hard-coded menu that is there. The menu is stored in > a session

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

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

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

Re: Know a Good SQL Forum ?

2006-10-14 Thread Rob Wilkerson
I've used dbforums.com in the past and had pretty good experiences. Rob Wilkerson On Oct 12, 2006, at 9:27 AM, [EMAIL PROTECTED] wrote: > Does anyone know a good SQL, SQL Server 2000 forum? > >

Re: IDE's

2006-10-11 Thread Rob Wilkerson
On 10/11/06, Gaulin, Mark <[EMAIL PROTECTED]> wrote: > I use several IDEs (include CFE), and you're right about the HomeSite/CF > Studio extended search & replace being excellent... I'm going to keep > that program around until someone writes one for Eclipse. I hope this doesn't start some crazy t

Re: OT: CSS UL?

2006-10-11 Thread Rob Wilkerson
On 10/11/06, Adkins, Randy <[EMAIL PROTECTED]> wrote: > Okay for all the CSS gurus: > > How can I make a UL tag use less spacing overhead. > > When you use a UL tag, it creates a good size space in between the > previous line to the First LI element. > How can I reduce that? margin: 0; That shoul

Re: RSS + CF

2006-10-11 Thread Rob Wilkerson
On 10/11/06, Tom King <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm looking for some code to create RSS feeds from a DB output (i.e > news , you know the sort of thing) > Ideally I'm looking for something which will let me specify a query > and then output the contents into a flat XML file, preferab

Re: Null with cfqueryparam

2006-10-09 Thread Rob Wilkerson
You can definitely do that. I do it all the time. The error indicates that the field doesn't exist at all. Is it a checkbox or a radio button group? On Oct 9, 2006, at 6:26 PM, Les Mizzell wrote: > I thought you could do the below to pass a null value if the user > didn't > enter anythin

Re: CFHTTP Authentication

2006-10-04 Thread Rob Wilkerson
On 10/4/06, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Rob Wilkerson wrote: > > > > I'm trying to retrieve an RSS feed from an Apache web server. The > > feed is secured by htdigest authentication. My CFHTTP call is failing > > even with the userna

CFHTTP Authentication

2006-10-04 Thread Rob Wilkerson
st? Is it simply the encrypted storage? 2. Is there any way to access these feeds via cfhttp? Thanks. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion infor

CFMX7 Search Service Won't Start

2006-09-28 Thread Rob Wilkerson
t;that would give me a good place to start debugging. > >Thanks. The error message appears in my System Event Viewer after a reload and, as indicated, the search service isn't started. Thanks again. -- Rob Wilkerson

Re: regexp help

2006-09-27 Thread Rob Wilkerson
removed must be at the end of the string you want to use: I varied Ben's regex slightly, but the gist is still there. The key difference is that the "$" forces the match to appear at the *end* of the string, not anywhere in the string. -- Rob Wilkerson On 9/27/06, Ray Champ

Re: RewriteRule and REQUEST_URI

2006-09-27 Thread Rob Wilkerson
On 9/27/06, Teddy Payne <[EMAIL PROTECTED]> wrote: > mod_rewrite is an Apache mod, correct? It would good to point out that IIS > also has an ISAPI that does rewriting as well. > Good point, Teddy. There are several third-party ISAPI filters that offer similar functionality, but IIS has no nativ

Re: RewriteRule and REQUEST_URI

2006-09-27 Thread Rob Wilkerson
SA,PT] Now I can access #CGI.MY_REQUEST_URI# to retrieve the original URI without worrying about what ColdFusion provides. More testing will be done, but it looks pretty solid as far as I can tell. Thanks again. -- Rob Wilkerson On 9/27/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: &g

Re: RewriteRule and REQUEST_URI

2006-09-27 Thread Rob Wilkerson
problem before. Thanks again. -- Rob Wilkerson On 9/26/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > Yeah, I can do thqt, but if the original URI contains, for example, > an ampersand (e.g. /path/to/My Resume & Cover Letter.doc) then > nothing works. I was hoping to pass i

Re: RewriteRule and REQUEST_URI

2006-09-26 Thread Rob Wilkerson
gt; Hmm... not sure if you'll be able to get the original url into > request_uri, > but you should be able to append it as a parameter > > RewriteRule ^/(.*) /my/landingpage.cfm?url=$1 [PT] > > > Something like that should work. > > Russ > > >> -O

RewriteRule and REQUEST_URI

2006-09-26 Thread Rob Wilkerson
e had this problem and or gotten around it? My RewriteRule looks like this: RewriteRule ^/(.*) /my/landingpage.cfm [PT] When I display #GCI.REQUEST_URI#, though, I get "/my/landingpage.cfm". -- Rob Wilkerson ~|

Re: best practices for encryption

2006-09-25 Thread Rob Wilkerson
I recently had the same situation come up and ended up choosing the security-by-obscurity approach. I generated a key as you did and stored it in a file outside of the web root. I read the key as needed and destroy it to keep it out of memory. I'd be interested in how others handled this

Re: Passing ColdFusion Arrays By Reference

2006-09-19 Thread Rob Wilkerson
On 9/19/06, Robertson-Ravo, Neil (RX) <[EMAIL PROTECTED]> wrote: > Lol...do you have to comment any references to it as " Pure sexyness."? > You don't *have* to, but it's strongly encouraged. ~| Introducing the Fusion Authority

XMLValidate() and ENTITY declarations

2006-09-19 Thread Rob Wilkerson
uot;"icon"". The DTD includes: snip ... Am I applying it wrong or is CF not handling it properly? If I replace "%perms;" with "(READ|WRITE|ADMIN)" it works exactly as expected. TIA. -- Rob Wilkerson ~~~

Re: upgradeing jar file in coldfusion server

2006-09-11 Thread Rob Wilkerson
Should be as simple as installing the 1.5.0 JRE and pointing your jvm config's java.home value to the install directory (the parent directory of /bin, if memory serves). Be careful, though. I don't believe MX7 officially supports 1.5.0 so results, as they say, may be unpredictable. :-) Been a w

Re: Java/CF Question

2006-09-11 Thread Rob Wilkerson
Exception - in > C:\Inetpub\wwwroot\javaTest.cfm : line 3 > > Unresolved compilation problems: > Unhandled exception type ClassNotFoundException > Unhandled exception type SQLException > > What do I do with those? > > > > -Original Me

Re: Java/CF Question

2006-09-11 Thread Rob Wilkerson
You can put the class file anywhere in your classpath. Your classpath is defined in your jvm.config file in the java.classpath setting. Within a createObject() call, you'd reference the path to the class file from your base path. For example, your classpath points to : e:\path\to\my\classes, but

Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
Wow. I guess it just seemed so counterintuitive (maybe my intuition is faulty) that I never tried to do that. Or maybe I just never had a business case. :-) I agree with Mark, though, that this would be good blog-fodder. On 9/6/06, Dave Watts <[EMAIL PROTECTED]> wrote: > > Do I understand corr

Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
Dave - Do I understand correctly, then, that ColdFusion will allow you to tie multiple CF Servers to a single virtual host using the wsconfig utility? On 9/6/06, Dave Watts <[EMAIL PROTECTED]> wrote: > > Can I configure IIS and coldfusion (in multiserver mode) such > > that a specific *PART* (rea

Re: Multiserver instances and web server configuration

2006-09-06 Thread Rob Wilkerson
No. ColdFusion instances are tied to the web server and, as a result, to the site itself. I don't know any any way to take this to a more granular level. On 9/6/06, Rick Root <[EMAIL PROTECTED]> wrote: > Can I configure IIS and coldfusion (in multiserver mode) such that a > specific *PART* (read

Re: Apache and ASP pages

2006-09-02 Thread Rob Wilkerson
Look at mod_aspdotnet. It's been retired, but the last version is still available here: http://archive.apache.org/dist/httpd/mod_aspdotnet/ On 9/2/06, C. Hatton Humphrey <[EMAIL PROTECTED]> wrote: > On 9/2/06, Matt Williams <[EMAIL PROTECTED]> wrote: > > what's out there to run asp pages on Apac

Re: Parsing an XML Feed

2006-08-31 Thread Rob Wilkerson
Sure. Can you be more specific about your questions? Do you want to know *why* I'm doing something or *what* I'm doing? Do you want a larger snippet, etc.? On 8/31/06, Nick Cappadona <[EMAIL PROTECTED]> wrote: > Hi Rob, > > Do you care to elaborate on that snippet for those of us (possibly only

Re: Parsing an XML Feed

2006-08-24 Thread Rob Wilkerson
ge will not load, I am not getting any error, the page is > redirecting back to the login screen? > > Could it be to do with the cfcache not liking the session variables?? > > -Original Message- > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > Sent: 23 August 2006 17:2

Re: Parsing an XML Feed

2006-08-24 Thread Rob Wilkerson
l not load, I am not getting any error, the page is > redirecting back to the login screen? > > Could it be to do with the cfcache not liking the session variables?? > > -Original Message- > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > Sent: 23 August 2006 17:23 > To

Re: Parsing an XML Feed

2006-08-23 Thread Rob Wilkerson
bout these feeds, do you get these to work for you ? > > http://www.vnunet.com/feeds/rss/latest/all/analysis > > http://www.vnunet.com/feeds/rss/computing > > I am getting the error > > An error occured while Parsing an XML document. > Content is not allowed in prolog.

Re: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
nders. On 8/22/06, Russ <[EMAIL PROTECTED]> wrote: > Hmm... What are the advantages of using this over subclipse? > > > -Original Message- > > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, August 22, 2006 6:39 PM > > To: CF-T

Re: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
lipse? Tortoise is a shell > extension for windows explorer. I don't believe one's been made to > integrate with Eclipse... > > Russ > > > -Original Message- > > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, August 22, 2006 5

OT: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
o get them back. Thanks. -- Rob Wilkerson ~| 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

Re: Parsing an XML Feed

2006-08-22 Thread Rob Wilkerson
Well, I couldn't see anything wrong so I decided to check it out myself and it works just fine for me. I had to remove your proxy info, of course, but the following works just fine: http://www.easycfm.com/syndication/mostviewed.cfm"; method="GET" timeout="15" resolveurl="yes">

Re: RSS feeds and # sign

2006-08-22 Thread Rob Wilkerson
Ben, try using CDATA: See if that makes any difference. On 8/22/06, Ben Nadel <[EMAIL PROTECTED]> wrote: > I am thinking that maybe this is not the error... Even with that line, I get > an error sometimes!!! > > ... > Ben Nadel > www.bennadel.com > > -Original Message---

Re: XML looping problems

2006-08-22 Thread Rob Wilkerson
Sorry, hit "send" too soon. You'll do the same thing with each attribute. There's no way to make an attribute exist if it doesn't exist. You're processing code has to make that adjustment. ~| Intro

Re: XML looping problems

2006-08-22 Thread Rob Wilkerson
ice_atm_locations[i].XmlAttributes.state#,#i# > )> > #locDoc.officelocations.dir_office_atm_locations[i].XmlAttributes.zip#,#i#)> > > > > > I'll try your way tonight. > > Thanks, > > Ray > ====== > Ray Champagne > Senior A

Re: Parsing an XML Feed

2006-08-22 Thread Rob Wilkerson
> > #XMLContent.rss.channel.title.xmlText# > #XMLContent.rss.channel.description.xmlText# > > > index="idx"> > > > href="#XMLContent.rss.channel.item[idx].link.xmlText#">#XMLContent.rss.c > hannel.item[idx].title.xmlText# > > #Para

Re: XML looping problems

2006-08-22 Thread Rob Wilkerson
No, the XML is fine (or, at the very least, the inconsistency won't make it invalid). How are you trying to loop if the name attribute is causing problems? What about just looping over the dir_office_atm_locations nodes? On 8/22/06, Ray Champagne <[EMAIL PROTECTED]> wrote: > I've been given a

Re: Parsing an XML Feed

2006-08-22 Thread Rob Wilkerson
Ian, I've seen feeds that contain non-printing characters that can throw off the XML parsing. For the sake of investigation, try adding this line before you try to parse the XML: This will remove all non-ascii characters from your feed. Not a good thing for general purposes, but it might help

Re: OT: Requirements Gathering/Analysis Software

2006-08-15 Thread Rob Wilkerson
, but that it's no longer available. I tried using it a few > > >years ago, but could never figure out how to get it to work > > >effectively. Or how to work effectively with it, as the case may be. > > > > > >Anyone know of any tools and/or have recommend

Search Server Won't Start

2006-08-15 Thread Rob Wilkerson
my server that would give me a good place to start debugging. Thanks. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, deliver

OT: Requirements Gathering/Analysis Software

2006-08-14 Thread Rob Wilkerson
ffectively with it, as the case may be. Anyone know of any tools and/or have recommendations for such a thing? Thanks. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date

Re: Fedora vs. RedHat

2006-08-09 Thread Rob Wilkerson
This is the key. I've begun moving *away* from "supported" platforms in many cases because in so many cases the user/community support for a similar, but "unsupported" platform is *so* much better than corporate support. For whatever reason, this has worked out really well for me and my experienc

Re: Fedora vs. RedHat

2006-08-08 Thread Rob Wilkerson
Given your choices, I'd vote for Fedora. RH9 is pretty old by now and no longer supported, I believe, having been phased out by the Enterprise Linux (EL) and Advanced Server (AS) products. Fedora is, at the risk of oversimplification, the testing ground for Redhat's supported Linux versions (the

Re: OT: tortoise svn and eclipse

2006-08-08 Thread Rob Wilkerson
used this? Any reviews? -- Rob Wilkerson ~| 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://www.fusio

Re: OT: tortoise svn and eclipse

2006-08-08 Thread Rob Wilkerson
I'm new to each of these myself, but my understanding is that TortoiseSVN is a Windows Explorer plugin. Any functionality you're getting within other applications is a (potentially) happy accident. For Eclipse, the "proper" plugin is Subclipse. On 8/8/06, Kris Jones <[EMAIL PROTECTED]> wrote: > H

Re: CF, XML Default namespace, and XPath bug

2006-07-20 Thread Rob Wilkerson
Use local-name(). That ignores the namespace declaration: ... On 7/20/06, Kervin L. Pierre <[EMAIL PROTECTED]> wrote: > Hello, > > We have been dealing with this issue off-and-on for a > few months now so I really hope someone has some > insight to this issue for us. > > We've noticed that if

Re: Form.fieldnames doesn't contains all form field names?

2006-07-19 Thread Rob Wilkerson
Are any of the form fields disabled at the time they're submitted? Disabled fields won't show up either, if I remember correctly. On 7/19/06, Charlie Griefer <[EMAIL PROTECTED]> wrote: > hmm... any specific characteristics consistent to the fields that did > -not- appear? > > On 7/19/06, Andy Matt

Re: OT: Microsoft Virtual PC / Should I be interested, or not?

2006-07-14 Thread Rob Wilkerson
I use VMWare and *love* it. It gives me a nicely self-contained environment for trying anything and everything that might destroy the system. If it does, then rolling back is easy if you've planned ahead and taken snapshots at critical points. I run several dev and testing servers on it and have

Re: a little off topic: apache

2006-07-12 Thread Rob Wilkerson
Joe, you never mentioned whether you followed Mark's advice to open your jrun.xml file and ensure that the cacherealpath value is set to false. If not, then take a look. As I mentioned, the behavior you appear to be describing was expected in MX 6.x (may have been corrected in 6.1, I can't recall

Re: a little off topic: apache

2006-07-12 Thread Rob Wilkerson
Go back to what Mark sent. This was a "known issue" in MX 6.x on multi-homed servers. On 7/12/06, Joe Velez <[EMAIL PROTECTED]> wrote: > Tried that .. restarted both CF and Apache > Didnt work :( > > Anything else? :) > > > - Original Message - > From: "Mark A Kruger" <[EMAIL PROTECTED]>

Re: OT: SVN Error

2006-07-12 Thread Rob Wilkerson
You might get more and/or better results on the Subversion mailing list ([EMAIL PROTECTED]). I'm just starting my Subversion migration or I might be more help. As it is, this is the best I can do. :-) On 7/12/06, Richard Kroll <[EMAIL PROTECTED]> wrote: > Hey all, > > I keep having a recurring

Re: CF install in a multi-server setup

2006-07-11 Thread Rob Wilkerson
Depends on how you specified the installer to handle it. You can configure any individual site or you can configure all IIS sites. If it's not showing up on all, then maybe you didn't specify the "all sites" option. Check the ISAPI Filters tab on the "Web Sites" node and see whether the filter s

Re: Prevent CFLOOP Timeout?

2006-07-11 Thread Rob Wilkerson
The query string variation was discontinued in MX7 in favor of the embedding the timeout in the template code. On 7/11/06, Eric J. Hoffman <[EMAIL PROTECTED]> wrote: > Okay, I was doing via URL variable, but I will do some cfsetting on the pages > themselves. > > Thanks! > > > Regards, > > Eric J

Re: XPath help

2006-07-11 Thread Rob Wilkerson
I don't know whether you've posted your XML, but if you did, I'm not seeing it. Maybe others aren't as well? Might be worth posting again... On 7/11/06, Howard Owens <[EMAIL PROTECTED]> wrote: > Anybody else have any clue why my XMLSearch(GeoCodeXML,"//PostalCodeNumber") > might be returning an

Re: CF install in a multi-server setup

2006-07-11 Thread Rob Wilkerson
To remove any complexity at the start, here's a quick high-level look at the process that I like to use: 1. Install CF in multiserver mode. During this process CF will ask you to configure your webserver. Don't configure IIS globally, but instead choose only the virtual site that will house you

Re: Writing Dreamweaver Extensions

2006-07-10 Thread Rob Wilkerson
Okay, it looks like you all are finding what I've found. The LiveDocs look reasonably comprehensive as well. I was just wondering if there was anything I might be missing. Thanks. On 7/10/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > Thanks, Massimo. I'll try not to wa

Re: Writing Dreamweaver Extensions

2006-07-10 Thread Rob Wilkerson
Thanks, Massimo. I'll try not to waste your time. The URLs and other resources - meager as they may be - should be sufficient. On 7/10/06, Massimo Foti <[EMAIL PROTECTED]> wrote: > > Has anyone out there has written packaged extensions for DWMX? > > I wrote a few of them :-) > > > > > > looking

OT: Writing Dreamweaver Extensions

2006-07-10 Thread Rob Wilkerson
y guidance around where to start would be extemely helpful. Random Google-ing is showing some results but, as always, learning from the experiences of others would be tremendously helpful. Thank you. -- Rob Wilkerson ~| Introducing

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
Rick - I'm running 2-5 instances of CFMX7 and one CFMX6.1 instance on a WinXP machine with 1GB of memory and it runs fine. Of course, all of these instances aren't running at the same time (typically). I've seen no pitfalls to this point - it actually works great and gives me tremendous flexibil

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
> > Subject: RE: CFMX7 Multiserver on Apache > > > > What's the benefit of running multiple instances of CF? > > > > Rick > > > > > > -Original Message- > > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 07

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
riginal Message- > > From: Rick Faircloth [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 07, 2006 6:42 PM > > To: CF-Talk > > Subject: RE: CFMX7 Multiserver on Apache > > > > What's the benefit of running multiple instances of CF? > > > > Ric

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
subject to simplify and clarify a couple of rough spots in the document. In the event that he doesn't get to that, however, the linked article really is pretty useful and usable. On 7/7/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > Will do. I'll try to detail the steps for the

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
you get this to work, as I will need to do this > sometime soon as well. > > Russ > > > -Original Message- > > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > > Sent: Friday, July 07, 2006 9:47 AM > > To: CF-Talk > > Subject: Re: CFMX7 Multiserv

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
/06, Rob Wilkerson <[EMAIL PROTECTED]> wrote: > I'm trying to create a multiserver installation of CFMX7 in a > Windows/Apache 2.0.58 environment where each ColdFusion instance runs > a separate JVM configuration. I've had this running just fine in IIS > by running ws

CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
nd/or how I might go about it. Any insight would be greatly appreciated. Thanks. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peer

Re: iframe scrolling

2006-07-06 Thread Rob Wilkerson
t; > My current doctype is > > PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> > > I tried a few others, but they didn't seems to make a difference. > > ~Br

Re: iframe scrolling

2006-07-06 Thread Rob Wilkerson
What doctype are you using? In XTHML strict or transitional, IE behaves differently. The 1/4" scroll is indicative of the horizontal scrollbar compensating for the presence of the vertical scrollbar. The scrolling distance is approximately the size of the vertical scrollbar, right? On 7/6/06, Ia

Re: cfsearch help

2006-07-06 Thread Rob Wilkerson
John - open a word doc that isn't indexing with the title you'd like. Once it's open, click File > Properties and you should be able to access the metadata. I told you that from memory, but if it's not correct let me know and I'll run it down further. On 7/6/06, Raymond Camden <[EMAIL PROTECTED]>

Re: Old code woes

2006-07-06 Thread Rob Wilkerson
You know, I see MUCH more of that than I'd like - from experienced developers. Not the variable assignment part which is what I'm sure you were highlighting, but the assignment of a variable to another scope for no particular reason. I can't tell you how often I see things like . >From the conte

Re: OT: gmail and norton internet security

2006-07-06 Thread Rob Wilkerson
I'll second (or third) the AVG recommendation. I've been using it for years and never had a problem. They do a terrific job keeping their virus database updated. On 7/6/06, Tom Chiverton <[EMAIL PROTECTED]> wrote: > On Thursday 06 July 2006 12:54, James Holmes wrote: > > AVG free: > > Indeed - i

Re: ColdFusion, Apache & mod_rewrite

2006-07-06 Thread Rob Wilkerson
uly 2006 22:19, Rob Wilkerson wrote: > > Does that help any? > > Is there some reason not to set the 404 handler in Apache to a CFM page ? > > -- > Tom Chiverton > > > > This email is sent for and on behalf of

Re: ColdFusion, Apache & mod_rewrite

2006-07-05 Thread Rob Wilkerson
t if the file exists before doing a > rewrite. You can use a similar rule for non cfm pages and just have those > either pull directly or use a PT flag on them to do the appropriate > rewriting. > > Russ > > -Original Message- > > From: Rob Wilkerson [mailto:[EM

ColdFusion, Apache & mod_rewrite

2006-07-05 Thread Rob Wilkerson
[L] RewriteRule ^/f3/f4/foo - [L] RewriteRule ^/landingpage.cfm - [L] RewriteRule ^/(.*) /landingpage.cfm?uri=%{REQUEST_URI} [QSA,PT] Has anyone else seen this issue and successfully found a way around it? Any assistance or insight would

Re: Processing after redirects

2006-07-03 Thread Rob Wilkerson
The only way I've seen to do this using "traditional" web methods (i.e. no AJaX, etc.) is to use CFFLUSH in conjunction with client-side JavaScript to perform the redirect. [... server-side processing ...] location.href = '/redirection/target/path/to/page.htm'; additional server-sid

Re: CFFILE uploads

2006-07-03 Thread Rob Wilkerson
I don't think you can do file uploads with AJaX. I believe it's a security issue. At least, I've never found a way. Not using a POST method, anyway. I've tried using Prototype and had no luck whatsoever. Working with input-file is one of the most secured, anti-scripting operations in the brows

Re: OT ANN: JavaScript Date Library

2006-06-22 Thread Rob Wilkerson
Wow, this looks really great. Many (MANY!) thanks for the documentation. So nice to have that in place *before* attempting to use something like this. On 6/21/06, Jim Davis <[EMAIL PROTECTED]> wrote: > Since a lot of you folks are getting into client-side work via AJAX I > thought you might be a

Re: Eliminating Textarea Whitespaces on UDF retuned values

2006-06-21 Thread Rob Wilkerson
whitespaces: > #methodname(number)# > > Now its just basically understanding what triggers one over the other. Hmmm. > > Again many Thanks!! > > > > > > > -Original Message- > From: Rob Wilkerson [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June

Re: Eliminating Textarea Whitespaces on UDF retuned values

2006-06-21 Thread Rob Wilkerson
Sorry, I probably should have been more specific. The "\s" should strip any representation of "standard" whitespace. Other non-printing characters will not be stripped. You might want to try using the asc() function to see what at least one of those characters might be: asc ( left ( myString, 1

Re: Eliminating Textarea Whitespaces on UDF retuned values

2006-06-21 Thread Rob Wilkerson
You could also try using a regex to strip \s*: REReplaceNoCase ( textAreaString, '^\s*', '' ) -- Rob Wilkerson On 6/21/06, Nathan Strutz <[EMAIL PROTECTED]> wrote: > It could be chr(160) - the literal character for the non-breaking space > ( ). Trimming

Re: Regex needed

2006-06-20 Thread Rob Wilkerson
Looks like some of your data got clipped or removed (at least in gmail), but I'll take a stab at what you've got - while making some dangerous assumptions. Try: REReplaceNoCase ( data, '([^(]+)\([^)]+\)', '\1' ) On 6/20/06, Rey Bango <[EMAIL PROTECTED]> wrote: > Would anyone be willing to help m

Re: Export text

2006-06-20 Thread Rob Wilkerson
I'll second Ben's recommendation. I changed several of my large string concatenations and saw performance increases up to 90% over the traditional method. It really makes a huge difference. On 6/20/06, Ben Nadel <[EMAIL PROTECTED]> wrote: > If you are building a massive string (without appending

Re: Creating RSS feeds

2006-06-20 Thread Rob Wilkerson
Honestly, the RSS 2.0 specs are really pretty easy to follow. Those, plus an example feed or two will probably tell you everything you need to know. You might also want to look at Pete Freitag's blog about styling your feed (just in case someone visits it directly): http://blogs.law.harvard.edu/

Re: cfcollection and Windows map drive?

2006-06-20 Thread Rob Wilkerson
Maybe the UNC path is failing? I have no idea whether CFINDEX will support those, but just to try another path, what about using the mapped drive letter: On 6/20/06, Johnny Le <[EMAIL PROTECTED]> wrote: > Hi, > > I have a windows map drive to another server. I can read the files with > cffi

Re: How to move the Log files

2006-06-17 Thread Rob Wilkerson
Sorry, Troy, looks like that's effectively what you did. I should've read closer. I'm not sure you can change the location of the system logs. Maybe someone else knows a way. On 6/16/06, Troy Simpson <[EMAIL PROTECTED]> wrote: > I have a server configured with JRun/ColdFusion J2EE applications.

Re: How to move the Log files

2006-06-17 Thread Rob Wilkerson
You can change the log file location (assuming you're on MX 7) in the Administrator. Look in the Logging settings. On 6/16/06, Troy Simpson <[EMAIL PROTECTED]> wrote: > I have a server configured with JRun/ColdFusion J2EE applications. I > have edited the file SERVER-INF\jrun.xml to move the log

Re: The request has exceeded the allowable time limit Tag: cfoutput

2006-06-14 Thread Rob Wilkerson
On 6/14/06, James Holmes <[EMAIL PROTECTED]> wrote: > The template is running past the time allowed in the CF Admin. It > could be either the DB or the post DB processing time. Anyway, you can > increase the time available to the template with a cfsetting tag. > > On 6/14/06, Andy Matthews <[EMAI

Re: virtual directory in IIS?

2006-06-14 Thread Rob Wilkerson
Sort of, but not the way you're thinking. You need to write a VB script to handle that kind of interaction. At least, that's the only way I know to handle it. CF could then execute the VB script, of course. On 6/14/06, Johnny Le <[EMAIL PROTECTED]> wrote: > Is there a way to add a virtual direc

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-14 Thread Rob Wilkerson
LOL. I'm pushing to move away from VSS for many more reasons than the availability of an Eclipse plugin, so sticking with VSS just isn't an option. Regardless of the attractiveness of these "features" you've so eloquently described. On 6/14/06, Jochem van Dieten <[EMAIL PROTECTED]> wrote: > Qasi

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-13 Thread Rob Wilkerson
hin eclipse so you can see who worked on it when it was committed > and the comment they entered when they committed. The other major feature > is the ability to create a branch to do big software changes alongside > bugfixes without the two code lines overlapping. I have some stuff regard

Re: index.cfm Conundrum

2006-06-13 Thread Rob Wilkerson
The save class files simple saves the java byte code of a given file. As I understand it, it's the other option that caches only one location for the file. For example, on a multi-homed server (a web server serving more than one CF site), if the index.cfm file for site1 is rendered first, then any

<    1   2   3   4   >