update year only

2000-05-23 Thread Adrian Cesana
I have a demo system (MSQL7) and want to change all my dates from 1999 to 2000 and 1998 to 1999. There must be some SQL code I can use to do this in one shot, any recommendations? -Adrian -- Archives:

RE: Pound Signs in Field Names

2000-05-23 Thread Philip J. Kaplan
Precisely. The problem, though, is the script based on "#fieldnames#". Ahh, I'll get through it... - Phil -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 12:23 AM To: [EMAIL PROTECTED] Subject: Re: Pound Signs in Field Names SELECT

Authorization error - Directory access not allowed

2000-05-23 Thread Tom Rainey
I really thought this was working yesterday. The code: cfhttp resolveurl="yes" url="http://www.yahoo.com/index.cfm" method="get" cfoutput #cfhttp.filecontent# /cfoutput The error message: CFHttp Authorization error - Directory access not allowed.

Re: update year only

2000-05-23 Thread Nick Slay
Hi Adrian In SQL Server 6 you could use Date Functions in stored procedures or by executing script in the enterprise manager. I would say you can still do this in SQL Server 7. You should be able to do something like: UPDATE tablename SET datefield = DateAdd(yy, 1, datefield) WHERE

Re: Authorization error - Directory access not allowed

2000-05-23 Thread Nick Slay
Could be because the index.cfm page doesn't exist on yahoo.com? If you browse to the url you get a page not found error. Nick At 23:45 22/05/00 -0700, you wrote: I really thought this was working yesterday. The code: cfhttp resolveurl="yes"

Re: CFInclude-Problem

2000-05-23 Thread cftalk
Thanks John, that helped a lot. Uwe SD Solutions Uwe Degenhardt Fon: 08122/903791 Fax: 08122/903792 Web: http://www.sdsolutions.de E-Mail: [EMAIL PROTECTED] - Original Message - From: "John Quarto-vonTivadar" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 22, 2000 5:52 PM

CFPOP Replyto and From --Please tell me its simpler than this

2000-05-23 Thread Sean Renet
I need to autoreply if something is wrong with an attachment I am being sent. The REPLYTO variable of the CFPOP query returns me nothing, so I decided to "RE" my way thru the FROM variable to get the senders email address. Is there a simpler way of doing this? cfpop action="GETALL"

Cold Fusion DSP

2000-05-23 Thread Tibbs
Please explain, what is Cold Fusion DSP? Thanks. -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to

File based DB's

