RE: When CFHTTP fails, use WGET

2002-11-26 Thread Craig Dudley
I use a self written java cfx, took 2 hrs to write (I'm a java n00b) and is massively faster than cfhttp, granted it's a little more simple but it works well. Using a w32 utility with cfexecute is likely to be even slower than cfhttp, I wouldn't go there to be honest. If your'e already doing it,

Flash and CF Integration

2002-11-26 Thread SMR
I'm doing my first Flash and CF integration app and have a list of questions. I have to dynamically display data in 14 text boxes as well as have up to 36 dynamic lines connecting the boxes based on query results. Im not sure if this is possible with flash. I have my template done in flash

Cfpop - ordering latest first

2002-11-26 Thread Ryan Mitchell
Hello Im writing a simple mail app, and I'm looking for a way to get cfpop to list the last message received first. Im sure theres a simple way to do this that im missing, but for the life of me I cant find it! TIA Ryan ~|

Re: When CFHTTP fails, use WGET

2002-11-26 Thread Zac Spitzer
Craig Dudley wrote: I use a self written java cfx, took 2 hrs to write (I'm a java n00b) and is massively faster than cfhttp, granted it's a little more simple but it works well. Using a w32 utility with cfexecute is likely to be even slower than cfhttp, I wouldn't go there to be honest. If

RE: Writing a file with CFFILE

2002-11-26 Thread S . Isaac Dealey
You mean enabled -- or doesn't disable js... This is true -- but it's the only way I know of to preserve the original format of the text, including html, and allow it to be updated after the fact. HTMLEditFormat() or any other kind of string manipulation going into the form field will change the

RE: Locking Session Vars (CF5)

2002-11-26 Thread Raymond Camden
It is certainly not required anymore (under MX). You should only need to lock them for race conditions. === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] WWW : www.camdenfamily.com/morpheus

RE: Cfpop - ordering latest first

2002-11-26 Thread cfhelp
Use the message number. cfset list=#reverse(messagenumber)# cfouput cfloop list=#Lisr# index=LoopMessagenumber Output info where LoopMessagenumber IS CFPOPQryMessagenumber /cfloop /cfoutput Rick -Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

clientmanagement cause Page Expired in MX

2002-11-26 Thread E. Keith Dodd
Have found that enabling clientmanagement in the application tag (in Application.cfm) in MX causes html forms to behave differently than if clientmanagment attribute is No or omitted. (Only a problem on remote, shared server; not locally.) If fill in part of a form, submit, then go back all form

RE: clientmanagement cause Page Expired in MX

2002-11-26 Thread Mark A. Kruger - CFG
Keith, Where are your client variables being stored? Registry or database? -mk -Original Message- From: E. Keith Dodd [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 8:49 AM To: CF-Talk Subject: clientmanagement cause Page Expired in MX Have found that enabling

RE: Form Field validation tag -- need help (EBW)

2002-11-26 Thread S . Isaac Dealey
I would probably make the default for max longer than 1 -- 20 or 50 maybe... 20 is the default length for html form fields. 50 is the default size of MS SQL Server varchar columns. I would probably also use instead of [not provided] as the default for fieldname and equalfieldname -- if

RE: Writing a file with CFFILE

2002-11-26 Thread Mosh Teitelbaum
I'd agree, there's probably no perfect solution. I just wanted to point out (what, surely, everyone already knows) that relying on JavaScript can be dangerous. Personally, for double-quotes, I've always had great success by replacing all double-quotes with quot; and then reversing the

Re: Can a form pass a structured variable to target template? (EBW)

2002-11-26 Thread S . Isaac Dealey
If my form has 15 fields in it, rather than passing all 15 fields to the target template, could I... - create a struct variable (e.g. UserProfile), - name each form field as a variable under the struct (e.g., UserProfile.FirstName, UserProfile.LastName) - still be able to use the

RE: clientmanagement cause Page Expired in MX

2002-11-26 Thread Tony Weeg
this would be cool to know. however, I remember reading somewherethat once stuff is posted from a form to a page, if you try to go back to that page, that was derived based on a form posting, that those values will no longer be there. is this true? ..tony Tony Weeg Senior Web Developer

RE: clientmanagement cause Page Expired in MX

2002-11-26 Thread Tony Weeg
database. for me. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 9:57 AM To: CF-Talk

RE: Cfpop - ordering latest first

2002-11-26 Thread Lofback, Chris
In CF5, I use QofQ to handle this: CFPOP ACTION=GETHEADERONLY NAME=TempGetEmail ... CFQUERY NAME=GetEmail DBTYPE=query SELECT * FROMTempGetEmail ORDER BYMessageNumber /CFQUERY With this, you can sort by any CFPOP field. Chris Lofback Sr. Web

RE: Cfpop - ordering latest first

2002-11-26 Thread S . Isaac Dealey
-Original Message- From: Ryan Mitchell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 5:50 AM To: CF-Talk Subject: Cfpop - ordering latest first Hello Im writing a simple mail app, and I'm looking for a way to get cfpop to list the last message received first. Im

clientmanagement cause Page Expired in MX

2002-11-26 Thread Keith Dodd
Both local and remote set to cookies. Host did try other settings, but none seemed to make a difference. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Java in CF (CFMX)

2002-11-26 Thread Dick Applebaum
Joe Your example, does, in fact work. Of course, I needed to modify the Java code to specify a different database -- none of the MS databases appear to work on Mac OS X (or and non-win platform) :) This is enough to get me started -- I will add the flexibility to the interface so it will

Can a form pass a structured variable to target template? (EBW)

2002-11-26 Thread Keith Dodd
Was trying to use the WDDX method to pass a long form set. Would only pass a random 10 fields. Found by searching on this forum that this is a known MX bug. Workaround is to Duplicate the form first, then serialize with WDDX. Worked fine sending the total form as structure via wddx IF did the

Re: Flash and CF Integration

2002-11-26 Thread Samuel R. Neff
Yes, this can be done in Flash. We're working on a very similar application where it maps items to a grid and then draws connectors between related items. Regarding layers, the first thing to remember is that they are only used for z-order and organization. AFAIK, they don't actually exist

RE: Flash and CF Integration

2002-11-26 Thread dennis baldwin
Also, please feel free to check out www.devmx.com for more info on Flash/CF integration. Regards, Dennis -Original Message- From: Samuel R. Neff [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 9:48 AM To: CF-Talk Subject: Re: Flash and CF Integration Yes, this can be done

RE: Writing a file with CFFILE

2002-11-26 Thread Kwang Suh
Used properly, HTMLEditFormat() does not change the content. If you type Hello Goodbye, into a form field, once submitted, it becomes: Hello Goodbye So, this is what you insert into the database. Now, when you *display* the contents of that form field, *if* you *don't* want the browser to

Re: Macromedia-Talk list

2002-11-26 Thread Matt Brown
I for one have too many lists to check. I do not read the CF Community list as it is because the ratio of noise is so high. Reading the CF Macromedia list would be very unlikely. I know that you and Michael do a really good job here and have a well organized system of lists and what is allowed

Membership system?

2002-11-26 Thread Wayne Putterill
Hi, does anyone know of a free CF application to register members and let them fill in info about themselves? Info needs to be photo, email, etc. Ideally there would be a search facility to find members as well. Basically it's a contact database I suppose. I have had a look through the developers

Re: Can a form pass a structured variable to target template? (EBW)

2002-11-26 Thread Sam Farmer
Look into using wddx and the cfwddx tag. In short you would create a structure, use the cfwddx to convert it to wddx, use a hidden variable to pass the wddx packet to the receiving page and then use cfwddx to convert the packet back to a structure. Its exactly what wddx and cfwddx is designed

Re: Can a form pass a structured variable to target template? (EBW)

2002-11-26 Thread S . Isaac Dealey
Look into using wddx and the cfwddx tag. In short you would create a structure, use the cfwddx to convert it to wddx, use a hidden variable to pass the wddx packet to the receiving page and then use cfwddx to convert the packet back to a structure. Its exactly what wddx and cfwddx is

E-Commerce, and Variations

2002-11-26 Thread Chris Alvarado
Hello all, Wanted to pick your brains on some DB related stuff. Currently working on an E-Commerce site and deal with product variations (size / color - which relates to price) and was curious to know if anyone has any suggestions on table structure to best handle this, or know of any good sites

RE: Can a form pass a structured variable to target template? (EB W)

2002-11-26 Thread Robertson-Ravo, Neil (RX)
Why dont you take those reigns :-) -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: 26 November 2002 16:16 To: CF-Talk Subject: Re: Can a form pass a structured variable to target template? (EBW) Look into using wddx and the cfwddx tag. In short you would

RE: Can a form pass a structured variable to target template? (EB W)

2002-11-26 Thread grant
There is an article on using CFWDDX for serializing and deserializing complex data types for use with client variables. Although this isn't exactly what the original author of this thread is looking to do, the source code examples, etc. will likely be very helpful. It's in 2002 Volume 4,

RE: E-Commerce, and Variations

2002-11-26 Thread Dowdell, Jason G
Actually, I just went through the exact same scenario. Basically you'll need to create an item table, a attribute_group table, an attribute table, and an item_attribute_lookup table. Store your basic attribute types in the attribute_group table... size, color, weight. Then in the attribute table

Re: E-Commerce, and Variations

2002-11-26 Thread Paul Giesenhagen
Here is the configuration that siteDirector uses The below system allows you to re-use option groups on multiple products. Product Table === productID, title, sku ect.. 1prod xxx, Option Table optionID, optionName 1Color 2

RE: Can a form pass a structured variable to target template? (EB W)

2002-11-26 Thread grant
Forgot to say, that's in CFDJ -- ColdFusion Developers Journal. Quoting [EMAIL PROTECTED]: There is an article on using CFWDDX for serializing and deserializing complex data types for use with client variables. Although this isn't exactly what the original author of this thread is looking

RE: Can a form pass a structured variable to target template? (EB W)

2002-11-26 Thread Jeffry Houser
Unless I am really mistaken, you didn't mention what magazine. Presumably it is the ColdFusion Developer's Journal? At 10:40 AM 11/26/2002 -0600, you wrote: There is an article on using CFWDDX for serializing and deserializing complex data types for use with client variables. Although this

(ot) java help

2002-11-26 Thread Owens, Howard
I'm working on learning Java ... have come to my first issue that I can't solve myself. Any java programmers out there want to answer questions from me? I tried finding a java discussion list for beginners and the only one I found seems to be too inactive to be much help. H.

RE: (ot) java help

2002-11-26 Thread Adrian Lynch
I'll give it a go :O) -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: 26 November 2002 17:07 To: CF-Talk Subject: (ot) java help I'm working on learning Java ... have come to my first issue that I can't solve myself. Any java programmers out there want to answer

RE: (ot) java help

2002-11-26 Thread Matthew Small
I'll help when I can. Matthew Small IT Supervisor Showstopper National Dance Competitions 3660 Old Kings Hwy Murrells Inlet, SC 29576 843-357-1847 http://www.showstopperonline.com -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 12:12 PM

RE: Writing a file with CFFILE

2002-11-26 Thread Steve Reich
Yes...it is. I am using just as you described and it is perfect! Thanks, Steve -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 10:51 AM To: CF-Talk Subject: RE: Writing a file with CFFILE Used properly, HTMLEditFormat() does not change the

OT: Freeware mail servers

2002-11-26 Thread Timothy Heald
Howdy. I am running a server at my house (adsl, speak easy, sweet) I have all the server software I want except for a mail server. I am looking for something, free, runs on Windows 2000 AS, and has a GUI for admin (don't want to learn a whole bunch of command line junk, yeah I am lazy, I

RE: (ot) java help

2002-11-26 Thread Craig Dudley
There are a good few of us learning java on here, just ask away. With the advent of CFMX, java questions are hardly OT. Craig. -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: 26 November 2002 17:07 To: CF-Talk Subject: (ot) java help I'm working on learning Java

Re: Freeware mail servers

2002-11-26 Thread Bryan Stevenson
ArgoSoft Mail Serverfree...fast installsuper simple GUI...no command line nonsense...up and running in 5 minutes ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

Re: Freeware mail servers

2002-11-26 Thread Bob Haroche
I use Mercury Mail server (by the developer of Pegasus Email client), and Cerebus FTP server. Both are free and run on Win2K. Mercury has a good reputation. I like Cerebus b/c it allows setting directory access permissions based on user rights, but I can't say one way or another how hacker proof

RE: (ot) java help

2002-11-26 Thread Rob Rohan
I read a java book once. :) Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Owens, Howard [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 9:07 AM To: CF-Talk Subject: (ot) java help I'm working on

RegEx Question

2002-11-26 Thread Duane Boudreau
I'm not sure why I can not get this to work. What am I doing wrong? I want to replace !--s1--*!--e1-- TIA, Duane cfset myStr1 = blah !--s1--x1 y2!--e1-- blah cfset myStr2 = abc cfset newStr = ReReplaceNoCase(myStr1, !--s1--[*]!--e1--, !--s1--#myStr2#!--e1--)

Re: Freeware mail servers

2002-11-26 Thread samcfug
Tim I have not found a freeware mail server for the Windows platform, but I have both a Windows server and a Linux server, and on the Linux box, both of the very popular Sendmail and Postfix are open source (free) and both are very easily configurable for anti-spam and anti-virus scanning. There

RE: Freeware mail servers

2002-11-26 Thread Mark A. Kruger - CFG
Anyone use Argosoft's email server? 88$ - nice features. It seems reasonable to me - and it comes with web mail (if you want). -mk -Original Message- From: samcfug [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 11:45 AM To: CF-Talk Subject: Re: Freeware mail servers Tim

RE: Freeware mail servers

2002-11-26 Thread Timothy Heald
Thanks for all the advice people. I will look into them when I get home tonight. I really want to run a Linux box eventually, but until I can run my licenses for CF and SQL Server on them I will have to stick with M$ products :) Thanks Tim -Original Message- From: samcfug

RE: RegEx Question

2002-11-26 Thread Justin MacCarthy
I'll explain why this doesn't work. !--s1--[*]!--e1-- This replaces !--s1-- followed by anything followed by !--e1--. The problem is that Regexs are greedy so this replaces !--s1-- followed by anything _including_ !--e1-- What you want is to replace !--s1-- followed by anything UNTIL !--e1--.

RE: Freeware mail servers

2002-11-26 Thread Duane Boudreau
Serv-U is an awesome FTP server product. Its the best $40 I've ever spent. -Original Message- From: samcfug [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 12:45 PM To: CF-Talk Subject: Re: Freeware mail servers Tim I have not found a freeware mail server for the Windows

CFDIRECTORY FILTER MX

2002-11-26 Thread Sam Roach
I need a little help with the CFDIRECTORY tag... This used to work fine in cold fusion 5. But in MX it returns to many files. CFDIRECTORY DIRECTORY=d:\inetpub\wwwroot\tempdir\ NAME=myDirectory FILTER=*0?.html SORT=datelastmodified, name ASC This returns the same results

Re: Freeware mail servers

2002-11-26 Thread Bryan Stevenson
yup..I use ArgoSoft...but mine was free not $88 Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

Re: Freeware mail servers

2002-11-26 Thread samcfug
I host a very large web site on my RedHat box, and it does an ODBC connection to SQL2000 on the Windows machine. Works like a charm, and very stable. It also runs CF 5.0 just fine. = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org

RE: Freeware mail servers

2002-11-26 Thread Timothy Heald
Yeah, But I would need another box :) -Original Message- From: samcfug [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 12:58 PM To: CF-Talk Subject: Re: Freeware mail servers I host a very large web site on my RedHat box, and it does an ODBC connection to SQL2000 on

RE: Freeware mail servers

2002-11-26 Thread Mark A. Kruger - CFG
Bryan, Reading the docs it indicates that to support multiple domains (meaning the same username on more than one) I need the pro version. Still seems reasonable though. -mk -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 11:52 AM To:

Processing .htm files as .cfm

2002-11-26 Thread Paul Wilson
Which file do i need to change to process .htm files as .cfm? Thanks ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4

RE: Writing a file with CFFILE

2002-11-26 Thread S . Isaac Dealey
umm... no ... Try this input type=text name=name value=#htmleditformat(myvar)# Then type 'Jim the Man davis' into that form field, drop it into a persistent variable or a database, retrieve it from that location and populate the form with it (as above), submit the form and save it to the same

Re: Freeware mail servers

2002-11-26 Thread Bryan Stevenson
A..that makes sense. I was using it for 1 client (i.e. 1 domain) so he could have mail while in development ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

RE: Writing a file with CFFILE

2002-11-26 Thread S . Isaac Dealey
textarea name=myhtmlcfoutput#mytextarea#/cfoutput/textarea Oops... I left out the htmleditformat() textarea name=myhtmlcfoutput#htmleditformat(mytextarea)#/cfoutput/textarea Isaac ~| Archives:

isDefined() finesse

2002-11-26 Thread j cc
cfif isDefined(Form.SerNum#i#) at first I thought it would be isDefined(evaluate(form.serNum#i#)) BUT what you had worked fine when i put it in CF 5. for a test I did this... form name=foo action=test.cfm method=post input type=hidden name=serNum1 value=foo input type=submit value=go

RE: Processing .htm files as .cfm

2002-11-26 Thread David Notik
Hi Paul: This is actually a setting in your web server software. Assuming you use IIS, you will go into your web site's Properties Home Directory Configuration, and on the Mappings tab you'll notice all the various extensions your web server processes and the path to the application or library

Server Problems When Code is Not Locked (was RE: Application vari ables)

2002-11-26 Thread Haggerty, Mike
Here is a case study in the use of locks around session and application variables. Read on, at the end I have a few questions to the great minds and gurus of this list (especially Raymond Camden). The project I am working on right now is the rewrite of an application which never should have gone

RE: Processing .htm files as .cfm

2002-11-26 Thread chris regan
You have to change the IIS settings. Under the Home Directory tab: Click on Configuration. Then find the cfm extension and copy the Executable Path. Then change the htm path to read the same. Fred -Original Message- From: Paul Wilson [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November

Re: RegEx Question

2002-11-26 Thread S . Isaac Dealey
I'm not sure why I can not get this to work. What am I doing wrong? I want to replace !--s1--*!--e1-- TIA, Duane cfset myStr1 = blah !--s1--x1 y2!--e1-- blah cfset myStr2 = abc cfset newStr = ReReplaceNoCase(myStr1, !--s1--[*]!--e1--, !--s1--#myStr2#!--e1--) Hey Duane, You might want

RE: RegEx Question

2002-11-26 Thread Jim Davis
-Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 12:37 PM To: CF-Talk Subject: RegEx Question I'm not sure why I can not get this to work. What am I doing wrong? I want to replace !--s1--*!--e1-- TIA, Duane cfset

RE: Server Problems When Code is Not Locked (was RE: Application vari ables)

2002-11-26 Thread Matthew Small
You are trying to fix one problem at a time, and that's all you can do to pinpoint the problem unless there are firm indicators that the problem lies elsewhere. My opinion is that you're on the right track - but don't be surprised if there are other problems as well. You still have to fix these

RE: isDefined() finesse

2002-11-26 Thread Sam Roach
Because the isdefined function doesn't care what the value of the variable you are passing you don't need to use the evaluate function. However if you wanted to output that value you would have to use something like: cfoutput#Evaluate(form.serNum#i#)#/cfoutput -Original

PHP resource

2002-11-26 Thread j cc
PHP has probably the best online documentation around. Every question I've had, from coding to installation, has been covered by their docs. http://php.net as far as how different, i'd say it's closer to asp than cf, mainly b/c of the code and logic flows, but knowing cf it's very easy to

RE: Writing a file with CFFILE

2002-11-26 Thread Kwang Suh
This is wrong. Are you, per chance, using htmlEditFormat() in the database query? -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 11:05 AM To: CF-Talk Subject: RE: Writing a file with CFFILE umm... no ... Try this input

RE: Writing a file with CFFILE

2002-11-26 Thread Steve Reich
Actually yes. Run this code in a blank page and save all day. Check the results in studio. As was my original problem, you are over thinking this. This is exactly what HTMLEditFormat() was designed for. Hope this clear up the confusion !--- Snip --- cfif isDefined('form.fieldnames')

PRN and NUL.cfm Attacks?

2002-11-26 Thread Joshua Miller
Has anyone else seen any of these attacks coming across their servers? Someone has been scanning several of the sites on our server for: /nul.cfm and /prn.cfm Information on the PRN Vulnerability: http://packetstormsecurity.nl/9906-exploits/windows.prn.flaw.txt Information on the NUL

RE: Server Problems When Code is Not Locked (was RE: Application vari ables)

2002-11-26 Thread Mike Brunt
One thing along those lines, look for calls to cfx_ tags. Often these were not written with good memory management practices and I always lock calls to those also. Kind Regards - Mike Brunt, CTO Webapper Blog http://www.webapper.net Web site http://www.webapper.com Downey CA Office 562.243.6255

Re: Freeware mail servers

2002-11-26 Thread samcfug
Of course - Dell is selling them for only $599. with free shipping - LOL Dude, you gotta get a Dell! = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org = - Original Message - From: Timothy

RE: Java in CF (CFMX)

2002-11-26 Thread Jeffrey Polaski
Personally, I'd like to see CF Script expanded to deal with strongly typed code. It would be extremely cool to be able to run code from a different languages in a cfscript block (kinda' like MS's Scripting Host). I can see a couple of other benefits to having inline Java code: Stronger

RE: Writing a file with CFFILE

2002-11-26 Thread S . Isaac Dealey
umm... no ... htmleditformat() converts potentially harmful characters ( , etc ) into html entities. An html entity is used to place characters in the display of an html page which aren't supposed to be allowed ( although browsers often if not usually allow them anyway ) in an html document

RE: Processing .htm files as .cfm

2002-11-26 Thread Tony Weeg
is this cf5 or cfmx? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: chris regan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 1:16 PM To: CF-Talk Subject: RE:

RE: Server Problems When Code is Not Locked (was RE: Application vari ables)

2002-11-26 Thread Douglas.Knudsen
In my experience, PCode errors were usually the result of not using cflocks where needed. IMHO, you are on the right track moving schtuff to the request scope. From an earlier posting by Mike Brunt, and what I do in my apps, I'd suggest using In Application.cfm cflock scope=SESSION

RE: Java in CF (CFMX)

2002-11-26 Thread Rob Rohan
I think someone at MM should look up BSF. Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Jeffrey Polaski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 10:50 AM To: CF-Talk Subject: RE: Java in CF (CFMX)

RE: Freeware mail servers

2002-11-26 Thread Pete Freitag
have you looked into JAMES? http://jakarta.apache.org/james/ it's an open source java mail server. It is configured via XML files, but you can do some powerful stuff with it like store mail in a JDBC datasource, or write custom mail filters in java. _

RE: Processing .htm files as .cfm

2002-11-26 Thread David Notik
That's actually a great question. I've never tested it with CFMX, which is radically different in how it processes everything (uses JRun, etc...). I just now tried it, and IE just endlessly tries to open the file, which leads me to believe that JRun.dll doesn't want to parse it. Oh well. --D

RE: Writing a file with CFFILE

2002-11-26 Thread Kwang Suh
No, it doesn't. Jeez, I use this function every time I have a form element - including textarea - and it ALWAYS works properly. Otherwise, how in God's name are you ever going to be able to edit: Hello There? You HAVE to escape the quotes in the value attribute of an input field - or else the

RE: Writing a file with CFFILE

2002-11-26 Thread Steve Reich
Run the code... then tell me it still won't work that way. Is it possible you're wrong? Steve -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 1:53 PM To: CF-Talk Subject: RE: Writing a file with CFFILE umm... no ... htmleditformat()

RE: Processing .htm files as .cfm

2002-11-26 Thread CKR
I'm using cf5 and IIS -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 1:58 PM To: CF-Talk Subject: RE: Processing .htm files as .cfm is this cf5 or cfmx? .tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet

What is this???

2002-11-26 Thread Shawn Regan
Hello, I have debugging turned off in the cf admin, but I keep getting this at the top of a page from time to time. HTTP/1.1 200 OK Server: Microsoft-IIS/5.0 Date: Tue, 26 Nov 2002 17:14:07 GMT Connection: close Content-type: text/html Page-Completion-Status: Normal Page-Completion-Status:

RE: Processing .htm files as .cfm

2002-11-26 Thread Christine Lawson
Take a look at this technote and change .dbm to .htm: http://www.macromedia.com/v1/Handlers/index.cfm?ID=23258Method=Full Regards, Christine Lawson Macromedia -Original Message- From: David Notik [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:19 PM To: CF-Talk Subject:

RE: Processing .htm files as .cfm

2002-11-26 Thread Tony Weeg
no it works fine with cfmx, heck I have some .tony files that are parsed by it, .anything can be parsed by either, its just that the setup for both is different. email me off list, if you want instructions for cfmx...i had much problems with this, and have got it down to a science ;) ..tony Tony

RE: Processing .htm files as .cfm

2002-11-26 Thread Tony Weeg
are you having problems as well? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: CKR [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:22 PM To: CF-Talk Subject:

RE: What is this???

2002-11-26 Thread Tony Weeg
are you using cfform tags on the pages? and are you running cf5? I bet you are ;) ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]]

