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
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] To: CF-Talk cf-talk@houseoffusion.com Sent: Tuesday, October 17, 2006 6:03 PM

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

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: 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: Stupid apache question

2006-10-16 Thread Rob Wilkerson
. 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 (VirtualHosts in Apache) and the ServerName will never take on much relevance. Rob

Re: Stupid apache question

2006-10-16 Thread Rob Wilkerson
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 9:17 PM, Doug Brown 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? Thanks. D ~| Introducing

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

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 should do it.

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 thread

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 anything

CFHTTP Authentication

2006-10-04 Thread Rob Wilkerson
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 information by your peers

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 username and password I'm passing (which are correct

CFMX7 Search Service Won't Start

2006-09-28 Thread Rob Wilkerson
message appears in my System Event Viewer after a reload and, as indicated, the search service isn't started. Thanks again. -- Rob Wilkerson ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up

Re: RewriteRule and REQUEST_URI

2006-09-27 Thread Rob Wilkerson
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 it behind the curtain (which you can do with PHP) and read it from

Re: RewriteRule and REQUEST_URI

2006-09-27 Thread Rob Wilkerson
] 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: Desperation

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 native

Re: regexp help

2006-09-27 Thread Rob Wilkerson
of the string you want to use: cfset strTest = REReplace( strTest, _?[12]+$, , ALL ) / 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

RewriteRule and REQUEST_URI

2006-09-26 Thread Rob Wilkerson
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 ~| Introducing

Re: RewriteRule and REQUEST_URI

2006-09-26 Thread Rob Wilkerson
... 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 -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED

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

XMLValidate() and ENTITY declarations

2006-09-19 Thread Rob Wilkerson
. -- 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.fusionauthority.com/quarterly

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

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,

Re: Java/CF Question