2000-05-23 Thread Helge Hetland
Hello! On Solaris we need to either use a text file or a file based database to accomplish simple tasks (guestbook, counter etc..) What options do I have? The database cannot be registered in CF Administrator, (we have to connect to it directly given it's name and placement as there will be a

Re: CF hosting??

2000-05-23 Thread wayne
Try www.lochnet.co.uk, although I think the server is actually in the states. - Original Message - From: Richard Hart [EMAIL PROTECTED] To: houseoffusion [EMAIL PROTECTED] Sent: Monday, May 22, 2000 3:46 PM Subject: CF hosting?? Hi Does anyone know of a cheap hosting company in the

RE: Problem with Query command

2000-05-23 Thread Holger Lockertsen
In your guestbook-database you should have a primary key; a field that identifies each record in the database. In this example, this is "The_ID": cfquery name="guest" datasource="YourDatasource" SELECT The_ID, TheTitle, TheText (Replace these with your actual fieldnames) FROM YourTable ORDER BY

RE: SQL Server

2000-05-23 Thread Philip Arnold - ASP
Hi - can any hardened CF'ers let me know what they think please. I currently use Access for our CF stuff. I have a quite few tables with maybe 100 rows max in each but one large table with our library catalogue in it that has about 15,000 rows. We've moved to some new CF space where we also

RE: SQL Server

2000-05-23 Thread Nick Slay
SQL Server has stored procedured Access 2000 finally has stored procedures too!! Not that I'm suggesting you use Access of course... but I find it makes developing a site easier using Access initially, and then upsizing to SQL when the site is ready to go live. Saves on a few table drop

OLE DB and SQL Server

2000-05-23 Thread Philip Arnold - ASP
OK, here's the problem... Our intranet server that had my OLE DB testing on it died, and I've lost the settings... now I can't remember how to set-up the damn thing to talk to SQL Server (our on-line server still uses ODBC) Can someone point me in the right direction? Allaire's KB doesn't help

RE: CF hosting??

2000-05-23 Thread Peter Tilbrook
In a bit of an emergency we (in Australia) went to London Web (http://www.londonweb.co.uk). Will let you know how they go. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 23 May 2000 1:14 AM To: [EMAIL PROTECTED] Subject: Re: CF hosting?? Try

cfservlet tag problem

2000-05-23 Thread Rod Tosten
Hello- i am using a very simple HelloWorldServlet that comes with jrun build 157. i get the following error: 500 Internal Server Error com.allaire.jrun.cfx.CFServletInvoker: java.lang.NoClassDefFoundError: com/allaire/wddx/WddxDeserializer i assume it is missing:

Hidden Administration Controls?

2000-05-23 Thread Kevin Merker
First, my roots are multimedia. When I use to develop CD-ROM's we had a trick of having an image like a logo then coding it into Lingo for Director. Whereas, if you knew to hold down the alt key and the control key then moues clicked on a specific image the administration section would open.

Re: Coldfusion Deleted My Outlook Express Mail

2000-05-23 Thread Ken M. Mevand
yes, i'm sure the codes are from CF. i'm doing CF development at that time, and i know the codes when i see them. - Original Message - From: Billy Cravens [EMAIL PROTECTED] Subject: Re: Coldfusion Deleted My Outlook Express Mail Are you sure that you see code generated by CF, or just

OT: SQL 7 Functions

2000-05-23 Thread jeff
Where do I find a list of functions for SQL 7? Specifically today I'm looking for equivalent to CF Randrange(): SELECT TOP 1000 * FROM users WHERE ID IN (randrange(1, 3)) But there has to be a list somewhere. I'm getting frustrated looking through the online help.

IIS not recognizing .cfml extension

2000-05-23 Thread Eric Bradburn
Hi, All I have encountered an issue with displaying pages with the .cfml setting in IIS. I was able to do it previously with netscape server. I have set the extension type to use the same .dll as .cfm files use but I get a 404 when I type in search.cfml. The odd thing is if I type in search.cfml

Re: WDDX OR XML News Feeds

2000-05-23 Thread Dave Hannum
OK, quite a few folks have asked for the code I use so I'll just post it now. First, I had help from this list with this, but I'm sorry that I forgot who to credit with helping me. You know who you are: Here's what I do. You can use Moreover.com for news headline feeds on MANY subjects.

RE: SQL 7 Functions

2000-05-23 Thread Steve Robson
I'm not sure that there is a randrange equivelant, the rand() function returns a real value between 0 and 1, so you would have to include some kind of multimplier to use it in the context below. Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 23 May

Re: SQL 7 Functions

2000-05-23 Thread Justin MacCarthy
From BOL- mathematical functions Using RAND The RAND function calculates a random floating point number between 0 and 1, and can optionally take a tinyint, int, or smallint value for the starting point of the random number to calculate. This example calculates two random numbers. The first

Re: IIS not recognizing .cfml extension

2000-05-23 Thread Rahul
Have u reinstalled CF server after installing IIS ? If no them pls do it so that CF server installation will add all ISAPI extentions to IIS. if u want to mannually add it then pls refer to the same document in allaire's support site. rahul - Original Message - From: Eric Bradburn

organizing search results for multiple collection searches

2000-05-23 Thread Brian P. Doyle
When searching on multiple collections within verity ( a database search to be specific ) is it possible to group the results by which collection they came out of and rank them within that collection? Perhaps output the name of the collection, list the results, then the next collection, list

RE: IIS not recognizing .cfml extension

2000-05-23 Thread Reynolds, Adam
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_000_01BFC4B8.CBF6C6E0 Content-Type: text/plain .cfml? should be .cfm If you need .cfml then attached is the IIS instructions to add it...

RE: Best Editor

2000-05-23 Thread Dan G. Switzer, II
TextPad is another option as well. From what I can tell, the specs on both UltraEdit and TextPad are about identical, but I prefer TextPad... -Dan -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED]] Sent: Monday, May 22, 2000 11:37 PM To: [EMAIL PROTECTED] Subject: RE:

RE: IIS not recognizing .cfml extension

2000-05-23 Thread Bosky, Dave
Looks like its dropping the 'l' or ignoring the fourth character place. -Original Message- From: Eric Bradburn [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 8:46 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: IIS not recognizing .cfml extension Hi, All I

RE: IIS not recognizing .cfml extension

2000-05-23 Thread Reynolds, Adam
Apologies for that one... Here is the text: Setting Application Mappings You can develop Web applications in a number of programming and scripting languages. Internet Information Server (IIS) uses the file name extension of a requested resource on your Web site to determine which ISAPI or CGI

RE: SQL Functions

2000-05-23 Thread jeff
Thanks for the responses. I found "THE LIST" in the SQL Query Analyzer - Help. Looks like I should be able to use the Round() and Rand()functions to get where I want to. -- Archives:

collection vs. query

2000-05-23 Thread Kris Seaney
Hi Guys, I have this output referencing the query that verity indexed. How do I get the data from the search instead of from the query? Kris cfoutput query="choice"tr td width="120"#date#/td td width="120"#type#/td td width="120"#source#/td td width="120"#title#/td td

RE: Hidden Administration Controls?

2000-05-23 Thread Duane Boudreau
You may be able to find this functionality available using DHTML. The problem is that it wouldn't be hidden and it wouldn't be browser independent. Duane Boudreau, Project/Beta Manager, eMPower Director, Web Technologies Ektron, Inc. http://www.ektron.com 5 Northern Blvd, Suite 6 Amherst, NH

RE: collection vs. query

2000-05-23 Thread Brian P. Doyle
if this is the code for your search results page you just replace the query name with the name of the search, however your outputted fields would be different (search.key, search.summary, search.score etc.) -Original Message- From: Kris Seaney [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

newbie to verity

2000-05-23 Thread Kris Seaney
I want you guys to tell me if this is right. I want to use verity to make a database searchable. Here are the steps I think I need to take. 1. query the db 2. make the query results a collection 3. index that collection 4. search the index 5. display the results of the searched index 6. make

test - plz ignore

2000-05-23 Thread Hassan Khawaja
-- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Re: organizing search results for multiple collection searches

2000-05-23 Thread David Berger
The way I've done it is to show a graphic next to the link which defines which collection it is from but first you need to define your custom1 or custom2 during the cfindex process. Example... cfindex action="Refresh" collection="daily" key="id"

Cookies

2000-05-23 Thread Greg Czechowicz
Can I specify a time to expire less that 1 day? Let me know --- THIS E-MAIL AND ITS ATTACHMENTS ARE INTENDED ONLY FOR THE USE OF THE INDIVIDUAL OR ENTITY WHO IS THE INTENDED RECIPIENT AND MAY CONTAIN INFORMATION THAT IS

RE: organizing search results for multiple collection searches

2000-05-23 Thread Brian P. Doyle
That's a good idea except that I use custom1 and custom 2 to construct the url to go to. Custom1 is the url (minus the key) and custom2 is the key that points to the specific result. it's unfortunate that I have to use both customs, but for some of the collections the "key" is not the actual

limit on number of structures in session scope.

2000-05-23 Thread Ben Lowndes
Hello, I'm working on an online store and have been learning about structures. I've managed to cut in half the number of queries I'm doing per page by loading all of the category titles in to a structure and then making the structure an application variable. I'm thinking about doing the same

Re: Query suddenly taking 7 times longer

2000-05-23 Thread Michael Imhoff
The only thing that I could imagine that would cause this would be if there are that many more results or if your indexes aren't set up properly. You should try creating the query in access and then call it with cfstoredproc. You should see a big jump in performance if you do that. If you need

Re: knowledge base

2000-05-23 Thread Michael Imhoff
I built one eons ago and it's located at http://www.tznet.com/knowbase (cf cf to get in) You can have it if you want. If you have to develop something, this might give you an ok start if it already doesn't fulfill your needs. -Michael Michael Imhoff

RE: organizing search results for multiple collection searches

2000-05-23 Thread Dan G. Switzer, II
Why don't place the complete URL in the Custom1 field? You can also concatenate multiple values together by using a predefined delimiter and return the results that way. Another option, is to store a WDDX packet as one of the CustomX fields-that way you can deserialize it and you have what ever

Re: Next N records

2000-05-23 Thread Amar Desai
Maybe I am too late to respond to this subject but being away for three days does not help. Maybe someone has already mentioned this but you can use a custom tag from the allaire site which works really well. The custom tag is called CF_Pagethru and you have to only change a little of the code

RE: Best Editor

2000-05-23 Thread Mary Jo Sminkey
TextPad is another option as well. From what I can tell, the specs on both UltraEdit and TextPad are about identical, but I prefer TextPad... No, I've used both and UltraEdit is definitely the more powerful of the two. But like any program, it all depends on what you need, TextPad certainly

RE: organizing search results for multiple collection searches

2000-05-23 Thread Brian P. Doyle
I actually tried to put everything in custom1 (the url I mean). ex: Custom1="http://www.mysite.com/component/show_component.cfm?id=#key#" but that actually just outputs it verbatim (instead of replacing key with the value.) -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL

RE: Best Editor

2000-05-23 Thread Clint Tredway
My favorite editor is Note Tab Pro. It is $20 and has its own internal language that allows you to build powerful wizards and other stuff to speed up coding time. -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 9:32 AM To: [EMAIL PROTECTED]

RE: Query suddenly taking 7 times longer

2000-05-23 Thread Eron Cohen
Hi Michael, I wasn't aware that you could do stored procedures in MS Access 2000. Although I know you can save a query and call it as if it were a regular table via ODBC, I don't know of a way to pass that query variables. I would need to pass in a few variables for the WHERE statement of the

RE: Pound Signs in Field Names

2000-05-23 Thread Robert Everland
What I would do is this, when you are selecting your data do SELECT WHATEVER,WHATEVER2, RACK# AS RACK. That will make it CF friendly. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Philip J. Kaplan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000

RE: Best Editor AND humanclick.com

2000-05-23 Thread Eron Cohen
I have to put in my vote for the free editor from EVRSoft. It is very Cold Fusion Studio like and just packed with features. The fact that its freeware is a bonus. Its an excellent tool: http://www.evrsoft.com/1stpage/ I am very impressed with this software. While I am on the subject of

OT: IE tr bgcolor... question

2000-05-23 Thread Ricq Pattay
I'm trying to format CF output so that the query table rows are shaded grey and clear alternately. The below code works in Netscape, but in IE I get rows that are grey and black alternately. Of course, if I put something within the quotes of the 2nd DE, it works fine in IE. But I'd prefer to

Re: Query suddenly taking 7 times longer

2000-05-23 Thread Michael Imhoff
Yes, you just have to set up parameters (actually, you don't always have to but it's a good habit to get into). Here is one of my storedprocs and the following query. Sometimes access makes the queries really ugly like this one with all of the brackets but I guess it has it's own reasons as to

web based email client : reinventing the wheel

2000-05-23 Thread Adam Cantrell
I was wondering if anybody has put a lot of time into creating a web based messaging client that interacts with a single pop server. I know I could design one myself, but I would think everybody has already done this, and somebody has probably put a lot of time into making a benchmark

RE: CFCONTENT and SP6A

2000-05-23 Thread Sean German
Riddle me this Mr Watts, My server seems to have gone from parsing URLs from the left to parsing from the right. (NT4 SP5 IIS4 CF 4.0.1) While neither SP6 nor 6a has been applied, I have applied post-SP5 hot fixes. And what's an MS SP but the same ole hot fixes in a new package? So do we

RE: in consideration of large arrays?

2000-05-23 Thread Sean German
Nevermind :) FOund what I was looking for. Sean -Original Message- From: Sean German [mailto:[EMAIL PROTECTED]] Sent: Monday, May 22, 2000 8:45 PM To: '[EMAIL PROTECTED]' Subject: in consideration of large arrays? Howdy fusioneers, I know theoretically the size of an array is

Re: Query suddenly taking 7 times longer

2000-05-23 Thread Deanna L. Schneider
It is possible to do "faked" stored procedures with Access. You fake it by using a view, like so: CREATE VIEW sp_empbydept AS SELECT * FROMemp WHEREemp.dept_id = [empdeptid] "Empdeptid" would be the parameter that you would pass into the query from your cold fusion code. If you run

RE: Query suddenly taking 7 times longer

2000-05-23 Thread Dave Watts
I wasn't aware that you could do stored procedures in MS Access 2000. Although I know you can save a query and call it as if it were a regular table via ODBC, I don't know of a way to pass that query variables. I would need to pass in a few variables for the WHERE statement of the query. Is

RE: IE tr bgcolor... question

2000-05-23 Thread Clint Tredway
Try this trcfif search.recordcount gt 2 bgcolor="deded7"/cfif -Original Message- From: Ricq Pattay [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 10:08 AM To: [EMAIL PROTECTED] Subject: OT: IE tr bgcolor... question I'm trying to format CF output so that the query table

Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy
You should have a look at iMS from Coolfusion.com ~Justin MacCarthy - Original Message - From: Adam Cantrell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 23, 2000 4:15 PM Subject: web based email client : reinventing the wheel I was wondering if anybody has put a lot

tons of white space

2000-05-23 Thread stäs
Does anybody know why a server would add miles of white space to a web page? Our site runs on CF4/Apache/Solaris. Thanks! -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: web based email client : reinventing the wheel

2000-05-23 Thread Adam Cantrell
I have seen the infusion mail server - it's an awesome product, and I get reamed for not using it. However, I'm looking for a web based client/front end - not a server. The front end that goes along with iMS seems to want to stay with iMS. I'm looking for a client that has been performance

Re: WDDX OR XML News Feeds

2000-05-23 Thread Eric Dawson
Does anyone currently parse the category list XML into a database? I created a database will all of moreover's links and used Nate's TwoSelectsRelated tag to allow the user to select his/her news feed category. This uses CFHTTP and WDDX along with a database of the links. I'll zip it and share

Re: tons of white space

2000-05-23 Thread Brandon Whitaker
Does anybody know why a server would add miles of white space to a web page? Our site runs on CF4/Apache/Solaris. Thanks! It's adding a blank line for every CF tag that's being processed, but not shown. Try the following: (at the beginning of the document) CFSetting enableCFOutputOnly="yes"

RE: web based email client : reinventing the wheel

2000-05-23 Thread Chris
At 11:03 AM 5/23/2000 -0500, you wrote: I have seen the infusion mail server - it's an awesome product, and I get reamed for not using it. However, I'm looking for a web based client/front end - not a server. The front end that goes along with iMS seems to want to stay with iMS. I'm looking

Help With CFMAIL using 4.5.1

2000-05-23 Thread Double Down, Inc
This is a multi-part message in MIME format. --=_NextPart_000_0002_01BFC498.D67C32C0 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: 7bit I am trying to run a mail script that has worked in 4.0.1 When I try to run it in 4.5.1 I get the following error

RE: web based email client : reinventing the wheel

2000-05-23 Thread Owens, Howard
My copy of CFStudio came with an example app called Crazy Cab. I've used that as the base for building a couple of standard POP clients. It has all of the basic functionality you're looking for and is easy to modify to suit just about any standard need. H. = Howard

Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy
There are two problems with CF + pop 1) the connection overhead 2) and cfmail You can get around cfmail , using cfx_mail or others but you still have connection overhead. The version of crazy cabs email client that comewith ColdFusion, caches all the email titles into a sessions, to speed the