CFMX email help

2002-11-26 Thread Kris Pilles
I am unable to send email accept to accounts on my email erver::: I am getting the following error: Sending failed; nested exception is: javax.mail.SendFailedException: Invalid Addresses; nested exception is: javax.mail.SendFailedException: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] Anybody

Re: What is this???

2002-11-26 Thread Peter Mayer
Have you turned on http compression in the IIS settings? If I remember correctly there are many problems with the built-in-http-compression (including just some header as output). Peter I have debugging turned off in the cf admin, but I keep getting this at the top of a page from time to

RE: Processing .htm files as .cfm

2002-11-26 Thread Tony Weeg
that's really cool christine, thanks for the page I didn't know it was there, and sooo many of us have tried to explain the easiest way to do it!!! thanks again! ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: Large Corporations that use ColdFusion

2002-11-26 Thread Ben Arledge
FYI... Add NEC/Mitsubishi... http://www.necmitsubishi.com/products/index.cfm Cheers, Ben -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED]] Sent: November 19, 2002 8:07 AM To: CF-Talk Subject: RE: Large Corporations that use ColdFusion Some clients I worked with on

RE: Server Problems When Code is Not Locked (was RE: Application vari ables)

2002-11-26 Thread Haggerty, Mike
Doug; Thanks for the reply. Except for some custom modules I am not concerned with at this time, the main application really only uses heavy SQL on one page (the one where it places all the structures in the application scope). There it runs 26 queries, all of which take some time to run and