2006-09-11 Thread Rob Wilkerson
\javaTest.cfm : line 3 Unresolved compilation problems: Unhandled exception type ClassNotFoundException Unhandled exception type SQLException What do I do with those? -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Monday, September 11

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

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: 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* (read:

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

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

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
?? -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: 23 August 2006 17:23 To: CF-Talk Subject: Re: Parsing an XML Feed Yep. Both work just fine for me. One other thing to look for...if you're using a DevNet version of ColdFusion then it may be inserting an errant meta tag

Re: Parsing an XML Feed

2006-08-24 Thread Rob Wilkerson
--- CFLOCATION URL=../login.cfm ADDTOKEN=No /CFIF The page 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

Re: Parsing an XML Feed

2006-08-23 Thread Rob Wilkerson
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. -Original Message- From: Rob Wilkerson [mailto

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: cfset variables.content = REReplaceNoCase ( variables.content, [^\x00-\x7f], , ALL ) / This will remove all

Re: Parsing an XML Feed

2006-08-22 Thread Rob Wilkerson
#XMLContent.rss.channel.copyright.xmlText#/div/cfoutpu t /body /html -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: 22 August 2006 13:05 To: CF-Talk Subject: Re: Parsing an XML Feed Ian, I've seen feeds that contain non-printing characters that can throw off the XML

Re: XML looping problems

2006-08-22 Thread Rob Wilkerson
http://www.cvwp.com [EMAIL PROTECTED] 603.433.9559 == -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 22, 2006 8:34 AM To: CF-Talk Subject: Re: XML looping problems No, the XML is fine (or, at the very least

Re: XML looping problems

2006-08-22 Thread Rob Wilkerson
Sorry, hit send too soon. cfset variables.locations = XMLSearch ( variables.parsedDoc, '//dir_office_atm_locations' ) / cfset variables.cLocations = arrayLen ( variables.locations ) / cfloop index=iLocation from=1 to=#variables.cLocations# cfif [pseudocode: the name attribute exists cfset

Re: RSS feeds and # sign

2006-08-22 Thread Rob Wilkerson
Ben, try using CDATA: title![CDATA{#REQUEST.EntryQuery.name#]]/title 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

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: cfhttp url=http://www.easycfm.com/syndication/mostviewed.cfm; method=GET timeout=15

OT: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
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 year. http

Re: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
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:59 PM To: CF-Talk Subject: OT: TortoiseSVN Plugin for Eclipse Is anyone

Re: TortoiseSVN Plugin for Eclipse

2006-08-22 Thread Rob Wilkerson
/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-Talk Subject: Re: TortoiseSVN Plugin for Eclipse Yeah, I didn't think

Search Server Won't Start

2006-08-15 Thread Rob Wilkerson
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, delivered to your

Re: OT: Requirements Gathering/Analysis Software

2006-08-15 Thread Rob Wilkerson
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 recommendations for such a thing? Thanks. -- Rob Wilkerson Rob, Adalon 3.6 is now released free to the community. See http://www.adalon.net

OT: Requirements Gathering/Analysis Software

2006-08-14 Thread Rob Wilkerson
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 ColdFusion

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 experience

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

Re: OT: tortoise svn and eclipse

2006-08-08 Thread Rob Wilkerson
On 8/8/06, Sandra Clark [EMAIL PROTECTED] wrote: Actually Tortoise has released an eclipse plugin so you now have a choice, Tortoise or Subclipse. http://www.tabaquismo.freehosting.net/ignacio/eclipse/tortoise-svn/subversio n.html Very nice. Has anyone used this? Any reviews? -- Rob

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: CF, XML Default namespace, and XPath bug

2006-07-20 Thread Rob Wilkerson
Use local-name(). That ignores the namespace declaration: xsl:for-each select=//*[local-name()='item'] | //*[local-name()='entry'] ... /xsl:for-each 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

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 Matthews

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

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: 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] To: CF-Talk

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

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

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 empty

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

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

OT: Writing Dreamweaver Extensions

2006-07-10 Thread Rob Wilkerson
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 the Fusion

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 any helpful

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 waste your time. The URLs

CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
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 peers, delivered to your

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 wsconfig with the -config flag, but I'm

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
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 Multiserver on Apache Sorry, everyone. After reading this again, it seems that I have all

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
on the 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 list. On 7/7/06, Russ

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
multiple instances of CF? Rick -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 1:26 PM To: CF-Talk Subject: Re: CFMX7 Multiserver on Apache All - If anyone has been watching this thread, Steven Erat was kind enough

Re: CFMX7 Multiserver on Apache

2006-07-07 Thread Rob Wilkerson
- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Friday, July 07, 2006 1:26 PM To: CF-Talk Subject: Re: CFMX7 Multiserver on Apache All - If anyone has been watching this thread, Steven Erat was kind enough to answer my cry for help and send me this link which lays it out

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

Re: ColdFusion, Apache mod_rewrite

2006-07-06 Thread Rob Wilkerson
I don't want the request to be reported as a 404. The landing page, in this case is retrieving data from a database and delivering that data as html. When delivered, the response header returns a 200 code. On 7/6/06, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 05 July 2006 22:19, Rob

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 - it's

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 cfset

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

Re: iframe scrolling

2006-07-06 Thread Rob Wilkerson
-Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Thursday, July 06, 2006 12:28 PM To: CF-Talk Subject: Re: iframe scrolling What doctype are you using? In XTHML strict or transitional, IE behaves differently. The 1/4 scroll is indicative of the horizontal

ColdFusion, Apache mod_rewrite

2006-07-05 Thread Rob Wilkerson
- [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 be appreciated. Thanks. -- Rob Wilkerson

Re: ColdFusion, Apache mod_rewrite

2006-07-05 Thread Rob Wilkerson
those either pull directly or use a PT flag on them to do the appropriate rewriting. Russ -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 05, 2006 3:56 PM To: CF-Talk Subject: ColdFusion, Apache mod_rewrite I'm running into a problem

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

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 ...] script type=text/javascript location.href = '/redirection/target/path/to/page.htm';

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 able

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 (nbsp;). Trimming won't cut it out. Instead, try

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
, this creates the whitespaces: textarea#methodname(number)#/textarea 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 21, 2006 4:52 PM To: CF-Talk

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: cfcollection action=update collection=myCollection type=file key=y:\file\content.doc custom1=fileID status=getStatus/ On 6/20/06, Johnny Le

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

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

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

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

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

2006-06-14 Thread Rob Wilkerson
cfsetting requesttimeout=[# of seconds] / 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.

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-13 Thread Rob Wilkerson
12 June 2006 18:25, Rob Wilkerson wrote: customers. Ideally, I'd like to extract only the modified files from the source control repository so I can then just roll them up in a tarball without any additional weeding of what's in and what's out. Should be easy enough, you ask SVN for all

Re: Batch file to Stop/Start ColdFusion MX...

2006-06-13 Thread Rob Wilkerson
Assuming this is Windows since you referenced a batch file, just open notepad, type: net stop ColdFusion MX Application Server net start ColdFusion MX Application Server Save the file as bounce.bat (only the extension is important) and that's it. The quoted value is the name of the services you

Re: OT: Best Practices - Source Control and Hotfixes

2006-06-13 Thread Rob Wilkerson
with the latest version and I will get all the project back again with latest changes. Does that make it clearer? On 6/13/06, Rob Wilkerson [EMAIL PROTECTED] wrote: Michael, it sounds like you tried exactly what I'm looking to do, but I need to clarify since you used terminology that I'm

Re: XML - looking to return an XML object original parced format

2006-06-13 Thread Rob Wilkerson
Can you use XMLSearch()? cfset node = XMLSearch ( parsedXML, '/root/goodnode/goodnode_name/text()' ) / cfoutput#node[1].value#/cfoutput I recommend dumping the node value to ensure that the way my code accesses that value is correct. It may be a little off - I'm winging it, here. On 6/13/06,

<    1   2   3   4   >