RE: Help With CFMAIL using 4.5.1

2000-05-23 Thread Peter Tilbrook
Check you haven't accidentally deleted the c:\cfusion\mail\ folder. As an extra precaution make sure the following three subfolders are in it: LOG SPOOL UNDELIVR Cheers! -Original Message- From: Double Down, Inc [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 24 May 2000 2:26 AM To:

CFMAIL and long lines

2000-05-23 Thread kraybill
I'm trying to isolate a problem where CFMAIL refuses to send messages where individual lines are long. We paste a series of paragraphs from Word into an input field, total character length something over 2000. If we go through and manually insert a hard return after each line in the input field,

Re: Help With CFMAIL using 4.5.1

2000-05-23 Thread Chris Giminez
Someone just posted this a couple of days ago. It fixed this very problem for me. http://www.allaire.com/Handlers/index.cfm?ID=15821Method=Full Chris Giminez Owner - Cyber Scriber Web Site Design 831-728-4469 ICQ# 2628000 I am trying to run a mail script that has worked in 4.0.1 When I try

RE: Best Editor AND humanclick.com

2000-05-23 Thread Robert Everland
Is it me or does this product in Expert mode look like Studio? It's pretty nice, not as full featured as studio but for free you can't beat it. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

Help needed on CF-OBJECT and XSLT ....

