[ cf-dev ] Apache, standalone server and ColdFusion Administrator

2003-08-19 Thread Aidan Whitehall
Development box -- Windows XP Professional, Apache 2.0.46 ColdFusion MX c/w standalone server. There are several virtual hosts defined in Apache, and AFAICT, the only reference to ColdFusion within httpd.conf is the LoadModule directive for JRun and that index.cfm has been added to the

RE: [ cf-dev ] encoding and funny characters

2003-08-19 Thread Lucas Sherwood
Hey Douglas. The main thing is to make sure everything is the same, your database, your pages and your inputs (url form)... Start at the database, work out what it is returning (UTF-8 or ISO-8859-1) Then rest all of cf to match :) cfprocessingdirective pageencoding=ISO-8859-1 cfscript

RE: [ cf-dev ] strange error

2003-08-19 Thread Lucas Sherwood
Hey Rich, This is weird but there is one thing that I think might be throwing you out. Are you using CFMX? If so the url.requesttimeout=*** is deprecated... Use cfsetting requestTimeout=65000 this should get you going... L. -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]

RE: [ cf-dev ] strange error

2003-08-19 Thread Rich Wild
hmm, yea - but deprecated means still works but might be removed in future versions or has it been nerfed completely? thanks anyway Lucas, I'll check it out... -Original Message- From: Lucas Sherwood [mailto:[EMAIL PROTECTED] Sent: 19 August 2003 09:55 To: [EMAIL PROTECTED]

Re: [ cf-dev ] strange error

2003-08-19 Thread Tom Smith
was going to ask that very same question... - Original Message - From: Rich Wild [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 9:57 AM Subject: RE: [ cf-dev ] strange error hmm, yea - but deprecated means still works but might be removed in future versions

Re: [ cf-dev ] strange error

2003-08-19 Thread Tom Smith
of course you could do: cfif IsDefined(url.requesttimeout) cfif IsNumeric(url.requesttimeout) cfsetting requesttimeout = #url.requesttimeout# /cfif /cfif -- not sure if you'll need the hashes in this case, ut probably... - Original Message - From: Paul Johnston [EMAIL PROTECTED] To:

RE: [ cf-dev ] strange error

2003-08-19 Thread Paul Johnston
of course you could do: cfif IsDefined(url.requesttimeout) cfif IsNumeric(url.requesttimeout) cfsetting requesttimeout = #url.requesttimeout# /cfif /cfif -- not sure if you'll need the hashes in this case, ut probably... Well, you spotted the deliberate mistake! Don't need hashes

RE: [ cf-dev ] strange error

2003-08-19 Thread Paul Johnston
And you could always do a version number check as well to see if it is CFMX and only use the code in that instance. Paul of course you could do: cfif IsDefined(url.requesttimeout) cfif IsNumeric(url.requesttimeout) cfsetting requesttimeout = #url.requesttimeout# /cfif /cfif

Re: [ cf-dev ] strange error

2003-08-19 Thread Tom Smith
of course you could do: cfif IsDefined(url.requesttimeout) cfif IsNumeric(url.requesttimeout) cfsetting requesttimeout = #url.requesttimeout# /cfif /cfif -- not sure if you'll need the hashes in this case, ut probably... Well, you spotted the deliberate mistake! Don't

RE: [ cf-dev ] strange error

2003-08-19 Thread Lucas Sherwood
Sorry I should have said remove, totally gone, 'nerfed', it is an ex-feature... -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED] Sent: 19 August 2003 09:57 To: '[EMAIL PROTECTED]' Subject: RE: [ cf-dev ] strange error hmm, yea - but deprecated means still works but might

RE: [ cf-dev ] strange error

2003-08-19 Thread Rich Wild
it is pushing up the daisies. righto. Thanks Lucas. -Original Message- From: Lucas Sherwood [mailto:[EMAIL PROTECTED] Sent: 19 August 2003 10:39 To: [EMAIL PROTECTED] Subject: RE: [ cf-dev ] strange error Sorry I should have said remove, totally gone, 'nerfed', it is an

[ cf-dev ] cloaking

2003-08-19 Thread Snake Hollywood
Are there any tricks you can do in IIS to cloak a domain when redirecting so the redirected domain doesn't show in the browser. Other than using a frameset. -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

RE: [ cf-dev ] RegEx I assume

2003-08-19 Thread Rich Wild
change the {1,1) bit to read {1,2} so that it matches one instance or 2 of the [a-z] search. so it would be: ([a-z]{1,2}[0-9]{2,2}) and you'd only need to run that once - ie not have text2. -Original Message- From: Damian Watson [mailto:[EMAIL PROTECTED] Sent: 19 August 2003 13:40

Re: [ cf-dev ] RegEx I assume

2003-08-19 Thread Damian Watson
ah just the ticket, ta Rich. I'm starting to understand these things ;0) - Original Message - From: Rich Wild [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 1:41 PM Subject: RE: [ cf-dev ] RegEx I assume change the {1,1) bit to read {1,2} so that it matches one

RE: [ cf-dev ] RegEx I assume

2003-08-19 Thread Paul Johnston
One of these days I will complete my regex tutorial! Then questions like this would be easier to sort out! Paul ah just the ticket, ta Rich. I'm starting to understand these things ;0) - Original Message - From: Rich Wild [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,