RE: cfmx and browser cache issue

2002-07-24 Thread Brian Scandale
Nope, just scoured the source again... not a one... nothing. At 06:58 PM 7/23/02, you wrote: Are you using any of the below cache control tags? META HTTP-EQUIV=Expires CONTENT=Mon, 06 Jan 1990 00:00:01 GMT META HTTP-EQUIV=Pragma CONTENT=no-cache META HTTP-EQUIV=Cache-Control CONTENT=no-cache

RE: OT: Charting Software

2002-07-24 Thread Hugo Ahlenius
Is anyone using OWC to create graphs? (Microsoft Office Web Components) I did some experimentation with OWC and CF5 some time ago, but I gave up... - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project Officer

CFGrid / CFGridColumn - display 1 long row as 2+ rows?

2002-07-24 Thread Ryan Hartwich
Does CFGrid, in 4.5, 5, or MX have the ability to display text fields as a row that is taller than 1 row high? I.e., I have a table with a really wide text field (500+ characters) and want the line to wrap onto a 2nd or 3rd physical row on the grid so that massive scrolling is not required. I

RE: OT: Charting Software

2002-07-24 Thread John McCosker
Serious charting still requires something outside of coldfusion. Guess not many of us using charting else would be different. Agreed, we use tee-chart, its one of the most powerful tools we,ve seen out there, hooks into ASP VBscript and ends up as an embedded ActiveX component in the browser.

RE: Email regex

2002-07-24 Thread Hugo Ahlenius
Jeff, that regexp works for me. I would be interested in seeing something similar for URL's -- I have been experimenting but got stuck. Something like: REREPLACE(String,((http:\/\/|www\.|WWW\.)[^[:space:]]+)([[:space:]]|\.), A HREF=\1\1/A\3,ALL) (Two problems with the above one: it doesn't

Unicode drives me crazy - need help

2002-07-24 Thread Rudy Rustam
Hi, I'm trying to convert some Chinese character to Hex code. Example: 三 (Three) = 4E09 I am using ColdFusion MX, How am I supposed to do that? Thanks in advance - Rudy __ Structure your ColdFusion code with Fusebox.

Re: Unicode drives me crazy - need help

2002-07-24 Thread Paul Hastings
I'm trying to convert some Chinese character to Hex code. Example: 三 (Three) = 4E09 what was the original encoding? what do you mean by HEX, some unicode transform? --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.375 /

RE: Unicode drives me crazy - need help

2002-07-24 Thread Rudy Rustam
From Form post, take input of Chinese character (GB2312 or Big5) And then convert them to UTF-16 -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 5:34 PM To: CF-Talk Subject: Re: Unicode drives me crazy - need help I'm trying to

Sql Statement

2002-07-24 Thread Tipton Josh (orl1jdt)
Can anyone help me with a quick SQL statement to give me Fridays date of the current week? Thanks, Joshua Tipton __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion

RE: Sql Statement

2002-07-24 Thread Tipton Josh (orl1jdt)
This is what I created and it works just wondering if anyone has anything else declare @friday smalldatetime set @friday = getdate() Create_Friday: while (datepart(dw,@friday)) '6' begin set @friday = dateadd(d,1,@friday) end if(datepart(dw,@friday)) '6' begin goto

CF Server hang-up

2002-07-24 Thread Robert Orlini
Our CF Server hung up for a while yesterday and our techies could not find a solution. Our web server uses CF to display its initial Home Page to the public. It would take forever to try to load and finally displayed a server too busy because of an usually large amount of traffic error. This

RE: Email regex