2000-05-23 Thread Ed Dunn
Hi, I followed the technical tips from Allaire on using XSLT and WDDX.I have been trying to get the Java based Lotus XSL processor to work in Cold Fusion but without any luck. What do I set the ClassPath in the Coldfusion administrator? What do I set the cfx jar path to? And the java virtual

Netscape cookies

2000-05-23 Thread Lennon Chris Contractor SA-ALC/ADTIC
Can someone tell me where Netscape 4.7 stores its cookies, on a WinNT 4.0 machine? Thanks. Chris Lennon Senior Software Engineer A Terra Nova Design Technologies, Inc. Kelly: (210) 925-4401 x3072 [EMAIL PROTECTED] ATN: (210) 805-9930 [EMAIL PROTECTED]

RE: web based email client : reinventing the wheel

2000-05-23 Thread Adam Cantrell
That is what I was looking for, something like crazy cabs to do cool things like storing the headers in a variable or any other cool performance gaining methods that I don't have time to think of. I know the overhead is going to be lame, but I have too many other objects and people that are

Re: tons of white space

2000-05-23 Thread Dave Hannum
Chances are it's your code. If you have lots of loops through a cfoutput or cfloop, it will add an awful lot of whitespece if you're not careful: This: CFOUTPUT QUERY="yourQuery" #Something# /CFOUTPUT Should be written as: CFOUTPUT QUERY="yourQuery"#Something#/CFOUTPUT to