RE: PRN and NUL.cfm Attacks?

2002-11-26 Thread Haggerty, Mike
Seen a few, not an issue on my linux boxes. M -Original Message- From: Joshua Miller [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 1:37 PM To: CF-Talk Subject: PRN and NUL.cfm Attacks? Has anyone else seen any of these attacks coming across their servers? Someone has

RE: CFMX email help

2002-11-26 Thread Tony Weeg
looks like a mail server relay issue rather than a cf issue. does the server have the authority to send messages to people outside of the network it is on? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: What is this???

2002-11-26 Thread Robert Everland
That's the same output I get when I go to the developers exchange and try to log on. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original Message- From: Peter Mayer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 2:43

Re: CFMX email help

2002-11-26 Thread Howie Hamlin
It means that your email server is not configured to allow relay mail from your ColdFusion server. Typically, you would add the IP address of the ColdFusion server to the allowed list of the mail server. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. -

RE: What is this???

2002-11-26 Thread Tony Weeg
I only see that when I used to use cf5 and cfform tagsodd things...very odd things. and when I sent an email to the list, I got no good response either ;) ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337

RE: What is this???

2002-11-26 Thread Tony Weeg
and now, using cfmx no issue with cfform tags and those strange headers. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: What is this???

2002-11-26 Thread Rob Rohan
Prolly has to do with HTTP/1.1 400 Bad Request ( The data is invalid. ) Via:1.1 SCW-ISA Connection: close Proxy-Connection: close Pragma: no-cache Cache-Control: no-cache Content-Type: text/html Content-Length: 3116 Thats MS proxy is it not. Wonder if MS messes with header

RE: What is this???

2002-11-26 Thread Rob Rohan
Rather load balancer Rob http://treebeard.sourceforge.net http://ruinworld.sourceforge.net Scientia Est Potentia -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 11:37 AM To: CF-Talk Subject: RE: What is this??? That's the same

Office XP anf CF

2002-11-26 Thread WebSite CFtalk
Hello, I have not been able to use any of the examples on cfcomet on Word 2002. Has something change from Word2000 to 2002? Has anyone got working examples for Word2002? Thanks Helge Hetland ~| Archives:

  1   2   >