Re: IsDefined do this...

2002-11-20 Thread Stephen Moretti
Still, however, I am confused about your solution. When I run it (and the ListFindNoCase version), it doesn't work, but the FindNoCase version does. I'm not sure why. In any case, what is the inconsistency in results that you mention with FindNoCase? I'd just like to know so that I avoid

RE: Stored Proc list input

2002-11-20 Thread Bill Grover
I ran into this some time ago. The following function will take your list and a 1 character delimiter and return a table of the parsed results. Originally when I did this we were on SQL7 so I do have a SP version if you want it, but I prefer the function. CREATE FUNCTION f_reuParseList (@tcList

RE: Error 232

2002-11-20 Thread A.Little
I'm not sure that you can tell CF to stop logging 232 errors. But using CF administrator you can store the log file without having to restart cf. Just go to the CF admin log files page, the 'store log file' option is the yellow button under controls. This will then store your server.log file as

Read: CF-Talk-list V1 #118

2002-11-20 Thread Phil Costa
Your message To: [EMAIL PROTECTED] Subject: CF-Talk-list V1 #118 Sent:Tue, 19 Nov 2002 13:21:26 -0500 was read on Wed, 20 Nov 2002 08:27:56 -0500

clientmanagement causing page expiring in MX

2002-11-20 Thread E. Keith Dodd
Monday had posted request for suggestions as why an html form on MX would not *hold* data in one directory but would hold data in another directory using identical templates. (If submit incomplete form, and my error handling template instructs to go back and fix; when go back all form information

Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
In my ongoing adventures with my rogue server, I'm getting a new problem now, as I try to solve the permissions thing that was going on over the last few days . Now any .cfm page gives the result The page cannot be displayed and the title of the page is cannot find server. What,

CF Log files (was: Error 232)

2002-11-20 Thread Everett, Al
The end result of the above, is that the server.log file grows alarmingly if not closely monitored - once it grew to 1.5Gb (that's not a typo) and took up all the space on the server c:\ and crashed the server :-( It's for that reason (and that CF slows down when the log files get that

Re: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Robert Polickoski
Mike, Based on what you say, and assuming that .htm pages load fine, I would say that you are correct in your assumption that the CF server is not running. I would try to stop and start it from the Services menu under Control Panel/Administrative Tools (or something like that). Robert J.

RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
I have this in my page: script language=javascript top.myframe.location.replace(#request.root_url#/index.cfm?fuseaction=profil e.profile8); /script And I put this after just to see where I am: Abortcfabort It's just hitting the abort. I must be doing something wrong.

RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Thanks for your suggestion Robert. I did that. Stopped and started the application server and the executive service tasks (stopped both, then restarted the executive and app server) . and it didn't make any difference. Anything else to look at? Cheers, Mike Kear Windsor, NSW, Australia AFP

RE: Frames Craziness.

2002-11-20 Thread Clint Tredway
Your abort is happening before your javascript is being run because the abort is server side and happens before your javascript. HTH Clint -Original Message- From: Luce, Greg [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 8:06 AM To: CF-Talk Subject: RE: Frames

RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
D'oh! I shoulda figured that. :-) When I remove the abort the page just processes on though. The javascript doesn't seem to be doing anything. Is the syntax screwy? script language=javascript top.myframe.location.replace(#request.root_url#/index.cfm?fuseaction=profil e.profile8); /script Greg

TID error in Mail log

2002-11-20 Thread Robert Orlini
Hello, What are the TID= errors in my CF mail log? For example: Error,TID=208,08/13/02,11:42:37,Failed to send the spooled mail file, C:\CFUSION\MAIL\spool\903.cfmail. SMTP server replied Internal error: Pending mail operations must be completed. Moved file to

CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Windows 2000 Professional CFStudio 5.0 The splash screen disappears and then the cpu utilization hits 99% and stays there. This just started happening and I have no idea what has caused this. Any ideas? Thanks, Jason - Jason Dowdell IM-AES Web

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Adrocknaphobia Jones
Check out your server connections in the file browser. Every so often the FTP or RDS connection would get screwy on me, and would end up in memory loss. Although restarting the app would fix it. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance

OT: JS - submit/button problem

2002-11-20 Thread Uwe Degenhardt
Hi list, at the end of a form I have: INPUT TYPE=submit VALUE=SUBMIT onclick=something(this.form) but I need a INPUT TYPE=button VALUE=SUBMIT onclick=something(this.form) to let a JS-routine run, which is further up. But I want to pass values to a action script. So is there a way to only let the

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Yeah, restarting the app isn't working at all because it won't restart. I was using the ftp functionality within cfstudio and I thought maybe a process got hung... So I restarted the pc but it didn't fix anything. ~Jason -Original Message- From: Adrocknaphobia Jones [mailto:[EMAIL

More info after errors (Unix)

2002-11-20 Thread Chris Norloff
I'm trying to collect more info when we have a CF-logged error (CF 4.5 SP2, Solaris 8). Specifically, top and cfstat would be great. [That was my intent in using cfexecute to run cfstat (but doesn't look like cfexecute runs under CF 4.5 SP2, Solaris 8)]. We're getting timeout errors for very

Re: TID error in Mail log

2002-11-20 Thread Chris Norloff
TID is thread id, but I don't think that's of much use unless you get into stact-trace level of investigation. It looks like your SMTP server is overloaded at the instant CF submits mail. If the SMTP server's okay I'd use a custom tag from the Developer Exchange called ResendUndeliverableMail

RE: SOT: CFDEV.com

2002-11-20 Thread Benjamin S. Rogers
You do not appear to accept American Express (pretty strange for a US based company). You mean there's someone who still does, who doesn't mind the horrible rates that American Express inflicts on the merchant? Benjamin S. Rogers http://www.c4.net/ v.508.240.0051 f.508.240.0057

Re: OT: JS - submit/button problem

2002-11-20 Thread Patric Stumpe
Hi Uwe, could be something like: INPUT TYPE=button VALUE=SUBMIT onclick=return something(this.form); And: function something(form) { if return true; else return false; } UD Hi list, UD at the end of a form I have: UD INPUT TYPE=submit VALUE=SUBMIT onclick=something(this.form) UD but

RE: SOT: CFDEV.com

2002-11-20 Thread Bryan F. Hogan
Email the company directly to ask a questions such as why not American Express. This is of no interest to CF-Talk, WGAS! Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc.

RE: JS - submit/button problem

2002-11-20 Thread Adrocknaphobia Jones
Uwe, If you formally submit a form, it's going to load the action page. If you want to take those form values and do something with them first, create a function that plays with the values, then submits the form via 'document.formName.submit();'. If you use type=submit the onClick will execute

RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Given the permissions problem I had with the custom tag, and now this problem with the web server presumably not seeing the CF server (even though the service task is running) do you think I might be best to go the 120km to the server box and re-install ColdFusion server? I've never reinstalled

Big Corporations using Cold Fusion

2002-11-20 Thread Michael Greenberg
As a follow up to this thread from yesterday. I'm going to start compiling a list of corporations using CF. Go here (http://www.fusionstation.com/whosusingcf/) and fill out the form. I'll update everyone when I get a decent amount of these in the database. The plan moving forward from there is to

Gif Pipes

2002-11-20 Thread Tipton Josh (orl1jdt)
Can someone please point me in the direction on information for creating, implementing, and using gif pipes. Thanks, Joshua Tipton ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

perhaps OT process not being closed

2002-11-20 Thread Simon Whittaker
Hi there, I am using cfx_ShellExec to run htmldoc to create pdf reports on the fly. It all works very well - however I have noticed that the htmldoc.exe process is left running after the pdf has been created - in fact there were 30 instances running when I came in this morning which had

RE: Gif Pipes

2002-11-20 Thread Adrian Lynch
www.depressedpress.com used to have something but the site isn't working for some reason. Ade -Original Message- From: Tipton Josh (orl1jdt) [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 15:12 To: CF-Talk Subject: Gif Pipes Can someone please point me in the direction on

Accessing DBF database

2002-11-20 Thread Frank Mamone
Does anyone have any experience connecting to a DBF database via CF, specically the Goldmine application, but I suspect the procedure shoud be the same. We are on CFMX if that makes a difference. Thank you, Frank Mamone ~|

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Ken Wilson
Had the same thing happen before and in my case I had Startup configuration options set to start up in the last folder opened in the file dialog. In my case, that happened to be an RDS site which was not accessible any longer. Changing that path to a local drive within the registry level cured the

Re: SOT: CFDEV.com

2002-11-20 Thread samcfug
The rates are not mostly in line with other credit cards. Paypal, for instance, processes AE cards at the same rate as any other card. Even checks. = Douglas White group Manager mailto:[EMAIL PROTECTED] http://www.samcfug.org

Re: Gif Pipes

2002-11-20 Thread Jochem van Dieten
Adrian Lynch wrote: www.depressedpress.com used to have something but the site isn't working for some reason. There is always the Wayback Machine: http://web.archive.org/web/20011005175052/http://www.depressedpress.com/DepressedPress/Content/ColdFusion/Essays/GIFAsPipe/Index.cfm Jochem

Re: Gif Pipes

2002-11-20 Thread Thane Sherrington
At 10:12 AM 20/11/02 -0500, Tipton Josh (orl1jdt) wrote: Can someone please point me in the direction on information for creating, implementing, and using gif pipes. It's fairly simple. You create a link like this: IMG src=http://www.mysite.com/mypage.cfm; Then you create the file mypage.cfm

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Where in the registry are those entries? That could definitely be it. ~Jason -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:19 AM To: CF-Talk Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization Had the same thing happen before

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
WooHoo!!! That was it. I just changed it to the temp directory and I'm back up and running. Thanks for the tip! ~Jason -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:19 AM To: CF-Talk Subject: RE: CFStudio 5.0 takes up 100% CPU

Can't create ODBC connection in CFADMIN

2002-11-20 Thread Paul Wilson
I am trying to create an ODBC Socket DSN in the CFMX Administrator but i get the following error. Could not import the tag library specified by ../cftags/. The following error was encountered: C:\CFusionMX\wwwroot\CFIDE\administrator\datasources\..\cftags The CFML compiler was processing:

RE: Frames Craziness.

2002-11-20 Thread Luce, Greg
Isaac, When I remove the abort the page just processes on though. The javascript doesn't seem to be doing anything. Is the syntax screwy? script language=javascript top.myframe.location.replace(#request.root_url#/index.cfm?fuseaction=profil e.profile8); /script Greg -Original Message-

Importing a text file into SQL Server table

2002-11-20 Thread Bruce Sorge
Hello list. I have a text file that is comma and double-quote separated, with a line break that separates the lines. The first row contains the header information. What I am wanting to do is to import this into a SQL Server 2K table. I know that I can use DTS to do this, but I need to do this

RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Luce, Greg
Paul, For some crazy reason I always do better using windows to create an access ODBC connection. Then I test it in cf admin. I'm sure it's just something I do wrong. I have no trouble with SQL connections though. :-) Greg -Original Message- From: Paul Wilson [mailto:[EMAIL

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Ken Wilson
Wish I could point you to it easily but it's been a year now. All I recall is that they were buried reeeaaalll deep in it but once found it was obvious what to change. Sorry not to be more specific. Ken -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED]] Sent:

Re: Gif Pipes

2002-11-20 Thread Zac Spitzer
Jochem van Dieten wrote: Adrian Lynch wrote: www.depressedpress.com used to have something but the site isn't working for some reason. another way to do this that is becoming more common is like this document.write('script src=j.cfm?id=3opt=4/script'); j.cfm then returns javascript which

Re: Problem Determining Image Size

2002-11-20 Thread Lewis Sellers
On Tue, 19 Nov 2002 16:30:07 -0800, in cf-talk you wrote: I'm using the custom tag imagesize to get the width/height of uploaded images. I'm finding a problem sometimes with very simple jpeg uploads. Say the image is 200 x 200. I can upload it to the server and it remains 200 x 200 (I've

RE: Importing a text file into SQL Server table

2002-11-20 Thread Robertson-Ravo, Neil (REC)
just use CF to call a DTS using CFEXECUTE -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 15:40 To: CF-Talk Subject: Importing a text file into SQL Server table Hello list. I have a text file that is comma and double-quote separated, with a line

RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Robertson-Ravo, Neil (REC)
is there any spaces or punctuation on the DSN? -Original Message- From: Luce, Greg [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 15:40 To: CF-Talk Subject: RE: Can't create ODBC connection in CFADMIN Paul, For some crazy reason I always do better using windows to create an

RE: MX and UPS XML

2002-11-20 Thread Chad
Thanks for the code Erik. It works well. We will keep playing with all this new knowledge we have and see if we can come up with a nice solid solution. -Original Message- From: Erik Yowell [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 19, 2002 10:18 PM To: CF-Talk Subject:

RE: CFStudio 5.0 takes up 100% CPU Utilization

2002-11-20 Thread Dowdell, Jason G
Already found it... Thanks for pointing it out. ~Jason -Original Message- From: Ken Wilson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:41 AM To: CF-Talk Subject: RE: CFStudio 5.0 takes up 100% CPU Utilization Wish I could point you to it easily but it's been a year

Re: Importing a text file into SQL Server table

2002-11-20 Thread Randell B Adkins
Well you can also schedule the DTS package to run nightly or at anytime you desire. If in fact it is a scheduling thing you are looking for. Not sure how you are reading your file, however, if you can read line by line (CustomTag in the Gallery I think), the do a LOOP over your read statement

RE: Can't create ODBC connection in CFADMIN

2002-11-20 Thread Paul Wilson
No there isn't -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 20 November 2002 15:42 To: CF-Talk Subject: RE: Can't create ODBC connection in CFADMIN is there any spaces or punctuation on the DSN? -Original Message- From: Luce, Greg

CF and Fed-Ex

2002-11-20 Thread Ciliotta, Mario
Hi, I was wondering if anyone has had any experience using CF interfacing with the Fed-Ex Ship API. I understand that you can use either a COM object or there Java Classes. I was just wondering if anyone had any recommendations or experiences with either. Thanks Mario This message is for

CF Error- redux

2002-11-20 Thread UXBinfo
We have just started seeing this error once in a while in the application log on our CF4.01 server running NT4 SP5 - Dual 500Mhz PII / 1gb memory. Cannot create synchronization object for CFLock The error occurred while processing an element with a general identifier of (CFLOCK),... Can anyone

CF5 on .NET-Server

2002-11-20 Thread Patric Stumpe
Hi CF-Talkers, did anyone of try to run CF5 on a .NET-Server Release-Candidate? I found some infos on how to get CFMX working with IIS6 but nothing about CF5. Any experience??? Patric -- Patric Stumpe mailto:[EMAIL PROTECTED]

RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Douglas.Knudsen
In my experience, yes. You should be able to do this remotely via Telnet or one of those glorified telnet tools PCAnywhere or Terminal Services. Don't know what OS you are running. Is this CF5? Did you check your script mappings in IIS, assuming you are using winblows? Doug -Original

RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Michael Kear
Yes, it's WinNT4 sp6, and CF5 The server has been in and stable for ages - at least 8 months, and just in the last 2 weeks given me problems like this. I've looked and looked for what changed and I'm damned if I can see what it is. We have VNC to log into the console. We only have to go to the

RE: Using a CFIF on RIGHT(#value#, 3)

2002-11-20 Thread Philip Arnold - ASP
Just a point, can I suggest you read Ben's To # or not to # article CFIF #CMFileName# IS NOT CFSWITCH EXPRESSION=RIGHT(#CMFileName#,3) Should read CFIF CMFileName IS NOT CFSWITCH EXPRESSION=#RIGHT(CMFileName,3)# Don't use #'s where you don't need them Philip Arnold Technical

RE: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Douglas.Knudsen
ugh...zip up the install files for CF and FTP them to your box. I haven't used VNC before, in PCAnywhere you can transfer files without an FTP server running. good luck Doug -Original Message- From: Michael Kear [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 10:56 AM

RE: You People Are AWESOME

2002-11-20 Thread Michael Wilson
Hi, IF you're using CFMX, you might want to check the cfclasses directory for the related .class file. I think it is C:\CFusionMX\wwwroot\WEB-INF\cfclasses by default. The file won't be named exactly the same, but you should be able to locate it. Delete the class file and restart the CFserver

CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
Odd. For the past few days CFMX on win2k pro has decided on it's own that it doesn't want to startup when the puter boots. I have to kick it off manually. It's worked fine for months up until now. Anyone seen this or know a fix? Cheers, Stace AVIS IMPORTANT: ---

mx debugging

2002-11-20 Thread S . Isaac Dealey
I noticed that the modes for debugging in the mx administrator are labelled classic.cfm and dockable.cfm as opposed to classic and dockable which leads me to think that there's some way I might be able to add my own custom debugging scripts as alternatives to these... Does anyone know if this is

Re: mx debugging

2002-11-20 Thread Jim Campbell
well, on a Linux installation of MX, there are three cfm templates (non-compiled!) in the debug directory (*cfroot*/wwwroot/WEB-INF/debug): classic.cfm dockable.cfm dreamweaver.cfm You could try adding something there to see if the administrator picks it up, or try editing the two provided ones

RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Christine Lawson
Hi Stacy, This happened to me after I did a reinstall and didn't delete the CFMX folder, did you reinstall by any chance? Christine -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 11:44 AM To: CF-Talk Subject: CFMX Doesn't like to load

no posts?

2002-11-20 Thread Tony Weeg
no posts since 1:38 am this morning? ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions www.navtrak.net 410.548.2337 ~| Archives:

Re: CFMX Doesn't like to load on startup

2002-11-20 Thread Brian Scandale
Stace, If you go to: -Start -Programs -Admin Tools -Services cfmx will show up in the list... mark them... or it automatic start... then it should. hth Brian At 08:44 AM 11/20/02, you wrote: Odd. For the past few days CFMX on win2k pro has decided on it's own that it doesn't want

RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
Thx Brian but it's always been auto-startup. :-) -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:32 PM To: CF-Talk Subject: Re: CFMX Doesn't like to load on startup Stace, If you go to: -Start -Programs -Admin Tools

Re: Can a web service call another local component?

2002-11-20 Thread Sean A Corfield
On Tuesday, Nov 19, 2002, at 22:31 US/Pacific, Brook Davies wrote: What I meant by this post, is that I have a component which in turn uses cfinvoke to invoke another component. This works fine when the containing component is called locally. But when I try to call it as a webservice, I

Re: Frames Craziness.

2002-11-20 Thread Sean A Corfield
On Wednesday, Nov 20, 2002, at 07:35 US/Pacific, Luce, Greg wrote: script language=javascript top.myframe.location.replace(#request.root_url#/ index.cfm?fuseaction=profil e.profile8); top.myframe.location.href = '#request.root_url#/index.cfm?fuseaction=profile.profile8'; I've never seen

RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Christine Lawson
Actually, it should already be set to start automatically. A workaround would be to make it depend on another service such as IIS. Add a string value named DependOnService with the value W3SVC under: HKLM\SYSTEM\CurrentControlSet\Services\ColdFusion MX Application Server\ Christine

Re: no posts?

2002-11-20 Thread Lewis Sellers
On Wed, 20 Nov 2002 12:25:18 -0500, in cf-talk you wrote: no posts since 1:38 am this morning? The world ended last night at a little after Midnight. Guess you didn't get the memo? --min ~| Archives:

Re: mx debugging

2002-11-20 Thread S . Isaac Dealey
hmmm... the only thing I'm coming up with here is wwwroot/cfide/administrator/WEB-INF/build.xml , wwwroot/cfide/debug and wwwroot/cfide/aministrator/debugging but neither of these last directories contain the specified file either, so ... maybe I should check it out later on my own server where I

RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread John Ceci
Novak, Here ya go, works on MS SQL Server 7.0 cfquery name=BulkInsert datasource=#ODBC_DataSource# INSERT INTO TableName(userid, username, password) SELECT DISTINCT userid, username, password FROM Users_Main /cfquery NOTE: The column list in the select statement must pass all the rules for

RE: Gif Pipes

2002-11-20 Thread Shawn Regan
What is it you achieve in doing this to display images? :) Shawn Regan pacifictechnologysolutions 15530-B Rockfield Blvd. Suite 4 Irvine, CA 92618 949.830.1623 w w w . p t s 1 . c o m -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20,

RE: Gif Pipes

2002-11-20 Thread S . Isaac Dealey
The image as a data pipe trick is a means of accomplishing a request from the server without reloading the page, usually using javascript to change the src attribute of the image. As just one example: A billing form with a credit card number field might have an image data pipe which requests a

RE: Gif Pipes

2002-11-20 Thread Lofback, Chris
The way I learned to use a GIF pipe was that you send data using URL variables and get responses using cookies (which means the return data is restricted by cookie limitations like size and number of cookies.) The client code has a timed loop that watches for the cookie to be returned and then

Re: Gif Pipes

2002-11-20 Thread Joseph Thompson
They are also useful to extend sessions. Add a function to reload the image and that users session will exist until they close thier browser. (this custom tag reloads a gif) http://cfhub.com/forum//index.cfm?FuseAction=ThreadTopicID=2445 The way I learned to use a GIF pipe was that you send

SQL: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Hi folks, I'm stumped on a SQL query. Using SQL Server 7.0. I have two tables - one with a lot of detail info, and one as a cross reference. The detail table (msgs) has a primary key (message_id) and an e-mail address (emailAddress), plus other stuff that doesn't matter for now. The cross

Re: Gif Pipes

2002-11-20 Thread Bryan Stevenson
Ummm...isn't the point of timing out sessions to actually timeout the session?? ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate

OT: DB - CF - Treeview

2002-11-20 Thread Paul E. Cross
Can someone help me, and yes, I'll pay?!. I want an Access database that I can edit that contains link information. Pretty much a representation of the Windows favorites directory. I want to query it and represent the information in an explorer- like treeview menu. A database driven tree

Image Resize on non MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm looking for a custom tag to handle image resizing (gif, jpg, etc) that doesn't require a MS server (and is preferably free). Any ideas? Cutter Falcon Knives ~| Archives:

RE: Frames Craziness.

2002-11-20 Thread Mosh Teitelbaum
The replace method loads the specified URL in place of the current URL's history entry. It makes the current URL inaccessible via standard browser history navigation (i.e., back/forward buttons). -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW:

RE: self-joins and counts - lots of detail

2002-11-20 Thread Jeff Beer
Sorry about the formatting.. Grrr.. Should be in columns as: a.originalMessage_ID, a.newMessage_ID, c.EMailAddress AS SenderAddress, d.EMailAddress AS NewAddress -Original Message- From: Jeff Beer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:29 PM To: CF-Talk

Re: Gif Pipes

2002-11-20 Thread Eric Dawson
well isn't wasn't more than 16 hours ago that I could have used this. I think I will implement. Eric From: Joseph Thompson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Gif Pipes Date: Wed, 20 Nov 2002 11:28:04 -0800 They are also useful to extend

RE: CFMX Doesn't like to load on startup

2002-11-20 Thread Stacy Young
I'm running Apache but it's installed as a service, I'll try that...thx -Original Message- From: Christine Lawson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 1:04 PM To: CF-Talk Subject: RE: CFMX Doesn't like to load on startup Actually, it should already be set to

Re: Shopping Carts PayPal IPN

2002-11-20 Thread Chris Montgomery
Friday, October 18, 2002, 5:58:54 PM, Bud wrote: Below is the important part of my IPN page. I'm including it because maybe others can use it. After a month-long hiatus... First, thanks to Bud for his code. I used that (and I found an earlier post of his from back in June with similar info),

RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread Matthew Fusfield
Hey John! Would this work? Sounds like Novak created the query in CF (ie with QueryNew()), so I don't know if SQL server could see the query object for an insert...select statement. We've done this before by looping through but I don't know that QoQ could do this. Good to see ya again, talk to

Re: Frames Craziness.

2002-11-20 Thread Sean A Corfield
Ah... learn something new every day! Thanx! On Wednesday, Nov 20, 2002, at 11:33 US/Pacific, Mosh Teitelbaum wrote: The replace method loads the specified URL in place of the current URL's history entry. It makes the current URL inaccessible via standard browser history navigation (i.e.,

Session vs. Client

2002-11-20 Thread Everett, Al
I've been asked to write up a document to detail what is involved in turning our session-dependent site into one that uses client variables instead. (The latest issue with the load balancer not maintaining session state on a server apparently was the proverbial straw.) I know the obvious issue

Re: Image Resize on non MS server

2002-11-20 Thread Bob Haroche
I'm looking for a custom tag to handle image resizing (gif, jpg, etc) that doesn't require a MS server (and is preferably free). Any ideas? I'm using cfx_image (free) on my development machine -- Win2K running Apache server/CF 5. - Regards, Bob Haroche O n P o i n t S o l u t i o

Re: Gif Pipes

2002-11-20 Thread Eric Dawson
but you might be more interested in tying a open session to an open browser. I agree there is potentially more overhead - but if you keep a shorter session expiration- you might actually reduce overhead. Eric From: Bryan Stevenson [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk

RE: Gif Pipes

2002-11-20 Thread Kevin Graeme
Agreed! I remember reading about gif pipes a couple years ago, but didn't have an immediate need then and forgot about them entirely. Now I can think of several places to use them. This thread was a good refresh of that information. Thanks all! -Kevin -Original Message- From: Eric

Interfacing with MSMQ

2002-11-20 Thread Todd Dancer
Has anyone written anything that will submit a message to the MSMQ via CF? Thanks Todd A Dancer TechSquid1 [EMAIL PROTECTED] 504-525-0990 E-mail-- when it absolutely positively has to get lost at the speed of light.

Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that does not require an MS server. Any suggestions? Cutter Falcon-Knives.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Odd error in MX - anyone seen this?

2002-11-20 Thread Rob Rohan
I have a test page that has ~10 lines of code on it and if I add ANY cold fusion tags I get the following error: Error Occurred While Processing Request Index: 149, Size: 46 Please try the following: * Check the CFML Reference Manual to verify that you are using the correct syntax. *

RE: BRAIN TEASER: Inserting a query into a table?

2002-11-20 Thread John Ceci
Hey Matt! Didn't realize he was using a query sim, missed that Hmmm...not sure past a loop how else you would do it either...brute force is sometimes best :) John -Original Message- From: Matthew Fusfield [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 2:42 PM To:

Image Resize without MS server

2002-11-20 Thread Cutter (CF_Talk)
I'm trying to find a custom tag that will resize images on upload that does not require an MS server. Any suggestions? Cutter Falcon-Knives.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

OT: Apologies

2002-11-20 Thread Cutter (CF_Talk)
Sorry for the multiple postings, mail server issues... Cutter Falcon-Knives.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
So if I understand you correctly, you are looking for a custom tag that will resize images on upload that does not require an MS server. -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:11 PM To: CF-Talk Subject: Image Resize

Encryption gurus please read

2002-11-20 Thread Bryan Stevenson
Hey All, I'm not entirely sure why I'm getting the results I am, so I'll ask this question: Why is it that the returned encrypted value can vary even though the string being encrypted and the key used remains constant (i.e. when encrypting yeehaw with the key boohoo will not always return the

RE: Image Resize without MS server

2002-11-20 Thread Rob Rohan
If the offlist thing I sent doesn't help search the archive, there was talk of this very thing about 2 days ago. Cheers, rob -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:11 PM To: CF-Talk Subject: Image Resize without MS

Re: Encryption gurus please read

2002-11-20 Thread JLH All Turbo
If it did return the same exact encrypted result... it'd be waaay to easy to reverse engineer. WAY. Secure communications wouldn't exist. jacob. - Original Message - From: Bryan Stevenson [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, November 20,

Re: Odd error in MX - anyone seen this?

2002-11-20 Thread Sean A Corfield
Your .class file has gotten out of sync I think. Go into WEB-INF/cfclasses and delete the .class file that corresponds to your source file (or delete all of them if you can't spot the sucker). That will force a recompile which should solve your problem. On Wednesday, Nov 20, 2002, at 12:07

RE: Odd error in MX - anyone seen this?

2002-11-20 Thread Rob Rohan
Groovy, That worked. Thanks Sean. -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 20, 2002 12:32 PM To: CF-Talk Subject: Re: Odd error in MX - anyone seen this? Your .class file has gotten out of sync I think. Go into WEB-INF/cfclasses and

  1   2   >