O'Reilly's Programming ColdFusion

2000-05-23 Thread Rob Brooks-Bilson
Hello everybody, I just wanted to clarify a few things about the upcoming O'Reilly book Programming ColdFusion... While it is true that the book was originally slated to be out last summer, developments with CF 4.01 and then 4.5 and 4.5.1 caused me to have to do a lot of rewriting in order to

Re: CFMAIL and long lines

2000-05-23 Thread Jennifer
At 12:36 PM 5/23/00 +, you wrote: And there's a further small issue: when pasted from Word, special characters such as the hyphen and apostrophe are translated into strange characters when sent by CFMAIL. For example, apostrophes look okay in the input field but they show up in the email

RE: IE tr bgcolor... question

2000-05-23 Thread Philip Arnold - ASP
I'm trying to format CF output so that the query table rows are shaded grey and clear alternately. The below code works in Netscape, but in IE I get rows that are grey and black alternately. Of course, if I put something within the quotes of the 2nd DE, it works fine in IE. But I'd prefer

Re: Hidden Administration Controls?

2000-05-23 Thread Kevin Merker
Seth, I didn't mean bypass the standard forms of security. I was thinking of adding this functionality with standard methods. You would still need the standard user name, password to access the administration section. Your point is well taken. The only way to use alt key / control key