2002-07-24 Thread Chris Lofback
This was discussed recently and the following RegEx was recommended. It also supports the new top level domains. CFSET MyEmail = [EMAIL PROTECTED] CFIF REFindNoCase(^['_a-z0-9-]+(¥.[_a-z0-9-]+)*@[a-z0-9-]+(¥.[a-z0-9-]+)*¥.(([a- z]{2,3})|(aero|coop|info|museum|name))$,MyEmail) Valid

RE: MX inSite Magazine

2002-07-24 Thread Jeffry Houser
I stand corrected. That must have been changed recently. Then let me change what I just said. The .net developer's Journal is not built on top of the .net technology, it uses ColdFusion. At 06:41 PM 7/23/2002 -0700, you wrote: Actually, CFDJ is running on top of CFMX. For example,

RE: Sql Statement

2002-07-24 Thread Craig Dudley
Try this. Create procedure spGetfriday @dateobject smalldatetime AS declare @friday smalldatetime, @daysfromfriday int select @daysfromfriday = 6 - datepart(dw,@dateobject) select @friday = dateadd(dd,@daysfromfriday,@dateobject) select @friday Bit simpler, should return Fridays date of the

RESOLVED: Mass Email Solution

2002-07-24 Thread Larry Juncker
Apparently when someone gets upset about partial answers, that is the only part anyone EVER SEES. I sent this THANK YOU yesterday after Alex gave me a MORE INFORMATIVE answer to my question. I got upset because so many times I see people ask simple questions, just as my initial one, and the

OT - Stored Procedure Help

2002-07-24 Thread Houk, Gary
I have a header and detail table. The detail tables stores product(s) associated with the header (user information). Whenever I have more than one detail line, I get more than one record returned. I only need to get the amount of headers back that match the input, not detail.

CFLOGIN Problems

2002-07-24 Thread Frank Mamone
I am trying out the functionality of the CFLOGIN tsg snf it doesn't seem to work as advertised. According to the docs Code in thr cflogin tag only executes if there is no user is logged in. The system authenticates and displays the protected page but when accessing another page in the same

RE: cfmx and browser cache issue

2002-07-24 Thread Chris Norloff
We use cfheader name=cache-control value=private to allow private caching (browser) but not public caching (proxy). It's worked well for us. Look in an HTTP book for allowable commands. The javascript history function gave us a lot of problems because our site is encrypted (https) and Internet

Putting a comma separated file into a multi dimension array.

2002-07-24 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Hello, I have a comma separated file that contains about 11 columns and

RE: Putting a comma separated file into a multi dimension array.

2002-07-24 Thread Hugo Ahlenius
Can't you add it as a .csv data source? - Hugo Ahlenius E-Mail: [EMAIL PROTECTED] Project Officer Phone: +46 8 7410451 UNEP GRID-Arendal Fax: +46 733 403285

RE: Putting a comma separated file into a multi dimension array.

2002-07-24 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** Thanks, good idea. I'll try that. -- From: Hugo

Help From You SQL Gurus Out There

2002-07-24 Thread Robert Forsyth
Is it possible to use select TOP and distinct in the same query? I don't want to use maxrows=100 because it returns the whole recordset and discards records 101 and higher, which is not ideal. Here is the call: cfquery datasource=shared name=Search Select TOP 100 Distinct B.TopicID,

cfProcParam is being ignored?

2002-07-24 Thread Andrew Peterson
Hi, I've got a Stored Procedure that functions as designed. However, when I call it from a CF template, my cfProcParam, an output variable that I wish to display, seems to be ignored. Here is my CF code: !--- begin cf code --- cfstoredproc datasource=WEDGETEST procedure=UpdateTraining

Re: OT - Stored Procedure Help

2002-07-24 Thread S . Isaac Dealey
I have a header and detail table. The detail tables stores product(s) associated with the header (user information). Whenever I have more than one detail line, I get more than one record returned. I only need to get the amount of headers back that match the input, not detail. I'm not sure I

Re: AS400 DB2 Drivers

2002-07-24 Thread Paul Giesenhagen
DB2Connect, will this work on a Unix platform or NT or both? Is this the way to go? I assume it is the client connection between the machine and the DB2 Database? Thanks! Paul Giesenhagen QuillDesign There is client software, Client access, that comes with an odbc driver Robert Everland

RE: AS400 DB2 Drivers

2002-07-24 Thread Robert Everland
Db2connect costs money, client access doesn't, it comes with your AS/400. I have seen client access was going to be able to run on Linux, don't know if that version is out yet. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com -Original

Re: writing to sendmail queue

2002-07-24 Thread Peter Theobald
At 12:13 PM 7/19/02 -0400, Chris Edwards wrote: any suggestions on how to write directly to sendmail's queue? You are supposed to send emails through a mail delivery program. On Unix/Linux you should submit emails through /usr/ucb/mail or even directly through sendmail. But if for some reason

Querying a CSV file

2002-07-24 Thread Adams, Stephen
** WESTMINSTER CITY COUNCIL Please refer to the disclaimer beneath this message ** I have a CSV file that I want to query. In my CSV file I have added a row

RE: OT - Stored Procedure Help

2002-07-24 Thread Houk, Gary
Hello, Here is some more detail: 2 tables - weborderheader,weborderdetail 1 stored procedure joining the 2 tables on the batch_number field. 1 input for the procedure - @searchstring Objective: pass either a btn or batch_number to the stored procedure. The stored procedure should then return

Re: CF-Talk-list V1 #147

2002-07-24 Thread D Spindler
Is anyone aware of any issues with running CFMX Server on a box that already has BEA WebLogic server. The servers will not be interacting with each other, rather just coexisting on the same machine. Any issues with the CF install? Any input would be greatly appreciated. Dan Spindler MJMI

RE: AS400 DB2 Drivers

2002-07-24 Thread Mike Brunt
Paul, we use DB2 Connect on Windows and it has worked flawlessly and is very easy to set up. That is our experience for what it is worth. Mike Brunt - CTO Webapper Services LLC http://www.webapper.com Downey CA Office 562.243.6255 Making the NET Work -Original Message- From: Paul

RE: Help From You SQL Gurus Out There

2002-07-24 Thread Craig Dudley
Try using GROUP BY as follows cfquery datasource=shared name=Search Select TOP 100 B.TopicID, B.ForumID,B.LastMessageDate From Messages A,Topics B Where a.isapproved = 'y' and B.TopicID = A.TopicID AND b.forumid = a.forumid AND DateDiff(d,

Re: OT - Stored Procedure Help

2002-07-24 Thread Joe Eugene
Try a LEFT JOIN with Count of LEFT JOINED TABLE Joe - Original Message - From: Houk, Gary [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 24, 2002 8:49 AM Subject: OT - Stored Procedure Help I have a header and detail table. The detail tables stores product(s)

Re: CF Server hang-up

2002-07-24 Thread tbbost
I would definitely look first for somewhere in the code as being the problem. Watch your server's cpu memory level, after hitting certain pages if it rises and tops out you problably found the culprit template. Isolate the template until you find where the problem lies.

Cf and Batch file

2002-07-24 Thread Tangorre, Michael
Does anyone have a batch file to turn all the CF services on and off? I would like to boot my machine up and run the batch file if I want the Cf services running. Also, I would like add a line for ISS as well.. any help writing this would be appreciated. Thanks, Michael Tangorre MillenniuM

RE: Cf and Batch file

2002-07-24 Thread Mark A. Kruger - CFG
The syntax is pretty simple: Net start Cold Fusion Application Server Net stop Cold Fusion Application Server The trick is getting the name right - look in the services control panel or registry for the name and you should be all set. -mk -Original Message- From: Tangorre, Michael

RE: Help From You SQL Gurus Out There

2002-07-24 Thread Robert Forsyth
Thanks Craig, that did it! Robert -Original Message- From: Craig Dudley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 9:47 AM To: CF-Talk Subject: RE: Help From You SQL Gurus Out There Try using GROUP BY as follows cfquery datasource=shared name=Search Select TOP

RE: Sql Statement

2002-07-24 Thread Dan Haley
In Oracle it's really easy ... select trunc(sysdate + (6 - to_char(sysdate, 'd'))) fromdual Dan -Original Message- From: Tipton Josh (orl1jdt) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 5:01 AM To: CF-Talk Subject: Sql Statement Can anyone help me with a

RE: Cf and Batch file

2002-07-24 Thread Hugo Ahlenius
I do. I have written a little batch file that I call svc.bat that takes two arguments. The first is an action, and the second is a string. The string is matched in the listing of services. Excellent for a development machine, that doesn't need all the stuff running at all times. I use:

RE:SOLVED Cf and Batch file

2002-07-24 Thread Tangorre, Michael
Thanks guys.. one minor change.. NET START ColdFusion MX Application Server NET STOP ColdFusion MX Application Server -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 11:07 AM To: CF-Talk Subject: RE: Cf and Batch file The

RE: Cf and Batch file

2002-07-24 Thread Hugo Ahlenius
Ooops, this list seems to block attachment, here is the batch file: ECHO off ::Last Modified: 2002-Jul-24 17:19 (HA) SET command=%1 SET svcname=%2 if %command%==stop goto ok if %command%==start goto ok if %command%==list goto list if %command%==restart goto restart if %command%== goto exit SET

RE: Printing : Revisited

2002-07-24 Thread Dan O'Keefe
Stephen, Yes, I can control that, so IE it is. What method did you use though to get it back to their printer over the internet? Dan -Original Message- From: Stephen Kellogg [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 23, 2002 10:32 AM To: CF-Talk Subject: RE: Printing : Revisited

RE: CF MX WebLogic

2002-07-24 Thread Dave Watts
Is anyone aware of any issues with running CFMX Server on a box that already has BEA WebLogic server. The servers will not be interacting with each other, rather just coexisting on the same machine. Any issues with the CF install? Any input would be greatly appreciated. You shouldn't

RE: CF MX WebLogic

2002-07-24 Thread Matt Liotta
You might want to take a look at CF MX for WebLogic, when it comes out; it's a JSP killer in my opinion. I don't believe CFMX for WebLogic has been announced. It certainly isn't a downloadable option for those of us participating in the CFMX J2EE beta program. -Matt

RE: cfProcParam is being ignored?

2002-07-24 Thread Alistair Davidson
Hi Andrew Try changing print @RetMsg / end transact sql code / to SELECT @RetMsg Alistair Alistair Davidson Application Developer www.smartgroups.com Freeserve.com PLC -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: 24 July 2002 15:03 To:

RE: CF MX WebLogic

2002-07-24 Thread Pete Freitag
I don't believe CFMX for WebLogic has been announced. It's going to come out later this year. Optimized versions of ColdFusion MX for Macromedia JRun, IBM WebSphere Application Server, and Sun ONE Application Server are expected to ship in the third calendar quarter of 2002. ColdFusion MX for

RE: CF MX WebLogic

2002-07-24 Thread Craig Thomas
I don't believe CFMX for WebLogic has been announced. Will be end of summer - September, I think. -Craig __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: Querying a CSV file

2002-07-24 Thread Alistair Davidson
Stephen This error means that it didn't recognize your field names, so you need to tell the driver about your datafile schema. If you're using the Microsoft text driver, it gets schema information from a file called schema.ini in the directory that the datasource is pointing to. The required

Re: OT - Stored Procedure Help

2002-07-24 Thread Joe Eugene
Can you just run mutiple BEGIN - END in you SPROC to do different stuff.. like If you want to do this in the same procedure.. you would have to declare local vars Declare @DetailCount Set @DetailCount = Select count(whatever) from DetailTable where whatever and do if statement later... OR u can

RE: CF MX WebLogic

2002-07-24 Thread Matt Liotta
In other words, Macromedia still hasn't worked out a deal with Bea and thus hasn't announced the product. There is a difference between expecting a product and announcing one. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P:

RE: CF MX WebLogic

2002-07-24 Thread Matt Liotta
That's speculation, not an announcement. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 9:00 AM To:

RE: Stupid number format problem

2002-07-24 Thread Cornillon, Matthieu
OK. This is a wretched solution, but you could convert the number to a string, CFLOOP as long as Right(MyString,1) = 0, and then within the loop remove that last character. At the end of it, you convert it back to a number. I'm almost sorry for even suggesting such an ugly, albeit workable,

Flashcom and Firewalls

2002-07-24 Thread Stacy Young
Can anyone suggest a strategy for Flash Com projects and Firewalls? Internally we can't use squat due to additional ports required by the Flash player to use Flash Com components. MM's Executive overview is a good example...it'll startup but stop when the video is about to commence...with no

LoRCAT public Beta closing

2002-07-24 Thread Adam Churvis
Response to the LoRCAT (Load Reduction and Concentration Analysis Tool for ColdFusion) Beta testing program has exceeded our expectations, so after 5:00 PM EST tomorrow (Thursday, July 25th) we must cease accepting new Beta testers to the program. Our current Beta testers have already discovered

RE: CF MX WebLogic

2002-07-24 Thread Dave Watts
I don't believe CFMX for WebLogic has been announced. It certainly isn't a downloadable option for those of us participating in the CFMX J2EE beta program. No, from what I've heard it'll be released in the second round, so to speak. Of course, it may never come out at all, for all I know; I

Re: RE: Stupid number format problem

2002-07-24 Thread ksuh
Use the SQL Server str() function in your query to format the number the way you want it. - Original Message - From: Cornillon, Matthieu [EMAIL PROTECTED] Date: Wednesday, July 24, 2002 10:23 am Subject: RE: Stupid number format problem OK. This is a wretched solution, but you could

Re: CF MX WebLogic

2002-07-24 Thread Jon Hall
Macromedia has stuck BEA Weblogic on every single MX press release with an expected ship date of later this year. I do hope they aren't speculating about their own products. -- jon mailto:[EMAIL PROTECTED] Wednesday, July 24, 2002, 12:01:23 PM, you wrote: ML That's speculation, not an

RE: CF MX WebLogic

2002-07-24 Thread Matt Liotta
Companies do it all the time. Again, that is the difference between an expectation and an announcement. Macromedia expects to ship CFMX for WebLogic in a certain time frame, but there is no hard/guaranteed date. When there is, Macromedia will announce the product. Matt Liotta President CEO

Re: RE: CF MX WebLogic

2002-07-24 Thread ksuh
Christ almighty, Matt, yes, we get it. My God, you're so anal about having to be right. Ok, here's your damn lollipop. - Original Message - From: Matt Liotta [EMAIL PROTECTED] Date: Wednesday, July 24, 2002 10:39 am Subject: RE: CF MX WebLogic Companies do it all the time. Again,

cflogin weirdness

2002-07-24 Thread Justin Scott
Hello all, I have a weird problem with cflogin that I need some input on. Basically the setup is CFMX under IIS5, anon access enabled, basic auth enabled and integrated auth disabled. When I try to hit the protected page, the CFLOGIN code runs and I get the basic auth box for the CF

RE: RE: Stupid number format problem

2002-07-24 Thread Brian J. LeRoux
the problem is that function returns a string. Which is kinda sloppy to deal with if you want to use the values for any type of calculations (it can be done by converting the string back to a number but thats why its sloppy!). A cleaner solution would be to write your own udf that removes the

Re: RE: RE: Stupid number format problem

2002-07-24 Thread ksuh
Well, if he were to do calculations after he gets the query, CF doesn't know or care that it's been casted to a string. If he wants to do calculations in SQL Server in that particular query, he doesn't need to use the str'd field. - Original Message - From: Brian J. LeRoux [EMAIL

Re: Cf and Batch file

2002-07-24 Thread Joseph Thompson
Picked this tip up from Anthony Petruzzi over at http://www.sheriff.org Occasionally you may need to restart your ColdFusion server dynamically or as part of a nightly scheduled task. All you need to do is create a little .bat file test.bat c:¥winnt¥system32¥net.exe stop Cold Fusion

Cffile Replacement

2002-07-24 Thread Wallick, Mike
Hey all. Anyone have any tricks to using cffile to upload files when the cf server is running as nobody (solaris)? My host has cffile enabled, but the cf process runs as nobody so it can't write to my web root. Is there any way around this? Mike Wallick * Web Application Developer * [EMAIL

RE: OT - Stored Procedure Help

2002-07-24 Thread S . Isaac Dealey
2 tables - weborderheader,weborderdetail 1 stored procedure joining the 2 tables on the batch_number field. 1 input for the procedure - searchstring Objective: pass either a btn or batch_number to the stored procedure. The stored procedure should then return the results of the search to a

RE: Cffile Replacement

2002-07-24 Thread Matt Liotta
Assign a group to the directory and give it write permissions. Then add the user nobody to the group. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Wallick, Mike

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
Unfortunately, that's not an option. I don't have any control over the server. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:25 PM To: CF-Talk Subject: RE: Cffile Replacement Assign a group to the directory and give it write

RE: AS400 DB2 Drivers

2002-07-24 Thread James Taavon
it works on both UNIX and NT -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 10:19 AM To: CF-Talk Subject: Re: AS400 DB2 Drivers DB2Connect, will this work on a Unix platform or NT or both? Is this the way to go? I assume it is the

JRun.exe is kicking our server's arse...

2002-07-24 Thread Tyler Silcox
About every couple of minutes now, CFMX is dieing a slow and miserable death on our development server until we reboot (Jrun.exe is taking up 99% of the processes.) I'm not posting to slam Macromedia about releasing a buggy product or anything, but this isn't so good for our productivity.

RE: Cffile Replacement

2002-07-24 Thread Matt Liotta
Well then there is no hope. It doesn't matter if you use cffile, some CFX, or some Java object; all of them will execute as the user nobody. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
It'd be nice if cfimpersonate worked under unix, instead of just windows. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:37 PM To: CF-Talk Subject: RE: Cffile Replacement Well then there is no hope. It doesn't matter if you use

RE: Cffile Replacement

2002-07-24 Thread Jesse Noller
Open the directory to the Nobody user. Jesse Noller [EMAIL PROTECTED] Macromedia Server Development Unix/Linux special guy -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:37 PM To: CF-Talk Subject: RE: Cffile Replacement Well

RE: AS400 DB2 Drivers

2002-07-24 Thread James Taavon
Go here for more... http://www.berksnet.com/coldfusion/Articles/cf_to_400.htm -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 10:13 AM To: CF-Talk Subject: RE: AS400 DB2 Drivers Db2connect costs money, client access doesn't, it

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Matt Liotta
I have seen this too, but couldn't track down the problem. A reinstall of CFMX fixed it thoug. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Tyler Silcox [mailto:[EMAIL

RE: Cffile Replacement

2002-07-24 Thread Matt Liotta
He can't. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 10:43 AM To: CF-Talk Subject: RE: Cffile

RE: Cffile Replacement

2002-07-24 Thread Wallick, Mike
You mean have the directory permissions set to 777 (everyone can write)? -Original Message- From: Jesse Noller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:43 PM To: CF-Talk Subject: RE: Cffile Replacement Open the directory to the Nobody user. Jesse Noller [EMAIL

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Tipton Josh (orl1jdt)
I had the same problem uninstalled cfmx and reinstalled problem resolved. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:45 PM To: CF-Talk Subject: RE: JRun.exe is kicking our server's arse... I have seen this too, but couldn't track

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Dan G. Switzer, II
Just out of curiosity, but did you ever have another version of CFMX on the machine (i.e. trial, beta, rc?) Or where these machines w/a clean install? -Dan -Original Message- From: Tipton Josh (orl1jdt) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:51 PM To: CF-Talk

ot mail

2002-07-24 Thread Tipton Josh (orl1jdt)
I think I have seen this question before but how can you hide certain things in an email if someone does not have html email? __ Your ad could be here. Monies from ads go to support these lists and provide more resources for

RE: Cffile Replacement

2002-07-24 Thread Dave Watts
It'd be nice if cfimpersonate worked under unix, instead of just windows. It wouldn't get you anywhere in Windows if you were running CF 5 as a user other than SYSTEM. In your case, if you were running CF 5 as SYSTEM on Windows, you'd already be able to write to any directory you please.

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Tipton Josh (orl1jdt)
No it was a clean install and then started to act up about 4 to 5 days after the install. Josh -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 2:16 PM To: CF-Talk Subject: RE: JRun.exe is kicking our server's arse... Just out of

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Matt Liotta
I have had several versions of CFMX on my machine. However, I always do a clean install. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Dan G. Switzer, II [mailto:[EMAIL

Re: JRun.exe is kicking our server's arse...

2002-07-24 Thread Tyler Silcox
No, we upgraded from 5.0 (and 4.5 before that (and just maybe, 4.0 before that.)) We're in the process of re-installing right now, so hopefully that will take care of these hiccups. And when we get a fresh server, I'm sure things will run much smoother. Thanks all for the advice- Tyler Silcox

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Mike Byers
Have you ever tried it on a clean machine? Many things get left behind and a clean install does not always ensure success. Upgrades are notorious for this because no one can predict what other applications do to the dll's. Anyway, food 4 thought. Mike -Original Message- From: Matt

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Matt Liotta
dll hell is only a problem for Windows users. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED] -Original Message- From: Mike Byers [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 11:37 AM

error message when looking at logs via admin in ColdFusionMX

2002-07-24 Thread Chris White
Has anyone seen the followning error message when going into ColdFusionMX administrator then logs then choose any one of the logs??? If so, what did you do to fix it? Could not find the included template _searchloglogic.cfm. Note: If you wish to use an absolute template path (e.g.

where is search.cfm in cfmx??

2002-07-24 Thread Brian J. LeRoux
I used to go to: localhost/cfdocs/search.cfm if I wanted to know somthing... where did this go in cfmx?? __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ:

Re: JRun.exe is kicking our server's arse...

2002-07-24 Thread Douglas Brown
Question...I am using CF5 and I have 2 jrun.exe when I view my running processes, is this normal? Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: Mike Byers [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 24, 2002 11:37 AM Subject: RE:

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Mike Byers
Sorry, I must have missed what OS you said you were running. :) Mike -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:29 PM To: CF-Talk Subject: RE: JRun.exe is kicking our server's arse... dll hell is only a problem for Windows users.

Re: RE: Stupid number format problem

2002-07-24 Thread Phillip B
First thanks for the help. Second, where can I get some good info on UDF's? I was thinking of making on out of it but I don't know how. Phillip Broussard Tracker Marine Group 417-873-5957 - Original Message - From: Brian J. LeRoux [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

Quick Help...

2002-07-24 Thread Kris Pilles
Can someone quick tell me how to grab just the page name from the browser... For example I want to set pagename = index.cfm How do I get the index.cfm CGI. ? -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 2:41 PM To: CF-Talk

RE: error message when looking at logs via admin in ColdFusionMX

2002-07-24 Thread Mike Byers
Did you create a virtual mapping in CF Administrator? -Original Message- From: Chris White [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:32 PM To: CF-Talk Subject: error message when looking at logs via admin in ColdFusionMX Has anyone seen the followning error message

Project Management

2002-07-24 Thread G
Does anyone have a project management book or class they recommend? I'm in a non-fusebox environment with no project manager. It's pretty much cowboy-coding. We're handed a Marketing Spec Document and turned loose. I've used FB for a few years, and am kind of lost without it. I know I'm starting

Re: Quick Help...

2002-07-24 Thread todd
cgi.script_name -- problem is, it contains more than just the .cfm name On Wed, 24 Jul 2002, Kris Pilles wrote: Can someone quick tell me how to grab just the page name from the browser... For example I want to set pagename = index.cfm How do I get the index.cfm CGI. ?

Re: Quick Help...

2002-07-24 Thread Charlie
cgi.CF_TEMPLATE_PATH=C:¥folder¥folder¥index.cfm You could perform some string manipulation based on the fact the page name comes after the last instance of the backward slash '¥'. - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: JRun.exe is kicking our server's arse...

2002-07-24 Thread Matt Liotta
I didn't say, but just to clarify; I have seen this issue on three different machines. All with fresh installs. Two of them Windows and one of them Linux. Matt Liotta President CEO Montara Software, Inc. http://www.montarasoftware.com/ V: 415-577-8070 F: 415-341-8906 P: [EMAIL PROTECTED]

RE: Quick Help...

2002-07-24 Thread Jillian Carroll
Kris, cgi.script_name will do that for you -- Jillian -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:42 PM To: CF-Talk Subject: Quick Help... Can someone quick tell me how to grab just the page name from the browser... For example I

RE: Quick Help...

2002-07-24 Thread Wallick, Mike
Just do a #ListLast(cgi.script_name, /)# to get the file name. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 1:54 PM To: CF-Talk Subject: Re: Quick Help... cgi.script_name -- problem is, it contains more than just the .cfm name

RE: Quick Help...

2002-07-24 Thread Jillian Carroll
I use this to grab 'just' the end: ListLast(cgi.script_name) -- Jillian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 12:54 PM To: CF-Talk Subject: Re: Quick Help... cgi.script_name -- problem is, it contains more than just the

RE: Quick Help...

2002-07-24 Thread Chris Lofback
Use this: CFSET FileName = GetFileFromPath(CGI.SCRIPT_NAME) Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 2:42 PM To: CF-Talk

  1   2   3   >