Re: CF5 Encoding

2004-08-03 Thread Paul Hastings
Can someone point me the equivalent code in ColdFusion 5 and some resources for character encoding in CF 5. if possible i'd try to stay away from trying to use cf5 for any locales outside what it was designed for. what you have to do to get it to work will more often than not come back and bite

RE: Stupid telephone regex question

2004-08-03 Thread Pascal Peters
I'm coming in late on this one, but I have 2 remarks on Jochem's solution: 1. the dot doesn't need escaping in a character set. [ .-] should do it. You hardly need escaping in sets as long as you choose the order of the characters wisely. 2. I don't know if it matters, but the comment he made on (

Re: XML data

2004-08-03 Thread Simon Horwith
child nodes are stored as arrays, but each index is complex, so you can't use array functions for math on them.If you want to perform mathematical operations on XML, either convert it toanother datatype, extract the data you need from it, or use XSL(if applicable). ~Simon Simon Horwith CTO,

createTimeSpan can't take parameter as variable?

2004-08-03 Thread Andy J
Is this a bug, or is there a perfectly good explanation why the following returns an error and cause its late I'm not seeing it: cfscript myTimeSpan = 0,0,2,0; writeOutput(createTimeSpan(myTimeSpan)); /cfscript Message returned: Parameter validation error for function CREATETIMESPAN. The

Re: createTimeSpan can't take parameter as variable?

2004-08-03 Thread John Beynon
i do it this way: cfset mycachetime = #createtimespan(0,2,0,0)# cfquery cachedwithin=#mycachetime# which works, also allows me to expire queries by setting mycachetime to createtimespan(0,0,0,-1) jb. On Tue, 3 Aug 2004 09:02:22 +0100, Andy J [EMAIL PROTECTED] wrote: Is this a bug, or is

need sql guru help

2004-08-03 Thread John mccosker
hi, I have a recordset like so, DT VEHICLEIDNSEW 03/08/2004 08:30:16169IGNITION ON 03/08/2004 08:35:33169IDLE 03/08/2004 08:40:17169IDLE 03/08/2004 08:45:51169IDLE 03/08/2004 08:50:23169IDLE 03/08/2004 08:55:29169IDLE 03/08/2004 09:00:16169IGNITION OFF what I am trying to do is count the idle

RE: cfqueryparam best practices

2004-08-03 Thread Bert Dawson
But if the query relies on data from the browser then using a persistent scope will be a bit of a drag since you'd have to provide some way to identify the correct recordset depending on the values of the parameters passed - presumably by dynamically naming the query depending on the parameters

RE: createTimeSpan can't take parameter as variable?

2004-08-03 Thread Pascal Peters
This is not a bug, but an error in your code. You need 4 parameters for createTmeSpan and you are only passing one (myTimeSpan): 1. Put the CreateTimeSpan function in your assignment: myTimeSpan = CreateTimeSpan(0,0,2,0); 2. Create each parameter individually: myTimeSpan = StructNew();

Re: need sql guru help

2004-08-03 Thread John mccosker
sorry, Q0.DIRECTION should be Q0.NSEW, however this does make a difference, [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: (OT) Firewall

2004-08-03 Thread James Smith
I have been using IPCop with great success for a couple of years now. Simple to use, fast to respond to patching requirements.Old versions are RedHat based but the current Dev Tree uses Linux From Scratch. -- Jay -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]

Re: cf-based discussion board

2004-08-03 Thread Jochem van Dieten
Ewok wrote: I can't seem to find the division by zero errors at all? I may have been messing around with it at the time. Do you still see the error(s)? When you create a new user, the number of messages per page appears to default to 0. That gives division by 0 exceptions. If you change the

Re: createTimeSpan can't take parameter as variable?

2004-08-03 Thread Andy Jarrett
Cheers Pascal, i see what you mean by error in my code, its quite obvious now - don't you love hindsight. To explain what i was playing around with in my head - I was thinking of having an .ini file with a string profile like: tSpan=0,2,0,0 The idea was to have some key variables which could

Re: need sql guru help

2004-08-03 Thread S . Isaac Dealey
this is the first part of the query (count the idle instances between an ON and OFF), SELECT DT, VEHICLEID,NSEW, ( SELECTCOUNT(NSEW)AS DCT FROM INBOUND AS Q1 WHERE DATEDIFF(DAY,Q0.DT,GETDATE())=7 AND Q0.VEHICLEID=137 AND Q0.NSEW = 'IDLE' AND Q0.DT ( SELECT MIN(Q2.DT)

Re: Image Manipulation - server side

2004-08-03 Thread lists
Qasim, Looks real cool, your server is down now though.Did you use the Java JAI for this? -- --- Douglas Knudsen http://www.cubicleman.com If you don't like something, change it. If you can't change it, change your attitude. Don't complain. - Maya Angelou Here is the link to an image

CF on Linux

2004-08-03 Thread Robert Orlini
Anyone out there running CFMX on Linux? How do I get it to recognize the .cfm extension? The cfm pages show but seem not to be running thru CF. Is there something in the Apache setup? Where's that file? Thx. Robert O. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

Where is the request coming from?

2004-08-03 Thread Troy Simpson
I have distributed configuration for JRUN/CFMX and Apache2. Apache2 is running HostA. JRUN/CFMX is running on HostB. Both systems are multihomed.For example: HostA: 10.1.79.111 10.1.79.83-- Apache2 listens to port 80 on this IP. 10.1.79.97 HostB: 10.1.79.125 10.1.79.115 10.1.79.110 10.1.79.119

Re: CF on Linux

2004-08-03 Thread Thomas Chiverton
On Tuesday 03 Aug 2004 14:27 pm, Robert Orlini wrote: Anyone out there running CFMX on Linux? Plenty of folks. How do I get it to recognize the .cfm extension? The cfm pages show but seem not to be running thru CF. Is there something in the Apache setup? It sounds like the connector (module)

Re: Stupid telephone regex question

2004-08-03 Thread Peter Farrell
hi, You could stip all the punct and spaces with REReplace and then check the lenof 10 and isNumeric(). Then you have numeric string that you can format any way you wish. Just another approach if you want some more flexiblity in formatting changes in the future.Also, then you can store the

Re: need sql guru help

2004-08-03 Thread John mccosker
Hi Isaac, I modified the query to this, SELECT COUNT(NSEW) AS CT FROM INBOUND AS Q1 WHERE DATEDIFF(DAY,Q1.DT,GETDATE())=7 AND Q1.NSEW = 'IDLE' AND Q1.VEHICLEID=137 AND Q1.DT = (SELECT MAX(Q2.DT) FROM INBOUND AS Q2 WHERE DATEDIFF(DAY,Q2.DT,GETDATE())=7 AND Q2.NSEW = 'IGNITION ON'

RE: CF on Linux

2004-08-03 Thread Robert Orlini
Thanks for the quick reply Thomas. During the install CF mentioned something about a C++ module(?). Is that it? If so, where do I find it. Any URL you can send please? Robert O. -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004

Re: Image Manipulation - server side

2004-08-03 Thread Qasim Rasheed
Douglas, There is something wrong with my cable connection. Yes I am using JAI for image manipulation and this application is built using mach-ii. Qasim - Original Message - From: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Tue, 03 Aug 2004 13:31:07 + Subject: Re: Image Manipulation -

RE: Stupid telephone regex question

2004-08-03 Thread Lofback, Chris
Why restrict yourself?Allow ther user to mix-and-match phone formats and then reformat as needed: CFSET Phone = 123.456.7890 CFIF REFind(^([0-9]{3}[-\. ]?|\([0-9]{3}\) ?)[0-9]{3}[-\. ]?[0-9]{4}$,Trim(Phone)) CFSET Temp = REReplace(Phone,[^0-9],,ALL) CFSET Formatted = ( Left(Temp,3) )

Re: CF on Linux

2004-08-03 Thread Doug James
look in the [cf_root]/bin directory for cfmx-connectors-run.sh. It is a shell script that will install the connector between apache and cfmx. Good luck. Doug Robert Orlini wrote: Thanks for the quick reply Thomas. During the install CF mentioned something about a C++ module(?). Is that

RE: CF on Linux

2004-08-03 Thread Robert Orlini
Doug, Looked and could not see that file. I saw cfmx.init.sh, but not the one you emailed. Where can I get it? RO -Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 9:54 AM To: CF-Talk Subject: Re: CF on Linux look in the [cf_root]/bin

Re: need sql guru help

2004-08-03 Thread I-Lin Kuo
Try this: select (select count(*) from inbound as t1 where nsew='IGNITION ON' and t1.dt t2.dt and t1.vehicleid = t2.vehicleid ) as ignitionGroup, vehicleid, count(*) from inbound as t2 where t2.nsew='IDLE' group by vehicleid, ignitionGroup --- John mccosker [EMAIL PROTECTED] wrote:

Re: need sql guru help

2004-08-03 Thread John mccosker
I tried that, however I get this error, Server: Msg 207, Level 16, State 3, Line 1 Invalid column name 'ignitionGroup'. using MS SQL server 7.0 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CF on Linux

2004-08-03 Thread Thomas Chiverton
On Tuesday 03 Aug 2004 14:58 pm, Robert Orlini wrote: Looked and could not see that file. I saw cfmx.init.sh, but not the one you emailed. Where can I get it? Did you look in the dir where you ran the installer, as well as where you told it to install CF ? -- Tom Chiverton Advanced

Re: CF on Linux

2004-08-03 Thread Doug James
Look in the '[cf_root]/bin/connectors' dir for the appropriate script for your web server. cfdocs If you specified the use of an external web server when running the installer, ColdFusion MX automatically runs the /cf_root//bin/cfmx-connectors.sh script when starting for the first time. This

CF/SQL Help Needed

2004-08-03 Thread Donna French
I have compiled 2 lists of files - one is a list of all files, the second is a list of files I want to keep. What I would like to accomplish is flag the files in the first list that are NOT in the second list so they can be deleted from the server. I've setup 2 tables: Lanesid (table 1) ID

Re: CF/SQL Help Needed

2004-08-03 Thread John mccosker
this should work, UPDATE LANESID2 SET FLAG = 'yes' whereLANESID2.id not in (select Lanesid.id from Lanesid) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: CF on Linux

2004-08-03 Thread Robert Orlini
Found apache_connector.sh in the connectors directory. If thats the file, just doubleclick on it or is there something else I shoulddo? Sorry I'm new to Linux. Robert O. -Original Message- From: Doug James [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 10:25 AM To: CF-Talk

need help

2004-08-03 Thread Lori
I am reading an excel file into a table.There is a field in the table for # of datapoints that I need to get from counting the records in another table that match the test number.Tables are tblPlan strTestNo intDpCount tblDatapoints intDatapointID strTestNo so I need to read through

RE: Password protect a webservice

2004-08-03 Thread Mark W. Breneman
Any one? Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com http://www.vividmedia.com/ 608.270.9770 _ From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Sent: Monday, August 02, 2004 4:33 PM To: CF-Talk Subject: Password protect

Re: Password protect a webservice

2004-08-03 Thread Ben Doom
You could require a username/password combo to be passed to the webservice for each transaction.I've no idea if this is standard, but it's certainly doable. --Ben Mark W. Breneman wrote: Any one? Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL

Re: Password protect a webservice

2004-08-03 Thread Jochem van Dieten
Mark W. Breneman wrote: Any one? Webservices work over HTTP, so you can use the authentication mechanisms build into that. I would presume that anything that can download over HTTP can at least do Basic Authentication. Jochem [Todays Threads] [This Message] [Subscription] [Fast

tip of the day

2004-08-03 Thread Daniel Kessler
I'm looking for either advice or tutorials on creating a tip of the day database.Here are the ways that I thought up.I am working in Oracle. 1 - Have just two fields, ID#s and Tips.Set up some Oracle process that each day at 12 A.M., local server time chooses another TIP either the next one

Re: Password protect a webservice

2004-08-03 Thread Cutter (CF-Talk)
Mark, I haven't dived into it too deeply yet, but there is the roles attribute of cffunction. This is specifically for securing webservices, and though I haven't looked at it thoroughly yet I would imagine that it is tied into roles set through cflogin... Cutter Mark W. Breneman wrote: Any

RE: CF on Linux

2004-08-03 Thread Dave Wilson
Type './apache_connector.sh' to execute the script (note you must be in the connectors directory) - without quotes. HTH, Dave -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: 03 August 2004 15:29 To: CF-Talk Subject: RE: CF on Linux Found apache_connector.sh in the

Re: session var problems with Mac uses?

2004-08-03 Thread powell
OK, I found the problem - turns out that IE on the Mac put a trailing space in one of the form fields: input type=hidden name=command value=LOGIN results in form.command being LOGIN and so I needed to change cfif form.command IS LOGIN to be cfif trim(form.command) IS LOGIN for things to

Re: CF/SQL Help Needed

2004-08-03 Thread Donna French
it doesn't seem to be working, any suggestions? i've tried several things to no avail TIA, Donna - Original Message - From: John mccosker To: CF-Talk Sent: Tuesday, August 03, 2004 9:35 AM Subject: Re: CF/SQL Help Needed this should work, UPDATE LANESID2 SET FLAG = 'yes'

One to One Join

2004-08-03 Thread Lee
How do I get this to only return one row from the second table? Selecta.address_1,b.address_1 From State_Dup a, State_Class b where (a.Lname + a.Address_1 + a.City) = (b.Lname + b.Address_1 + b.City) Lee Surma [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Re: need help

2004-08-03 Thread Alexander Sherwood
At 10:36 AM 8/3/2004, you wrote: I am reading an excel file into a table.There is a field in the table for # of datapoints that I need to get from counting the records in another table that match the test number.Tables are tblPlan strTestNo intDpCount tblDatapoints intDatapointID strTestNo so I

RE: One to One Join

2004-08-03 Thread Robertson-Ravo, Neil (RX)
Use an Inner Join _ From: Lee [mailto:[EMAIL PROTECTED] Sent: 03 August 2004 16:15 To: CF-Talk Subject: One to One Join How do I get this to only return one row from the second table? Selecta.address_1,b.address_1 >From State_Dup a, State_Class b where (a.Lname + a.Address_1 +

Re: need sql guru help

2004-08-03 Thread Jochem van Dieten
John mccosker wrote: DT VEHICLEIDNSEW 03/08/2004 08:30:16169IGNITION ON 03/08/2004 08:35:33169IDLE 03/08/2004 08:40:17169IDLE 03/08/2004 08:45:51169IDLE 03/08/2004 08:50:23169IDLE 03/08/2004 08:55:29169IDLE 03/08/2004 09:00:16169IGNITION OFF what I am trying to do is count the idle

Re: tip of the day

2004-08-03 Thread Ewok
Id stick with ID and tip, pull a random one each time and cache the query for 24 hours. as for dates, I like to break them into to 3 parts when using a form to enter them.. form.Date_Day, form.Date_Month, and form.Date_Year then piece them back together in a cfset to get the date. while catching

Re: One to One Join

2004-08-03 Thread Lee
On Tue, 3 Aug 2004 16:15:14 +0100 Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Use an Inner Join I already tried his and it returns more than one. Selectb.address_1 From State_Dup a inner join State_Class b on (a.Lname + a.Address_1 + a.City) = (b.Lname + b.Address_1 + b.City) Lee

Re: need sql guru help

2004-08-03 Thread I-Lin Kuo
I don't remember what can or can't be done on 7.0, unfortunately. you might try the following: select (select count(*) from inbound as t1 where nsew='IGNITION ON' and t1.dt t2.dt and t1.vehicleid = t2.vehicleid ) as ignitionGroup, vehicleid, count(*) from inbound as t2 where t2.nsew='IDLE'

Re: CF/SQL Help Needed

2004-08-03 Thread I-Lin Kuo
Your database structure isn't very clear to me. How do you know one file is in a table? Same ID, or is its filename in a comma-delimited list field list in filesall? If fileskeep and filesall are comma-delimited lists, then there isn't an easy solution --- Donna French [EMAIL PROTECTED] wrote:

Re: CF5 Encoding

2004-08-03 Thread Qasim Rasheed
Paul, Thanks for a quick response. Do you by any chance know the meta-header for setting the content type? Qasim - Original Message - From: Paul Hastings [EMAIL PROTECTED] Date: Tue, 3 Aug 2004 14:03:04 +0700 Subject: Re: CF5 Encoding To: CF-Talk [EMAIL PROTECTED] Can someone point me

Re: CF5 Encoding

2004-08-03 Thread Paul Hastings
Thanks for a quick response. Do you by any chance know the meta-header for setting the content type? meta content=text/html; charset=UTF-8 http-equiv=content-type [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Mandarin... Internationalization, Localization

2004-08-03 Thread Gonzo Rock
Hello, I am soliciting paid help with this project. Our large CF application, (estimate ~900 cfm files), needs to be localized for Taiwan. Some say it will be the only copy we sell to Taiwan but that's the subject of another paid project. Please contact me off list if you can participate or

Re: Where is the request coming from?

2004-08-03 Thread Barney Boisvert
51000?Apache should open a connection from some IP and some unprivileged port to 10.1.79.119:51000, which will take all traffic moving in both directions.It'll actually open multiple connections, but they'd all be the same.I haven't actually confirmed this, are you insinuating that this thinking

Problems with cfusion sending mail on an intranet.

2004-08-03 Thread DURETTE, STEVEN J (AIT)
Hi all, Someone in our company noticed that if a single address in the to was invalid then coldfusion gets a 550 error from the smtp servers and incorrectly interprets it as the whole e-mail is bad and don't send it. We got this response from our E-Mail group in IT: The problem is with

Arabic Text

2004-08-03 Thread Qasim Rasheed
Hello everyone, I have a webpage with an Arabic Keyboard which is displayed using some _javascript_ to display various buttons. It works fine on CFMX but just display ?? on CF 5 running on the same machine and using the same browser. I have following set on my display page cfcontent

username/password via URL over SSL secure?

2004-08-03 Thread Mark W. Breneman
Can anyone confirm that sending a username / password in the form of https://bob:[EMAIL PROTECTED]/ https://bob:[EMAIL PROTECTED] is secure and not passed via plain text. I fired up Ethereal and it looks like the username and password are not passed in the clear. I am no expert with the packet

RE: Arabic Text

2004-08-03 Thread Nando
you *might* get lucky and see it work if you change the charset to utf-8. CFMX uses utf-8 natively and i've seen it completely ignore meta http-equiv=Content-Type tags that worked fine in CF5. Just a guess. -Original Message- From: Qasim Rasheed [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: Password protect a webservice

2004-08-03 Thread Mark W. Breneman
Just a FYI for everyone. Looks like passing a user name and password to the webservice usinghttps://bob:[EMAIL PROTECTED] https://bob:[EMAIL PROTECTED]/getdata.cfc using folder / file security on the webserver does work with Office XP Web Services Toolkit 2.0. The only question I have is how does

Plain Text Output using CFContent

2004-08-03 Thread Mark Leder
Hi all, I want to use Cfcontent to force a download of query results in a plain text format.The following code works in my IE 6 Win browser (opens notepad with the data), but on another machine also using IE 6 Win, notepad opens, but no data. What am I doing wrong? cfset VARIABLES.todaysDate =

popup links to PDF files

2004-08-03 Thread Christy Carter
I know this was working before and can't figure out for the life of me why it isn't working anymore.I didn't write the code and am very new to CF, so I'm having trouble trying to figure it out.Here's the situation. Users will be able to search for a property based on its address. The result will

Re: Multiple (n) Entries on a Form...How to Handle?

2004-08-03 Thread Mike Rogan
Thanks, Doug and Matt! I will be placing the employment history section of the application on its own page, with add another and continue buttons. In terms of the hidden value being used to increment the form fields when add another, is that the best way, or should I do it as follows? Initial

Re: tip of the day

2004-08-03 Thread daniel kessler
Id stick with ID and tip, pull a random one each time and cache the query for 24 hours. That brings up some questions.So, I pull a random tip each day, not a random tip each page refresh.So what pulls the random tip and sets it as the TOTD?I've also not yet looked into caching queries.ugh

Re: CF/SQL Help Needed

2004-08-03 Thread Donna French
the FilesAll came from a CFDirectory listing I did - it's in a table now the FilesKeep is a list of items in the DB I want to keep - also in a table now I need to flag each FilesAll if it is NOT in FilesKeep so that I can delete the FilesAll and FilesKeep names will be the same (text - ex:

Re: username/password via URL over SSL secure?

2004-08-03 Thread djones
https://bob:[EMAIL PROTECTED] This will not work on a box that is properly patched.IE patch KB832894 disabled this. It is also included in the IE 6 service packs 1 and above I believe. This was a URL spoofing security issue that Microsoft addressed.Here are some articles that explain more.

Re: CF/SQL Help Needed

2004-08-03 Thread Joe Rinehart
Hi Donna, Assuming the filenames are the same in both tables, this should get you started.You'll want to change the datasource, deleteFlag column name, and filename column name to match your DB setup. cfquery datasource=etc UPDATE filesAll SET deleteFlag = 1 WHERE filename NOT IN ( SELECT

RE: username/password via URL over SSL secure?

2004-08-03 Thread Dave Watts
Can anyone confirm that sending a username / password in the form of https://bob:[EMAIL PROTECTED]/ https://bob:[EMAIL PROTECTED] is secure and not passed via plain text. Yes, I can confirm that. No information is passed in plaintext when sent via HTTPS. Dave Watts, CTO, Fig Leaf Software

Re: CF/SQL Help Needed

2004-08-03 Thread I-Lin Kuo
I think I understand, so your data looks like this: TABLE1 ID FilesKeep 1 passwords.txt 5 salary.txt TABLE2 ID FilesAll Flag 2 salary.txt 5 budget.txt 6 passwords.txt where the identifier is the filename, not the id. If so, then update table2 set flag=delete where filesall not in (select

RE: username/password via URL over SSL secure?

2004-08-03 Thread Mark W. Breneman
Once again Dave, thanks much! BTW in the info you posted about the MS Access consuming webservices Microsoft Office XP Web Services Toolkit 2.0 Was just what I was looking for.Thanks again! Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED]

Removing Curly Quotes, N-Dash, etc

2004-08-03 Thread David Hannum
What's the best way to handle the special characters that result of copying Word text into a textarea or text field?Is there a RegEx for this?I see a UDF at cflib.org, but it only handles a small number of these characters.I need to handle curly quotes, n-dash, m-dash, and everything else.- Thanks

p3p policy

2004-08-03 Thread Dan O'Keefe
What the heck is inserting this line into my page when I view the source? link rel=P3Pv1 href=""> >From what I have found out so fr isit is a privacy policy the IE6 can read, but what is casuing it to be generated in my output from CF? Dan O'Keefe [Todays Threads] [This Message]

Re: need help--FIX

2004-08-03 Thread Lori
Did a stored procedure. Here is the code: CREATE PROCEDURE getDpCount AS /* declare local variables used for fetch */ declare @strPlanTestNo varchar(50) declare @dpCount int /* declare the cursor to get each book written by given author */ declare testno cursor for select strPlanTestNo from

RE: Password protect a webservice

2004-08-03 Thread Burns, John D
That was my understanding as well is that it wouldn't work in IE.I'm curious what the username/password attributes in cfinvoke check against. Anyone know? John -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 1:18 PM To: CF-Talk

RE: Removing Curly Quotes, N-Dash, etc

2004-08-03 Thread Ciliotta, Mario
David, You can try this site: http://www.cflib.org/ http://www.cflib.org/ as they have some UDF's that I believe will do what you are looking for. Mario -Original Message- From: David Hannum [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 2:06 PM To: CF-Talk Subject:

Re: Removing Curly Quotes, N-Dash, etc

2004-08-03 Thread Ben Doom
IIRC, DeMoronize (also(?) available at cflib.org) handles all those.If that's what you were looking at before, then what specifically does it not handle that you need it to? --Ben David Hannum wrote: What's the best way to handle the special characters that result of copying Word text into

Re: Problems with cfusion sending mail on an intranet.

2004-08-03 Thread Jochem van Dieten
DURETTE, STEVEN J (AIT) wrote: Hi all, Someone in our company noticed that if a single address in the to was invalid then coldfusion gets a 550 error from the smtp servers and incorrectly interprets it as the whole e-mail is bad and don't send it. We got this response from our E-Mail group

Re: username/password via URL over SSL secure?

2004-08-03 Thread Jochem van Dieten
Mark W. Breneman wrote: Can anyone confirm that sending a username / password in the form of https://bob:[EMAIL PROTECTED]/ https://bob:[EMAIL PROTECTED] is secure and not passed via plain text. It is secure. Jochem [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: p3p policy

2004-08-03 Thread Gaulin, Mark
What web server are you using? It's possible that it is adding it. Mark -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 2:24 PM To: CF-Talk Subject: p3p policy What the heck is inserting this line into my page when I view the source?

Re: p3p policy

2004-08-03 Thread Dan O'Keefe
I am using IIS, and it is not configured in the HTTP headers as Microsoft describes it in their KB on how to set it up. I am seeing this on 2 different IIS servers. Bothe IE6 and Firefox display this link in the source. Very strange. Even if I add a CFABORT at the start of the page, the link is

Re: p3p policy

2004-08-03 Thread Dan O'Keefe
duh! it would me in me application.cfm Sorry, Dan On Tue, 3 Aug 2004 14:59:51 -0400, Dan O'Keefe [EMAIL PROTECTED] wrote: I am using IIS, and it is not configured in the HTTP headers as Microsoft describes it in their KB on how to set it up. I am seeing this on 2 different IIS servers. Bothe

Re: popup links to PDF files

2004-08-03 Thread Christy Carter
nobody has any ideas for me??? :( thanks! christy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: p3p policy

2004-08-03 Thread Burns, John D
Application.cfm possibly? John Burns -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 3:00 PM To: CF-Talk Subject: Re: p3p policy I am using IIS, and it is not configured in the HTTP headers as Microsoft describes it in their KB on how to

RE: Password protect a webservice

2004-08-03 Thread Mark W. Breneman
After a little testing it looks like the Office XP Web Services Toolkit can still use the username / password in the URL line even after I applied all of the IE patches. Wonder if Office XP Web Services Toolkit has the same security issues the IE has.Not that it will be an issue for this

Re: popup links to PDF files

2004-08-03 Thread Bryan Stevenson
what's the problem? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Original Message - From: Christy Carter To: CF-Talk Sent: Tuesday, August 03, 2004 12:12 PM Subject: Re: popup links to PDF files

Re: Mandarin... Internationalization, Localization

2004-08-03 Thread John Dowdell
At 9:24 AM 8/3/4, Gonzo Rock wrote: I am soliciting paid help with this project. Our large CF application, (estimate ~900 cfm files), needs to be localized for Taiwan. For finding a service, web searches like localizing website chinese pulls up services. For Mandarin/Taiwan, it gets a little

Re: [CFCDev] CFC webservice issues - round two

2004-08-03 Thread Cutter (CF-Talk)
Ok, that explains a few things. The CategoryServices.cfc is a facade for the category.cfc (which is a catagory object). Man, this stuff is too confusing. I wonder if I'm even on the right track now. I have a subcategory complex datatype object which has complex datatypes within it's own

Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Burns, John D
Anyone else having this problem?It seems to have just started today and it seems to be a little random.Only certain people and only certain messages.I don't have any weird filtering set up for words or anything.I've just added SPAM to the junk senders list and it moves that stuff now.Earlier it

Re: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Barney Boisvert
Did you try setting up a rule to send anything from houseoffusion.com to a folder, and stop processing rules?That should solve it (because the junk filter won't ever process the messages), I believe, though I haven't screwed with Outlook's rules and spam filtering for a while. Better option would

Re: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Jeff Small
Anyone else having this problem?It seems to have just started today and it seems to be a little random.Only certain people and only certain messages.I don't have any weird filtering set up for words or anything.I've just added SPAM to the junk senders list and it moves that stuff now.Earlier

Re: Where is the request coming from?

2004-08-03 Thread Troy Simpson
Well I was trying to restrict which host could make request to this JRun Instance with the interface attribute in the jrun.xml file.But the connector did not use the IP Address I thought it was going to use. I thought the Apache connector was going to use IP Address 10.1.79.83 but it used IP

RE: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Vince Bonfanti
I assume you're using Outlook 2003? If so, right click on any CF-Talk message (this one will do), and select Junk E-mail-Add Recipient to Safe Recipient's List, then this problem won't happen anymore. Vince From: Burns, John D [mailto:[EMAIL PROTECTED] Sent:

RE: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Pascal Peters
It doesn't do that for me, but you can just add cf-talk to your safe recipients list. Pascal -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 03 August 2004 21:48 To: CF-Talk Subject: Outlook moving messages to cf-talk to 'Junk E-mail' folder?? Anyone else

Re: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Rey Bango
It's been happening to me for awhile. I bet some people are on hosting providers that cater to known spammers. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Michael Dinowitz
I've changed the site and sped it up, but have not changed the mail in a bit. - Original Message - From: Burns, John D [EMAIL PROTECTED] Date: Tue, 3 Aug 2004 15:47:53 -0400 Subject: Outlook moving messages to cf-talk to 'Junk E-mail' folder?? To: CF-Talk [EMAIL PROTECTED] Anyone else

Breeze account

2004-08-03 Thread Michael Dinowitz
Does anyone here have a Breeze account or server? I've been asked to present to a CFUN next week on RegEx and if I can do it over Breeze, it'll be great. I do have Flashcomm, but all I can do with that is type my examples in the text area. Thanks -- Michael Dinowitz http://www.houseoffusion.com

Re: Multiple (n) Entries on a Form...How to Handle?

2004-08-03 Thread Matt Robertson
As a rule I don't like to use hidden form fields given the security implications.This is one of the few exceptions.So long as you scrub your form inputs on post you shouldn't have a problem with code injection.If someone alters this value with a valid numeric they arent' going to accomplish a

Re: Where is the request coming from?

2004-08-03 Thread Barney Boisvert
Is that IP the primary address for the interface?I'm nothing of a network guru, but I'd imagine that that the primary address is the first choice, if all the addresses can get to the destination host.I definitely know that the IP the apache vhost is listening on will have nothing to do with the

RE: Outlook moving messages to cf-talk to 'Junk E-mail' folder??

2004-08-03 Thread Burns, John D
That's what I did.I was just curious if anyone knew why, technologically, some messages were getting flagged like this. John -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 03, 2004 4:03 PM To: CF-Talk Subject: RE: Outlook moving messages to

Re: Mandarin... Internationalization, Localization

2004-08-03 Thread Gonzo Rock
And so now you know why I am willing to pay someone to do this for me ;-)Do you have any connections in Taiwan using CF who do this for a living? At 12:33 PM 8/3/04, you wrote: At 9:24 AM 8/3/4, Gonzo Rock wrote: I am soliciting paid help with this project. Our large CF application,

Trying to uplaod a file using CFFILE, I am getting an error...

2004-08-03 Thread Brian Yager
I am getting an error that the form field does not contain a file. Here is the code from the first page form action="" method=post enctype=multipart/form-data name=form input name=myfile type=file > input name=up_thefile type=hidden value= id=up_thefile input name= type=submit /form script

Re: HELP! Forgot cfadmin password

2004-08-03 Thread Don
Strange, the solution below did not work for a cfmx installation on a win 2k prof machine.Cf admin still requires password, even restarted cf service to no avail. You can disable the password, then run CF Administrator and reset it. Disabling the password will require access to either the

What is that *.XML configuration file for?

2004-08-03 Thread Troy Simpson
What is the web.xml configuration file for? What is the jrun-web.xml configuration file for? From what I gather, the web.xml configuration file is a standard used in all J2EE applications, not just JRun/CFMX.Where Can I find out more information about this.The Macromedia documenation just

  1   2   >