Re: SETCLIENTCOOKIES=No

2000-05-23 Thread David E. Crawford
This only applies to the application setting of CFID and CFTOKEN as cookies. It has ZERO effect on any other cookie function. If you choose to have SETCLIENTCOOKIES="NO" you will need to pass CFID and CFTOKEN around via URL parameters in order to use session variables. DC - Original

Re: XML Question

2000-05-23 Thread Sean Renet
David, The "Tech Note" you are refering to " www.allaire.com/handlers/index.cfm?ID=14244Method=Full#1020244 " does not work. I have an open incident with Allaire, wherein they are trying to figure out why. Evidently after they fix the problem they are going to update the knowledge base

RE: Best Editor

2000-05-23 Thread Chris Evans
And it looks as though UltraEdit runs under Linux using WINE, but not TextPad ( though the tests on TextPad are pretty old.) If only either one had built in FTP access. Chris Evans [EMAIL PROTECTED] http://www.fuseware.com -Original Message- From: Mary Jo Sminkey [mailto:[EMAIL

RE: SETCLIENTCOOKIES=No

2000-05-23 Thread Mike Sheldon
SETCLIENTCOOKIES does not turn cookies off. It merely specifies default behavior for the session identifier for session variables. Michael J. Sheldon Internet Applications Developer Phone: 480.699.1084 http://www.desertraven.com/ PGP Key Available on Request -Original Message- From: GE

I've got the alternating table row color blues

2000-05-23 Thread Todd Ashworth
Well .. it's not even blue, really ... I have this line: tr bgcolor="#IIf(CurrentRow Mod 2, DE('ff'), DE('99ccff'))#" but instead of alternating the colors between white and light blue, it combines/averages/mixes them somehow into this sick green color and all of the rows are that same

RE: XML Question

2000-05-23 Thread Steve Reich
Check out http://www.xmltree.com. James Carlyle has set up an excellent resource for XML content. If you search the discussion forums you will find a lot of great information on handling XML with CF. HTH, Steve -Original Message- From: Robert Everland III [mailto:[EMAIL PROTECTED]]

RE: Help needed on CF-OBJECT and XSLT ....

2000-05-23 Thread David Gassner
Ed, the classpath in the CF Administrator should include the jar file itself with a full path; for instance, I'm using IBM's Xerces processor, and have placed the xerces.jar file in the c:\cfusion\java\classes directory. My classpath looks like this:

(n/m) I've got the alternating table row color blues

2000-05-23 Thread Todd Ashworth
I realized that I didn't wrap the line with cfoutputs ... funny how it muddled the colors though .. I would think it would just give an error. .Todd -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: I've got the alternating table row color blues

2000-05-23 Thread Jennifer
At 02:23 PM 5/23/00 -0400, you wrote: Well .. it's not even blue, really ... I have this line: tr bgcolor="#IIf(CurrentRow Mod 2, DE('ff'), DE('99ccff'))#" but instead of alternating the colors between white and light blue, it combines/averages/mixes them somehow into this sick green color

RE: Best Editor

2000-05-23 Thread Mary Jo Sminkey
And it looks as though UltraEdit runs under Linux using WINE, but not TextPad ( though the tests on TextPad are pretty old.) If only either one had built in FTP access. UltraEdit certainly does have FTP support. Also regular expression searches, multi-level undo, timed backups, etc. Some

