Yet another reason why I hate Netscape

2001-09-20 Thread t nelson
Hi all, I am working on an application which uses some a session variables. It works perfectly in IE (of course), however when I try to load the exact same page(s) in netscape the variable does not exist. I even went so far as to write a couple of simple test pages. All they do is set a

Re: Listcontains question

2001-09-20 Thread Nelson Winters
Carlo, ListContains works correctly as described in the Language reference. For what you want, check out ListFind and ListFindNoCase. Nelson - Original Message - From: van Wyk, Carlo [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 19, 2001 5:27 AM Subject:

Re: Code Red backdoor triggered?

2001-09-20 Thread net_man
How are we fighting this!!! It is killing my server response times!!! Thanks, Robert - Original Message - From: Bill Davidson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 1:32 PM Subject: Re: Code Red backdoor triggered? Getting SLAMMED too...

RE: I've lost a week's work!!!

2001-09-20 Thread Andrew Scott
Which is why, this doesn't sound so silly! After going through that a few times myself, I ended up putting SourceSafe into place even on a single user development. Even if you loose only a days work, is better than a week as a day is much more fresher in your memory. I think studio 5.0 has a

RE: I've lost a week's work!!!

2001-09-20 Thread JAIME HOI
i had that experience before...i remember i was using CF studio 4.5 then. Before that there's some connection to FTP server error..then after that when i reconnect again to the server , all the scripting in the file is gone. 0 bytes!. -Original Message- From: Michael Lugassy

Microsoft Word Coldfusion

2001-09-20 Thread Ianv2
Hi I wish to integrate a ms word document within an existing html page using CF. I would like to display the contents of the word doc within a table in an html page, so it looks as if it was constructed in HTML. Is this possible with Coldfusion, if so what is the procedure for achieving the

Re: cflocation/javascript

2001-09-20 Thread Tony Schreiber
Another approach is to point the form submission back to the original form - where the processing is done at the top and if the submission SUCCEEDS you can cflocate somewhere else. If it fails for whatever reason, the form is presented again, with non-conforming values removed, but the remaining

RE: I've lost a week's work!!!

2001-09-20 Thread Megan Cytron
Look in the windows/temp folder for the machine running CF Studio. Sort it by date or look for files beginning with cf~. I've found quite a few lost files this way... Good luck! Megan [EMAIL PROTECTED] Alpha 60 Design Shop http://www.alpha60.com phone: 202-745-6393 fax: 202-745-6394

RE: asp help

2001-09-20 Thread Brian Silvers
Joshua, First, NEVER EVER EVER send your code with your username and password exposed like you just did. I suggest you change the password immediately so your application doesn't get compromised. Second, what is the connection error message you're receiving? - Brian -Original Message-

RE: I've lost a week's work!!!

2001-09-20 Thread Tilbrook, Peter
Probably not, and CF Studio 5 (RC1) backup doesn't work at all. BACKUP BACKUP BACKUP or at least use something like MS Visual SourceSafe. -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Friday, 21 September 2001 9:36 To: CF-Talk Subject: I've lost a week's

RE: Best Bulk Emailers

2001-09-20 Thread Tilbrook, Peter
IMS (Infusion Mail Server)? http://www.coolfusion.com This list is running it! P.S. - how useful is your website for people with a disability? Seems very graphic intensive, will try and run JAWS through it. Cheers! Peter Tilbrook ColdFusion Applications Developer Australia New Zealand Food

Re: Yet another reason why I hate Netscape

2001-09-20 Thread Jochem van Dieten
t nelson wrote: Hi all, I am working on an application which uses some a session variables. It works perfectly in IE (of course), however when I try to load the exact same page(s) in netscape the variable does not exist. I even went so far as to write a couple of simple test pages.

Re: I've lost a week's work!!!

2001-09-20 Thread Michael Lugassy
Thanks all, I've stayed up late (VERY LATE) and completed the whole thing! :)) My lesson from this: BACKUP, BACKUP, BACKUP and when you've gone through this kind of thing (no backup), don't go to sleep upset, code it again when the CF_stuff is in your head! :) Turned out even better... :))

RE: Moving from Access to SQL server

2001-09-20 Thread Tilbrook, Peter
SQL probably doesn't like SELECT * FROM TABLE - you need to be a bit more specific about what columns you actually require. If your SQL code is good you should be able to upsize to SQL Server without much problems. -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent:

RE: Yet another reason why I hate Netscape

2001-09-20 Thread Tilbrook, Peter
Not much help I guess, I hate Nutscrape too - it just does weird things to even standard HTML code. Rather than using Session variables try using Client variables (stored in a datasource and NOT the registry) to see if you have better luck. -Original Message- From: t nelson

Re: Listcontains question

2001-09-20 Thread Tony Hicks
Try my tag, Container at Developer's Exchange.. its encrypted but free.. and the reactions are totally customizable.. http://devex.allaire.com/developer/gallery/info.cfm?ID=28120AA5-8A73-11D5-83 F300508B94F85Amethod=Full Thanks, Tony Hicks -- Search the Holy Bible:

RE: asp help

2001-09-20 Thread Tilbrook, Peter
What would you espect from an ASP programmer asking for help on a CF list? Additionally anywhere he uses this connection he must recode the connection settings, many of us use much more efficient methods of accomplishing this (application.cfm for example). -Original Message- From: Brian

problem using file upload, cffile and cflocation

2001-09-20 Thread Kola Oyedeji
I have come across some wierd behaviour and wondered if anyone else had run into this. I have a from with a file field which allows a user to upload an image. On the action page I use the cffile tag to upload an image which is saved to a directory and then i cflocate to confirmation page. Now

Re: Encrypting files

2001-09-20 Thread Kay Smoljak
On Wed, 19 Sep 2001 10:57:22 -0400, Chad McCue [EMAIL PROTECTED] wrote: I am trying to find the best way to encrypt a .txt file or just a credit card number going onto that file. I looked at the encrypt function, but after I encrypt the credit card number, I am writing the results to a txt

Re: Want to make a CFX tag but have only CF language expereience

2001-09-20 Thread Kay Smoljak
On Tue, 18 Sep 2001 11:09:14 -0400, Jeremy Allen [EMAIL PROTECTED] wrote: Perl is excellent for parsing data. I'd have to agree with this... I try and stick with the best tool for the job as much as possible and anything to do with parsing text files just screams Perl! to me. CFX tags can also

RE: Yet another reason why I hate Netscape

2001-09-20 Thread Steve Martin
Session vars aren't related to the type of browser you're using. The only dependency on the browser is that it must perpetuate the cfid and cftoken values. This is usually done through a cookie. If Nutscrape has cookies turned off for whatever reason and you are not passing the values from page

RE: Moving from Access to SQL server

2001-09-20 Thread Declan Maher
Heres a good article on upgrading differences. http://www.elementkjournals.com/sql/0001/sql0011.htm I also found in my code the following differences: Access SQL Server Function Now() GetDate() You can use #CreateODBCDate(Now())# around the Now() function

RE: I've lost a week's work!!!

2001-09-20 Thread Thomas Chiverton
I didn't save it in a diffrent location. is there still a Repeat after me. ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

I'm resending - help

2001-09-20 Thread Michael Lugassy
Resending this, please take a look (haven't got response). I have a complexed CFM template that output a result page after a long process.The process includes: connecting to 3-4 diffrent datasources, string manipulation, math calculations, links, includes, everything... I though about the

OT: Integrating email solutions with CF

2001-09-20 Thread W Luke
Hi. Has anyone successfully engineered a solution for database entry by email, using CF - and if so, with which mail server? I'm keen to get this solution working for a client, using Gordano's NTMail software (for example - customers email CSV files to company, which is then validated by CF and

RE: I've lost a week's work!!!

2001-09-20 Thread Robert Forsyth
Look in your temp directories, on my box (CF studio 4.0), when it happens (often), CF has written a .tmp file in the temp directory. Just look for the latest tmp file, open it, and see if your code is in there. HTH Robert -Original Message- From: Michael Lugassy [mailto:[EMAIL

RE: asp help

2001-09-20 Thread Joshua Tipton
The username and password that is there is eroneous. -Original Message- From: Brian Silvers [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 12:51 AM To: CF-Talk Subject: RE: asp help Joshua, First, NEVER EVER EVER send your code with your username and password exposed

Re: asp help

2001-09-20 Thread Mark Campbell
priceless... could be a paths problem Joshua Tipton wrote: The username and password that is there is eroneous. -Original Message- From: Brian Silvers [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 12:51 AM To: CF-Talk Subject: RE: asp help Joshua, First, NEVER

RE: Yet another reason why I hate Netscape

2001-09-20 Thread Tony Schreiber
This is so funny. Pre-1997, we were complaining about how IE did weird things to even standard HTML code... ;p Not much help I guess, I hate Nutscrape too - it just does weird things to even standard HTML code. Rather than using Session variables try using Client variables (stored in a

formatting question

2001-09-20 Thread Jones, Becky
does anyone know how to put a date/time format on this field? cfgridcolumn name=OpenDate header=Opened right now it displays like...2001-08-22 19:37:51 i want it to be 08/22/2001 7:37pm * This e-mail, including any attachments, is intended for

CFWDDX problem

2001-09-20 Thread Mike Kear
CFWDDX problem.. What do I do about this? I want to turn a struct into a WDDX packet, but the name of the struct is dymanic, based on the user id. The struct is called: application.um.#UmID#_Data and the CFWDDX tag is as follows: cfwddx action=CFML2WDDX output=UserDataPacket

RE: formatting question

2001-09-20 Thread Mark Smyth
unless its changed for 5 cfgrid displays exactly how the data is held in the database. Theres no way to format the data using cfgrid, you'll have to format the dat at DataBase level HTH Mark -Original Message- From: Jones, Becky [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 13:47

Converting Word and Excel to HTML

2001-09-20 Thread kbutterly
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C141D3.50AA0870 Content-Type: text/plain; charset=iso-8859-1 Good morning, all Here is my problem. We have a number of Word

RE: CFWDDX problem

2001-09-20 Thread Mark Smyth
wouldn't the evaluate function help here? -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 13:49 To: CF-Talk Subject: CFWDDX problem CFWDDX problem.. What do I do about this? I want to turn a struct into a WDDX packet, but the name of the struct

RE: CFWDDX problem

2001-09-20 Thread Raymond Camden
Since UM is a struct, just reference it as: #Application.Um[UmID].Data# As a general comment - and I've said this before so forgive me for being an old cranky developer (grin), folks, please do not forget the [] notation for structures. It's perfect for stuff like this.

RE: CFWDDX problem

2001-09-20 Thread Rich Wild
the following: cfwddx action=CFML2WDDX output=UserDataPacket input=#evaluate('application.um.' UmID '_Data')# might help you out. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 13:49 To: CF-Talk Subject: CFWDDX problem CFWDDX

Re: CFWDDX problem

2001-09-20 Thread Jason Malfatto
Hmm. Have you tried putting the application variable into a local variable first? e.g.: cfset l_var = evaluate(application.um.#UmID#_Data) cfwddx action=CFML2WDDX output=UserDataPacket input=#l_var# Jason From: Mike Kear [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: CFWDDX problem

2001-09-20 Thread Mike Townend
Youll need cfwddx action=CFML2WDDX output=UserDataPacket input=#Evaluate('application.um.#UmID#_Data')# HTH Mike -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 13:49 To: CF-Talk Subject: CFWDDX problem CFWDDX problem.. What do I do

RE: Converting Word and Excel to HTML

2001-09-20 Thread Mark Smyth
My advise would be to save the word docs as HTML, then make sure the clean the HTML with dreamweaver (theres an option in dreamweaver to do this), otherwise the HTML produced (but word at least) is a bit of a nightmare. Then the HTML you're left with should be more or less workable with, and i

Fw: The Brethren

2001-09-20 Thread corrigan
- Original Message - From: [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 2:53 PM Subject: The Brethren Anyone read The Brethren by Grisham? I'm not one for conspiracy theories, but it wouldn't it be horrible if the CIA chief had that sort of ability? Especially if it were

Fw: Military Leaders (was RE: George W. Bush)

2001-09-20 Thread corrigan
- Original Message - From: [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 2:47 PM Subject: Re: Military Leaders (was RE: George W. Bush) I did write it and I suggest you calm down before rereading and responding to it. First, I am calm (another assumption on your part). Just

RE: CFWDDX problem

2001-09-20 Thread Raymond Camden
No, no no. Please do not use evaluate. Please use [] notation. Again, this is not meant to put you down, Mike, in any way, but as I said, I see _way_ too many people doing this. In fact, 3 people replied to cf-talk suggesting evaluate. Never use evaluate when you don't need to.

RE: Microsoft Word Coldfusion

2001-09-20 Thread Patrick Harkins
Hi: I am not sure what you are asking. You can always format the document using nested tables, but it is slow and painful - must be done by hand coded HTML. As you must know, the built-in Word HTML converter is no good. If you want to save time on a tool to wite the html for you, I tried the

URL Token??

2001-09-20 Thread Rich Tretola
As of yesterday I have a few sites that are showing url tokens like this: CFID=240951CFTOKEN=365f3b6-edb3e95a-6eff-4b92-99eb-252cc4666576 Any idea why the cftoken is such a long string? It was never like this before? Thanks, ~~ Your ad could be

RE: Converting Word and Excel to HTML

2001-09-20 Thread Yager, Brian T Contractor/NCCIM
There is also a product from Verity called Key View Pro. It will allow all browsers to view all Microsoft (plus about a hundred more) extensions without havng to have appliation. Brian Yager President - North AL Cold Fusion Users Group Sr. Systems Analyst NCCIM/CIC [EMAIL PROTECTED] (256)

Re: The Brethren

2001-09-20 Thread corrigan
oops, wrong list. my apologies - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 8:13 AM Subject: Fw: The Brethren - Original Message - From: [EMAIL PROTECTED] Sent: Tuesday, September 18, 2001 2:53 PM Subject:

Re: Military Leaders (was RE: George W. Bush)

2001-09-20 Thread corrigan
That's twice!!! Stupid address book. This is over on cf-talk. - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, September 20, 2001 8:14 AM Subject: Fw: Military Leaders (was RE: George W. Bush)

Six :ines

2001-09-20 Thread Tony Hicks
Someone sent me a devotionals script with a full line of devotionals.. what I need to know is how six lines of perl can be translated to CF.. #!/bin/sh echo Content-Type: text/html echo echo sed -n -e /`date +%m\\\/%d\\\/PM`/,/a name=/p /path/to/mornevebod.html It appears that someone is

Re: JMAIL

2001-09-20 Thread Gary Kraeger
Yes jmail will send 80,000 and more, it depends more on your server config than anything. We have discovered some ways in which we can improve jmail, which will make it at least 10 times faster than it currently is and we are adding the ability to do personalized emails, which has been the

RE: I'm resending - help

2001-09-20 Thread Patrick Harkins
Michael: I read your question and it is not entirely clear but I get the general drift. What you are asking suggests that the architecture of what you are doing is unweildy. Not to be annoying, but you are asking ColdFusion to do too much - believe me I know this from experience. ColdFusion

Get 404 referrer

2001-09-20 Thread Steven Douglas
Hello, I'm trying to capture the http referrer from a 404 page. In the cfadmin I have a page set up to handle the 404, and in the source of that page I am outputting cgi.http_referrer but it comes up blank in both ie and netscape. Is there any other way to capture the referring page, or

RE: URL Token??

2001-09-20 Thread Cameron Childress
I replied to this on the fusebox list, but it didnt' seem to come through... There's a registry setting which will allow you to cause CF to concatenate a UUID onto the CFTOKEN. Maybe someone here remembers what it is? -Cameron Cameron Childress elliptIQ Inc.

RE: CFWDDX problem

2001-09-20 Thread Jason Malfatto
As one of those three, I agree. I responded in haste to the simple problem of evaluating variables within (simple) variables, ignoring the struct aspect of the problem. Jason From: Raymond Camden [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: CFWDDX

RE: I'm resending - help

2001-09-20 Thread Matthew W Jones
If you feel you need to grab the generated content into a variable (for whatever reason) and you are using cf 5, there is cfsavecontent, if you are using something prior to 5 then you could use the cf_bodycontent custom tag (possibly available in dev exchange, for sure available at fusebox.org).

Hosting

2001-09-20 Thread Gary Kraeger
Hello, a friend of mine asked me what the Cold Fusion community wanted in a Cold Fusion hosting company, what I thought the most important issues were to a cold fusion hosting company, price, features, customer services. He wants to start hosting CF sites, they have done ASP and PHP very well

RE: CFWDDX problem

2001-09-20 Thread Mike Townend
Ahh but from the code he posted The struct is called: application.um.#UmID#_Data How would you reference that as [] ? As you posted #Application.Um[UmID].Data# wouldn't that fail as it would be Application.Um[#UmID#_Data] Or am I miles off ? Didn't take it as a put down... Im not the most

RE: Get 404 referrer

2001-09-20 Thread Evan Lavidor
The CGI variable is CGI.HTTP_REFERER (note that it's not spelled the way you want to spell it if you were spelling correctly). If you spell it the way you have below, I don't think CF will throw an error, it just returns a blank value. HTH, Evan -Original Message- From: Steven

Re: asp help

2001-09-20 Thread Dina Hess
An excellent resource for the type of information you require is John Kauffman's book, ASP Databases, WROX Press. In it, you will find information about how to create an ASP connection object to link ADO and your database. - Original Message - From: Joshua Tipton [EMAIL PROTECTED] To:

RE: URL Token??

2001-09-20 Thread Raymond Camden
There is a setting in the CFServer to use UUIDs instead of simple #s for the token value. This is a more secure option. That long number is a UUID. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email

RE: Microsoft Word Coldfusion

2001-09-20 Thread JSchlosser
Is it possible to use CFCONTENT to pull this document into a table cell? JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Patrick Harkins [mailto:[EMAIL PROTECTED]] Sent: Thursday, September

Re: Microsoft Word Coldfusion

2001-09-20 Thread Nelson Winters
Check out www.cfcomet.com -Nelson - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, September 19, 2001 9:19 AM Subject: Microsoft Word Coldfusion Hi I wish to integrate a ms word document within an existing html page using CF. I would like

RE: CFWDDX problem

2001-09-20 Thread Raymond Camden
The struct is called: application.um.#UmID#_Data How would you reference that as [] ? As you posted #Application.Um[UmID].Data# wouldn't that fail as it would be Application.Um[#UmID#_Data] Or am I miles off ? Errr, yes. I was simply testing you guys. Yea, that's it.

Re: cfparam on dynamically numbered checkboxes

2001-09-20 Thread cf refactoring
Kay, According to the http protocol, unchecked control items such as checkboxes and radios are not sent at all. Therefore, your action page will get no clue that they exist. It's just one of those things with forms. You'll have to remember what control items you have in your program. One common

RE: When to use evaluate? (was CFWDDX problem)

2001-09-20 Thread Eric Dawson
Never use evaluate when you don't need to. When do you need to? ? processing CFML contained in a variable? Eric Dawson From: Raymond Camden [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: CFWDDX problem Date: Thu, 20 Sep 2001 09:19:06 -0400 No, no

Re: Integrating email solutions with CF

2001-09-20 Thread Howie Hamlin
We have done things like this with iMS. iMS would make this far easier to accomplish than any other mail server. iMS puts CF in control of every aspect of sent and received email. The situation that you mention here sounds fairly simple but is actually somewhat complicated. For example,

RE: Microsoft Word Coldfusion

2001-09-20 Thread Andrea Wasik
Try www.ektron.com their product ewebeditpro2 is easy to install and use. We use it on our back end in our production department for formatting content into html before inserting it into our database. Andrea Wasik Sr. Web Developer CancerSource 40 Tall Pine Drive Sudbury, MA 01776 978-579-8155

RE: I've lost a week's work!!!

2001-09-20 Thread Adam Reynolds
I know this sounds silly but it must be very hard to keep track of a 15k file. What we talking here? 500 lines of code? I'd recommend breaking up your code into smaller chunks and using cfinclude as much as possible. Sorry about the loss though :( Adam -Original Message- From: Robert

Session expiration

2001-09-20 Thread Paul Brinich
Hey do any of you guys know of a way to have a certain peice of code run before a session variable expires. I want to change a database field when a specific users session expires. Thanks for your help! -Paul -- Paul Brinich Web Developer NC State - DELTA (919)247.6058

RE: CFWDDX problem

2001-09-20 Thread Mike Kear
Yes yes yes. The [ ] notation doesn't work. Creates an error. The error message says [quote] Invalid parser construct found on line 214 at position 78. ColdFusion was looking at the following text: . Invalid expression format. The usual cause is an error in the expression structure.

OT: Apache, Coldfusion, PHP

2001-09-20 Thread P Broussard
Is it possible to run Coldfusion and PHP with Apache at the same time? TIA Phillip ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ:

Re: CFWDDX problem

2001-09-20 Thread stas
But his structure is application.um.#UmID#_Data NOT application.um.#UmID#._Data The difference being that _Data isn't a member of UmID but a part of the name for the KEY itself - Original Message - From: Jason Malfatto [EMAIL PROTECTED] As one of those three, I agree. I responded

Re: XML Parser for CF

2001-09-20 Thread Gary Kraeger
We have a free one at http://www.cfdev.com here is a description of it. CFX_XMLParser is a Fast Java CFX tag that takes an XML document and returns a ColdFusion structure containing the XML document. Our tests show this parser to be about 1000% faster than the MSXML Parser invoked through

RE: Hosting

2001-09-20 Thread Warren Jansons
Interspots in Edmonton Alberta Canada, does CF Hosting. AT $900CND a year, includes CF server 5, Free MYSQL, 20 Emails, 200 megs of Space. www.interspots.com I know Media3.net does CF hosting too. We tried a couple sites with them but their servers are awfully slow. Also Interland.net does CF

RE: Get 404 referrer

2001-09-20 Thread Steven Douglas
DOH!!! Spelling will get you every time! Works just fine now, thanks for your help -Steven From: Evan Lavidor [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Get 404 referrer Date: Thu, 20 Sep 2001 10:12:49 -0400 The CGI variable is CGI.HTTP_REFERER

RE: Converting Word and Excel to HTML

2001-09-20 Thread Patrick Harkins
Hi Kathryn: It depends on the documents themselves how they look when they turn out. Basically, the converted pages tend to look ugly. And as Mark Smyth said, Dreamweaver can clean up the wonky HTML. Yes it is doable with Excel too, in fact I have found that Excel documents tend to turn out

RE: CFWDDX problem

2001-09-20 Thread Rich Wild
Errr, yes. I was simply testing you guys. Yea, that's it. :) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 16:10 To: CF-Talk Subject: RE: CFWDDX problem The struct is called: application.um.#UmID#_Data How would you

RE: When to use evaluate? (was CFWDDX problem)

2001-09-20 Thread Rich Wild
I think his point was never use evaluate when there's an alternative - its too intensive. -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 14:54 To: CF-Talk Subject: RE: When to use evaluate? (was CFWDDX problem) Never use evaluate when

RE: CFContent problem - need urgent help

2001-09-20 Thread Dave Watts
We have a site that uses the CFContent tag for downloading files to the user. We ran into problems with it today where it is giving us blank/empty files. If we check the physical file, everything is fine. ... We had the security patches for the Nimda worm applied today, and have

Re: Integrating email solutions with CF

2001-09-20 Thread W Luke
The situation that you mention here sounds fairly simple but is actually somewhat complicated. For example, most outlook users leave their default settings which means that the mail would be html formatted. Also, there is a chance that the mail could be quoted printable or base64 encoded as

Multiple Processors

2001-09-20 Thread Chad Gray
Does CF 4.5 take advantage of Dual Processor computers? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ:

RE: CFWDDX problem

2001-09-20 Thread Raymond Camden
Yes yes yes. The [ ] notation doesn't work. Creates an error. The error message says Um, you forgot to remove the . cfwddx action=CFML2WDDX output=NewDataPacket input=#application.um.[UmID]_Data# Should be cfwddx action=CFML2WDDX output=NewDataPacket

Unsecured tags directory more than one???

2001-09-20 Thread Mark W. Breneman
We do CF hosting for our clients that we developed for. Now one of the clients will be maintaining their static pages and we will only be in charge of the CF based store. They will have FTP access to only their folder, but I am concerned that I am opening up a security hole with the more

CFSILENT

2001-09-20 Thread Bruce Holm
Do you have experience working with CFSILENT tags? I tried using it for the first time and it works if it wraps around blocks of code at the same level in the hierarchy. But if you try to put the /CFSILENT tag inside (below) CFIF, CFLOOP, CFSWITCH, CFOUTPUT, etc while the beginning CFSILENT

Please Help: Parsing URL into Array and structure

2001-09-20 Thread Snyder, Jason
I am working on parsing a URL string and storing it in an array of structures. I am to the point where it works to a certain extent, but not to the point where I need it. To be more specific I am passing a string that should be parsed into two structure elements in the array. The data seems

RE: I've lost a week's work!!!

2001-09-20 Thread Jeffry Houser
It really depends what the file's purpose is. It's not unheard of for me to have a form that is ~500+ lines of code. Should each form element be put in a separate include? I don't see a reason for that. At 02:54 PM 09/20/2001 +0100, you wrote: I know this sounds silly but it must be very

RE: Apache, Coldfusion, PHP

2001-09-20 Thread James Maltby
Yes it is. J -Original Message- From: P Broussard [mailto:[EMAIL PROTECTED]] Sent: 20 September 2001 16:38 To: CF-Talk Subject: OT: Apache, Coldfusion, PHP Is it possible to run Coldfusion and PHP with Apache at the same time? TIA Phillip

RE: Apache, Coldfusion, PHP

2001-09-20 Thread Dave Watts
Is it possible to run Coldfusion and PHP with Apache at the same time? Yes, it is. You can generally run as many CGI programs/application servers as you like with a single web server. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496

RE: CFContent problem - need urgent help

2001-09-20 Thread Dave Watts
I'm not sure if we have those patches - do you know where I can find them? http://www.allaire.com/handlers/index.cfm?id=21566method=full Good luck! Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 ~~ Get the

RE: Hosting

2001-09-20 Thread Billy Cravens
I'm sure you'll get plenty of responses, but I wanted to point out a few things based upon my experience with various hosts: - make sure that client vars are configured to use ODBC, not the Registry - otherwise performance will suffer, affecting the customer - ease of configuring ODBC

Verity Search Results

2001-09-20 Thread Khan, Muhammad
Hi, I need to modify the verity search results. Currently it will return search results with hyper link text. The text that is hyper linked is coming from the Title tag that i have in my files. Is there any ways that i can able to retreive some more text from body tag, just below the hyper

(Admin) Security Mutex

2001-09-20 Thread Michael Dinowitz
Subject: Mutex To: [EMAIL PROTECTED] Blaine Kubesh reported that having an open handle to a mutex named fsdhqherwqi2001 kills Nimda. After posting the app I quickly coded up to do this, others tested it and said it keeps a box from becomming infected both initially and recurrently. Some mail

RE: Microsoft Word Coldfusion

2001-09-20 Thread Dave Watts
Is it possible to use CFCONTENT to pull this document into a table cell? I don't think that's going to work. When you use CFCONTENT, it changes HTTP headers for the entire document to specify the appropriate MIME type. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202)

Re: OT: Apache, Coldfusion, PHP

2001-09-20 Thread Tony Schreiber
Yes. Is it possible to run Coldfusion and PHP with Apache at the same time? TIA Phillip ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

Re: CFWDDX problem

2001-09-20 Thread Craig Fisher
If I understand the question at hand the proper syntax should be: cfwddx action=CFML2WDDX output=NewDataPacket input=#application.um.[UmID _Data]# This will execute faster than the equivalent code using evaluate. Remeber that, with structures, the [] can contain any valid expression that

Re: OT: Apache, Coldfusion, PHP

2001-09-20 Thread Brian Silvers
Yes, I run it on my linux server and I have in the passed installed it on an NT server. Brian Quoting P Broussard [EMAIL PROTECTED]: Is it possible to run Coldfusion and PHP with Apache at the same time? TIA Phillip ~~ Get the

RE: XML Parser for CF

2001-09-20 Thread Rob Gilchrist
Hi Gary I have a site that is about to go live that uses the MSXML parser and I am a bit concerned by your statement that it buckles under load. Do you know what sort of load causes it to fail? and what are the effects when it does fail? Can your CFX_XMLPARSER convert CF Structures into XML?

RE: Apache, Coldfusion, PHP

2001-09-20 Thread Jeremy Allen
Yes. Since PHP and ColdFusion are separate Apache modules. Map your .cfm and .cfml files to the ColdFusion dll and map your .php .whatever files to the PHP DLL. Thats the basics of it.. it is dead easy to do. You can have any number of Apache modules. Thanks Jeremy Allen elliptIQ Inc. --

RE: Apache, Coldfusion, PHP

2001-09-20 Thread Jesse Noller
Yes, it is. Jesse Noller Macromedia Server Development [EMAIL PROTECTED] Peter: Egon, this reminds me of the time you tried to drill a hole in your head, remember that? Egon: That would have worked if you didn't stop me. --Ghostbusters the movie -Original

Re: Hosting

2001-09-20 Thread Mark Campbell
we offer CF/SQL hosting as well for less than half of that give us a shot at your business. http://www.1stchoiceinternational.com any questions drop me a line. [EMAIL PROTECTED] Warren Jansons wrote: Interspots in Edmonton Alberta Canada, does CF Hosting. AT $900CND a year, includes

RE: CFContent problem - need urgent help

2001-09-20 Thread Andrew Tyrone
Shawn, I had this problem too. What Dave said is right -- it IS a permissions problem. He led me to this solution a couple of months ago: I have a PDFS directory that is not in the web root for a certain web application. I serve the PDF files to the user via cfcontent ... The directory

  1   2   >