Re: SETCLIENTCOOKIES=No

2000-05-23 Thread GE
Mike, Thank you ! That was what I was needing. cheers, Nelson. Mike Sheldon wrote: SETCLIENTCOOKIES does not turn cookies off. It merely specifies default behavior for the session identifier for session variables. Michael J. Sheldon Internet Applications Developer Phone: 480.699.1084

cfif currentrow MOD 7 is 1 ::please help::

2000-05-23 Thread Paul Ihrig
Hello All! I have a nice little emplyee phone list, that i had some great help here. To dynamically generate a new row to display my data when it gets to the bottom of the page. right now it is ordering by last name. the only problem is the way it is displayed. currently displayed table

Re: CFMAIL and long lines

2000-05-23 Thread kraybill
I'm trying to isolate a problem where CFMAIL refuses to send messages where individual lines are long. For the record, here's the workaround we've come up with... Our problem messages were ones that our client was composing in Word and pasting into an input field. We discovered that if the

Re: Best Editor

2000-05-23 Thread Josh Black
What about emacs? emacs has ftp support, regular expression searches, multi-level undo, color syntax highlighting, etc. Everything you could want from an editor. Of course, you have to develop on a *nix platform to really get the most out of emacs. I've found the win32 ports just don't work

Re: CFMAIL and long lines

2000-05-23 Thread Jennifer
At 03:16 PM 5/23/00 +, you wrote: I'm trying to isolate a problem where CFMAIL refuses to send messages where individual lines are long. For the record, here's the workaround we've come up with... Our problem messages were ones that our client was composing in Word and pasting into

cfHTTP Authorization error - Directory access not allowed

2000-05-23 Thread Tom Rainey
I really thought this was working before. The code: cfhttp resolveurl="yes" url="http://www.yahoo.com" method="get" cfoutput #cfhttp.filecontent# /cfoutput The error message: CFHttp Authorization error - Directory access not allowed. The error occurred while

Re: CF_STUMPED LOOP'ing challenge

2000-05-23 Thread Bud
On 5/23/00, [EMAIL PROTECTED] penned: I'm stuck on something that might be really simple to someone. I have these large flat files that are carriage return delimited that contain the same data over and over again. I'm trying to parse out this data for display and later for database insertion.

RE: cfHTTP Authorization error - Directory access not allowed

2000-05-23 Thread Ron Anderson
It worked just fine for me. -Original Message- From: Tom Rainey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 1:28 PM To: [EMAIL PROTECTED] Subject: cfHTTP Authorization error - Directory access not allowed I really thought this was working before. The code:

Re: cfHTTP Authorization error - Directory access not allowed

2000-05-23 Thread KJis18
works fine for me also -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to [EMAIL PROTECTED] with

RE: cfHTTP Authorization error - Directory access not allowed

2000-05-23 Thread Tom Rainey
I gues that poses a new question. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 23, 2000 2:01 PM To: [EMAIL PROTECTED] Subject: Re: cfHTTP Authorization error - Directory access not allowed works fine for me also

RE: I've got the alternating table row color blues

2000-05-23 Thread Chris
I've seen this before. It's due to the lack of a pound sign. Rewrite the code thus: tr bgcolor="###IIf(CurrentRow Mod 2, DE('ff'), DE('99ccff'))#" Actually, now that I think about it, tr bgcolor does not work in all browsers. You may want to do: tr td bgcolor="###IIf(CurrentRow Mod 2,

Re: cfHTTP Authorization error - Directory access not allowed

2000-05-23 Thread Bud
On 5/23/00, Tom Rainey penned: I really thought this was working before. snip The error message: CFHttp Authorization error - Directory access not allowed. Looks like the error you get when trying to run a "GET" cfhttp request with sandbox security installed. At least that's

  1   2   >