JRun closed connection

2003-10-08 Thread Ryan Sabir
Heya All, I've got a high volume site that's constantly giving me the following error: --- Server Error The server encountered an internal error and was unable to complete your request. JRun closed connection. --- Stopping and restarting CFMX will make the error go away, but it comes back

RE: CFMX 6.1, Apache WinXP Pro

2003-10-08 Thread Peter Tilbrook
Should you not have installed ColdFusion to Apache and not as a standalone installation (on port 8500)? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, 8 October 2003 6:19 AM To: CF-Talk Subject: CFMX 6.1, Apache WinXP Pro I've done several searches

Re: Client variable initialization errors in cfapplication

2003-10-08 Thread Thomas Chiverton
On Tuesday 07 Oct 2003 17:55 pm, Jeremy Bruck wrote: Thomas, Here is Line 87 in the Application.cfm... Line 84: cfapplication name=#request.applicationName# cfapplication should be at the top of your Application.cfm, shouldn't it ? What's above it ? -- Tom Chiverton Advanced ColdFusion

Re: FYI

2003-10-08 Thread Thomas Chiverton
On Tuesday 07 Oct 2003 20:29 pm, Brad Roberts wrote: That's exactly what I thought.Seems like developers should be able to sue for the time it's going to take us to update our code.I'd say our combined time would cost somewhere in the ballpark of $520 million, give or take. Nope you can't,

[Macromedia][SQLServer JDBC Driver] No more data available to read

2003-10-08 Thread Calvin Ward
Alan, Did you ever find out anything about the error that reads: [Macromedia][SQLServer JDBC Driver] No more data available to read Or anyone else? Also I have the August 1 drivers that resolve the 100 percent cpu problem. Thanks, Calvin [Todays Threads] [This Message] [Subscription]

RE: returning an image via cfhttp

2003-10-08 Thread John McCosker
Ok I tried this, CFHTTP METHOD=GET URL="" PROTECTED]/GetMap.asp CFHTTPPARAM TYPE=FORMFIELD VALUE=#XML_DOC# NAME=xmlparams /CFHTTP CFCONTENT TYPE=image/gifCFOUTPUT#toString(CFHTTP.FileContent)#/cfoutput/CFCONT ENT but it still does not show the image, I tried writing the image to disk

Looping through a list, setting each listItem to a column

2003-10-08 Thread Allan Clarke
Hello Everybody, I am trying to read a log file and display the results on a webpage. Here is what the log file looks. DateTime User Webpage Visited Status 2003/09/01 11:52:15, User\testUser1, /wwwroot/code/article_1.shtml, OK 2003/09/01 11:53:35, User\testUser2, /wwwroot/code/article_2.shtml,

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
Try this.. cfset qTmp=QueryNew(DateTime,User,Document,Status) cfloop list=#fOutput# index=lIndex delimiters=#Chr(10)# cfset i = 0 cfset tmpstart=listLen(lIndex,',') cfset tmp=QueryAddRow(qTmp,listLen(lIndex,',')) cfloop list=#lIndex# index=innerList delimiters=, cfscript

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Craig, I tried running your code and get this error, Invalid list index 2. In function ListGetAt(list, index [, delimiters]), the value of index, 2, is not a valid as the first argument (this list has 1 elements). Valid indexes are in the range 1 through the number of elements in the list. Any

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
Will probably be the header row as it doesn't contain commas and hence has no delimiter. Original Message- From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 11:32 To: CF-Talk Subject: Re:Looping through a list, setting each listItem to a column Craig, I tried

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
This works... cfset qTmp=QueryNew(DateTime,User,Document,Status) cfloop list=#fOutput# index=lIndex delimiters=#Chr(10)# cfset tmp=QueryAddRow(qTmp,1) cfloop list=#lIndex# index=i cfscript tmp=QuerySetCell(qTmp,DateTime, listGetAt(lIndex,1)); tmp=QuerySetCell(qTmp,User, listGetAt(lIndex,2));

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
It does if you skip the header row, sorry, should have said so. -Original Message- From: Craig Dudley Sent: 08 October 2003 11:38 To: CF-Talk Subject: RE: Looping through a list, setting each listItem to a column This works... cfset

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Yes it does work now, thanks a ton for your speedy help. Cheers This works... cfset qTmp=QueryNew(DateTime,User,Document,Status) cfloop list=#fOutput# index=lIndex delimiters=#Chr(10)# cfset tmp=QueryAddRow(qTmp,1) cfloop list=#lIndex# index=i cfscript tmp=QuerySetCell(qTmp,DateTime,

Interesting! CFMX SyncML

2003-10-08 Thread Ben Scammell
I am after a CF developer for a fixed price piece of work. I require someone to write a piece of code that will synchronise a mobile device using SyncML technology to an SQL \ Access DB. I am interested in synchronising all the data from the phone, so this encompasses vCards, vCals, VNotes

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
Had a proper look at it, you actualy only need 1 loop. cfset qTmp = QueryNew(DateTime,User,Document,Status) cfloop list=#fOutput# index=fileLine delimiters=#Chr(10)# cfif listLen(fileLine) eq 4 cfset tmp = QueryAddRow(qTmp,1) cfscript tmp=QuerySetCell(qTmp,DateTime, listGetAt(fileLine,1));

re: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Bushy
Hi all, I've used all the suggestions from this list but I still can't get it to work. I've included my code. I've also left in the code that I'm using to test. Basically what I want to happen is this. The file is loaded but the cfquery I don't want to run unless some text is entered in the

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Pascal Peters
cfif IsDefined(form.redirect) AND Len(Trim(form.redirect)) !--- run query --- /cfif Pascal -Oorspronkelijk bericht- Van: Bushy [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 13:37 Aan: CF-Talk CC: Onderwerp: re: Checking input, Cont'd thread from yesterday Hi all,

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
thanks Craig, you've really been of great help. I have another question for you, what I've noticed is a couple of rows are not displayed because the document column has a documnet name with a comma in it. Here is an example. 2003/09/09 14:49:05, TestUser1, /Doc/News/Budgeting,Forecasting

Re: FYI

2003-10-08 Thread Calvin Ward
I'm thinking that Brad was thinking about suing Eolas, not Microsoft... - Calvin - Original Message - From: Thomas Chiverton To: CF-Talk Sent: Wednesday, October 08, 2003 5:40 AM Subject: Re: FYI On Tuesday 07 Oct 2003 20:29 pm, Brad Roberts wrote: That's exactly what I thought.Seems

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Bushy
I just tried the below and all it returns is Do Nothing. See below: cfif IsDefined(form.redirect) AND Len(Trim(form.redirect)) Run Query cfelse Do nothing /cfif Is there something wrong with my input syntax? It looks like something is getting clobbered. --Original Message Text--- From: Pascal

RE: CFHTTP Posts with Bluedragon free

2003-10-08 Thread Kola Oyedeji
Craig could it perhaps be something to do with the size? I noticed you said the packets are quite large. Does it work with smaller packets? Does it work for non XML calls? Also have you tried adjusting the timeout to a larger value? Kola -Original Message- From: Craig Dudley

RE: CFMX 6.1, Apache WinXP Pro

2003-10-08 Thread jmauney
I did that my first go round and got an error at the end of the installation process saying that it could not install the connectors and that I would need to do it manually. So I uninstalled CFMX and deleted the cfusionmx directory and followed the steps below as recommended in other forums and

Re: FYI

2003-10-08 Thread Thomas Chiverton
On Wednesday 08 Oct 2003 13:01 pm, Calvin Ward wrote: I'm thinking that Brad was thinking about suing Eolas, not Microsoft... On what grounds ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited Underwood Business Park Wookey

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Craig Dudley
Yes a regular _expression_ (regex) , what you would want is a regex that finds any commas that are between quotation marks and either escapes them or replaces them. I'm no regex expert and that would take me quite a while to figure out, maybe later if youre still stuck. Good luck.

RE: CFHTTP Posts with Bluedragon free

2003-10-08 Thread Craig Dudley
Yer, tried all of those. If I post formfield 'test' with a value of 'test' it still doesn't work. I've tried all sorts of timeout values also. And every combination of CFHTTP settings I can think of. I've pretty much come to the conclusion that CFHTTP posts are just broken in BD server

Re: FYI

2003-10-08 Thread Calvin Ward
I'm also thinking it was more of a musing than anything else. - Calvin - Original Message - From: Thomas Chiverton To: CF-Talk Sent: Wednesday, October 08, 2003 8:20 AM Subject: Re: FYI On Wednesday 08 Oct 2003 13:01 pm, Calvin Ward wrote: I'm thinking that Brad was thinking about

OT: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Mike Kear
A question on behalf of my web hosting provider . are there any limitations in installing MS SQLServer2000 with the web edition of Win2003? He says he has heard there are issues but hasn't heard details.Has anyone done it? Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks.

Re: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Howie Hamlin
It may or may not work but I don't think that the web edition license allows for it. Regards, Howie - Original Message - From: Mike Kear To: CF-Talk Sent: Wednesday, October 08, 2003 8:57 AM Subject: OT: SQLServer2000 and Win2003? any issues? A question on behalf of my web hosting

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Mike Townend
AFAIK, the web edition will not allow you to install SQLServer onto it... -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 8, 2003 13:58 To: CF-Talk Subject: OT: SQLServer2000 and Win2003? any issues? A question on behalf of my web hosting provider .

RE: OT Macromedia.com - What Content Management System does it us e ?

2003-10-08 Thread Philipp Cielen
I think they used the atomz search engine but have replaced it with google recently. Philipp Cielen -- cielen.com From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 07, 2003 5:21 PM To: CF-Talk I believe there's some atomz in there too: http://www.atomz.com/ It uses a

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Craig Dudley
I understand it will not even install on web addition, the licence deffinatley doesn't allow for it either, Howie is correct. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 14:04 To: CF-Talk Subject: Re: SQLServer2000 and Win2003? any issues?

RE: CFHTTP Posts with Bluedragon free

2003-10-08 Thread Daniel Ganter
Hi Craig, I've forwarded your issue to the BlueDragon Product Interest List. You may want to join the list for more direct interaction with our engineers: http://www.newatlanta.com/products/bluedragon/self_help/arch ive_search/index.cfm Regards, Dan Daniel Ganter New Atlanta Communications

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Kola Oyedeji
I'm pretty sure that this was recently raised on this list so you may find it in the archives, IRC I think its been reported that the web edition of Win2003 does not support SQlserver2000. (it may support MSDE though). Kola -Original Message- From: Howie Hamlin [mailto:[EMAIL

Licensing for applications developed in CF

2003-10-08 Thread A.Little
Hi all, We've been approached by a couple of other Universities who are interested in using one of our applications developed in CF. We would be providing them, for free, with a non-encrypted copy of our CF code and database schema script, so they would be able to develop the application and

Re: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Doug White
The provider will need to upgrade to Win 2003 Enterprise, or as an alternative, run the SQL2k server on a separate box on Win2k. The web edition of Win2003 is not a suitable package for a provider, as it is much more suited for supporting a local single web site, or sites limited to static html.

Re: Licensing for applications developed in CF

2003-10-08 Thread Thomas Chiverton
On Wednesday 08 Oct 2003 14:23 pm, A.Little wrote: I've had a look through the GNU General Public License and it mainly seems to fit the bill, but I'm unsure of whether the fact that the app requires CF to run would invalidate the license. IANAL, but the GPL covers the source code / compiled

RE: CFHTTP Posts with Bluedragon free

2003-10-08 Thread Craig Dudley
Cheers Daniel, I have subscribed. -Original Message- From: Daniel Ganter [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 14:13 To: CF-Talk Subject: RE: CFHTTP Posts with Bluedragon free Hi Craig, I've forwarded your issue to the BlueDragon Product Interest List. You may

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Have tried but can't crack it. Can you please show me how to do it if you don't mind, thanks in advance. Yes a regular _expression_ (regex) , what you would want is a regex that finds any commas that are between quotation marks and either escapes them or replaces them. I'm no regex expert and

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Pascal Peters
I reexamined your code and you are using the method get on your form. Normally, this wouldn't matter because you are using cfform (it will change it to post), but try using post anyway. Also, you can turn on debug info to see what form and url vars exist (or just dump them in your code, remember:

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Jim Davis
SQL 2000 simply won't install to 2003 Web Edition - neither will exchange for that matter. Jim Davis -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 8:58 AM To: CF-Talk Subject: OT: SQLServer2000 and Win2003? any issues? A question

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Mike Kear
So Doug are you saying that you wouldn't recommend using Win2003 as a OS for CFMX either? Cheers, Michael Kear Windsor, NSW, Australia AFP Webworks. -Original Message- From: Doug White [mailto:[EMAIL PROTECTED] Sent: Wednesday, 8 October 2003 11:24 PM To: CF-Talk Subject: Re:

problems with recursion in cfmx

2003-10-08 Thread Jason Wagstaff
I don't know if this is a possible bug (or maybe i am doing something wrong), but when using recursion with a query in the function scope it is overwritten on the next call of the function.i did find a workaround, but want to know is what is intended. I have this function which orders sibilings

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Bushy
Hi Pascal, I tried changing the GET to POST and changed the cfform to just form but it still won't work. I have no doubt that it works for you. There MUST be something in my code thats cloberring it. Ths code below is being pulled in with a cfinclude along with other files. Must be something in

RE: problems with recursion in cfmx

2003-10-08 Thread Adrian Lynch
In your query put cfset var getStandardRet = / That may help. Ade -Original Message- From: Jason Wagstaff [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 15:04 To: CF-Talk Subject: problems with recursion in cfmx I don't know if this is a possible bug (or maybe i am doing

Help with Regular Expressions

2003-10-08 Thread Allan Clarke
I want to use a regular _expression_ that finds any commas that are between quotation marks and either escapes them or replaces them Here is an my string. 2003/09/09 14:49:05, TestUser1, /Doc/News/Budgeting,Forecasting Reporting.doc, OK As you can see /Doc/News/Budgeting,Forecasting

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Bushy
Can I use cfdump to output the form variables? --Original Message Text--- From: Pascal Peters Date: Wed, 8 Oct 2003 15:54:25 +0200 I reexamined your code and you are using the method get on your form. Normally, this wouldn't matter because you are using cfform (it will change it to post), but

RE: problems with recursion in cfmx

2003-10-08 Thread Adrian Lynch
Ignore that. I meant to say, in the recursive functions, locally scope your queries. cfset var yourQuery = / should do it. Ade -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: 08 October 2003 15:08 To: CF-Talk Subject: RE: problems with recursion in cfmx

Re: Help with Regular Expressions

2003-10-08 Thread Ben Doom
The problem is in defining between quotation marks because technically in testuser1,testuser2 the comma *is* between quotation marks.I can see how you could loop over the string and keep the pairs consistent that way, but I can't off the top of my head think of a way to do it with a single

OT: .bak files in Dreamweaver

2003-10-08 Thread Demarco, Alex
I had a user ask today How come everytime I save a file a .bak file is also created...Wheere is the option to turn that off? I can't seem to find it. Any ideas? Thanks! - Alex [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Hi Ben Actually if you take a look at this thread you will get a better idea of what I'm trying to do. I'll appreciate your help http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid=27743forumid=4 Thanks The problem is in defining between quotation marks because technically

Re: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Doug White
Not the Web Edition - I personally have Win2003 Enterprise deployed, with CFMX 6.1 and a separate box dedicated to the SQL2k server. It is working great. Of course, I also have servers running Wn2k, and RedHat Linux -All of them support CFMX 6.1It is for the customer to choose which platform they

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Pascal Peters
This should do it in CF using regexp. There are probably custom tags that will read logs more efficiently though. cfscript columns = DateTime,User,Document,Status; qTmp = QueryNew(columns); pattern = '^[[:space:]]*([^,]*|([^]|)*)[[:space:]]*(,|$)'; matchStruct = structNew(); for(i=2;i LE

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Pascal Peters
Yes -Oorspronkelijk bericht- Van: Bushy [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 16:26 Aan: CF-Talk CC: Onderwerp: RE: Checking input, Cont'd thread from yesterday Can I use cfdump to output the form variables? [Todays Threads] [This Message]

RE: problems with recursion in cfmx

2003-10-08 Thread Jason Wagstaff
--- Adrian Lynch [EMAIL PROTECTED] wrote: Ignore that. I meant to say, in the recursive functions, locally scope your queries. that is essentially what i do with using the arguments.foo and it solved the problem.but is this what is supppose to happen/intended? it seems to me that the the

Re: Web Stats software

2003-10-08 Thread Larry C. Lyons
Dan Phillips (CFXHosting.com) wrote: Can anyone tell me what Stats software out there can handle a URL like http://domain.com/sub.cfm?page=article7news_id=1234 http://domain.com/sub.cfm?page=article7news_id=1234 I've tried LiveStats by DeepMetrix and it does not seem to track it at all.

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Bushy
Hmm...my app is one sick puppy. I get nothing returned. cfdump var=#form# --Original Message Text--- From: Pascal Peters Date: Wed, 8 Oct 2003 16:53:58 +0200 Yes -Oorspronkelijk bericht- Van: Bushy [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 16:26 Aan: CF-Talk CC: Onderwerp:

RE: problems with recursion in cfmx

2003-10-08 Thread Adrian Lynch
I hope someone will correct me if I'm wrong on this, but... When you don't scope a variable, including a query, in a function, it defaults to the variables scope, which means it can be seen outside of the function. To make it local to the function you var scope it, this is what cfset var

RE: problems with recursion in cfmx

2003-10-08 Thread Tim Blair
but is this what is supppose to happen/intended? Yes. Any unscoped variable that is created in a function body is automatically placed in the variables scope, which is global and not localised to the function, hence future iterations of the same function can read/overwrite that value.To

RE: problems with recursion in cfmx

2003-10-08 Thread Raymond Camden
Also, does anyone know a similar way to see all var scoped variables? Dumping var doesn't work. You can't - however - if you need to, simply do: cfset var local = structNew() and place all your crap in local, then you can inspect it at will. [Todays Threads] [This Message]

Re: Help with Regular Expressions

2003-10-08 Thread Ben Doom
Try this: cfset string = '11/12/2003, bob, this is a ,comma,list,end' cfscript string = string ,; first = find('', string); second = find('', string, first + 1); while(first and second) { string = left(string, first) replace(mid(string, first + 1, second-first), ',', '~', all)

Re: .bak files in Dreamweaver

2003-10-08 Thread Calvin Ward
Are you using Contribute? - Calvin - Original Message - From: Demarco, Alex To: CF-Talk Sent: Wednesday, October 08, 2003 10:38 AM Subject: OT: .bak files in Dreamweaver I had a user ask today How come everytime I save a file a .bak file is also created...Wheere is the option to

RE: SQLServer2000 and Win2003? any issues?

2003-10-08 Thread Dave Watts
The web edition of Win2003 is not a suitable package for a provider, as it is much more suited for supporting a local single web site, or sites limited to static html. I would disagree with this, with the caveat that it has memory and processor limitations that'll keep you from putting too

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
I've tried that and it does not work. Here is my code cfscript myList = '2003/09/09 14:49:05, TestUser1, /Doc/News/Budgeting,Forecasting Reporting.doc, OK'; myList = REReplace(myList, '^[[:space:]]*([^,]*|([^]|)*)[[:space:]]*(,|$)',''); /cfscript cfoutput#myList#/cfoutput This should do it

RE: problems with recursion in cfmx

2003-10-08 Thread Jason Wagstaff
--- Tim Blair [EMAIL PROTECTED] wrote: but is this what is supppose to happen/intended? Yes. Any unscoped variable that is created in a function body is automatically placed in the variables scope, which is global and not localised to the function, hence future iterations of the same

re Using cfdump

2003-10-08 Thread Bushy
Why does this work cfdump var=#session# expand=yes and this doesn't... cfdump var=#form# expand=yes It retuns nothing from my cfform or if I change the cfform to formsame thing. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: re Using cfdump

2003-10-08 Thread Raymond Camden
Does your form scope actually have anything in it? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Thanks Ben, the problem with that script is that because I'm reading a log file with 300 plus rows of data, the execution time suffers. Is there a way to only run your code if somewhere in the string there is a comma inside double quotes? Try this: cfset string = '11/12/2003, bob, this is a

Re: re Using cfdump

2003-10-08 Thread Thomas Chiverton
On Wednesday 08 Oct 2003 16:40 pm, Bushy wrote: cfdump var=#form# expand=yes It retuns nothing from my cfform or if I change the cfform to formsame thing. Is your form post'ed to the page with that cfdump on ? -- Tom Chiverton Advanced ColdFusion Programmer Tel: +44(0)1749 834997

HELP!!! How do I debug server hogging code.

2003-10-08 Thread Ian Skinner
I've got some code that recently started hanging and tying up the server when it is run.It does not throw any errors, but it also never returns any results.It is effecting the entire server box when it does this. Can anybody provide some easy to follow steps on how I could get a better picture on

RE: Checking input, Cont'd thread from yesterday

2003-10-08 Thread Pascal Peters
This means the struct is empty -Oorspronkelijk bericht- Van: Bushy [mailto:[EMAIL PROTECTED] Verzonden: wo 8/10/2003 17:08 Aan: CF-Talk CC: Onderwerp: RE: Checking input, Cont'd thread from yesterday Hmm...my app is one sick puppy. I get nothing returned. cfdump

Re: CFMAIL Odd Results

2003-10-08 Thread Drew Harris
Yes, I have seen this, if you make the message one big long line in between the cfmail tags with html br to break the line, it should send as long as it is not over 1000 characters... Many email servers will not receive messages with a line longer than 1000 characters they either throw it out all

RE: Looping through a list, setting each listItem to a column

2003-10-08 Thread Pascal Peters
The script wasn't meant to give you a regexp to replace the commas. It does the entire job of creating the query and takes the as a qualifier into consideration. Replace your script by mine and it should work. -Oorspronkelijk bericht- Van: ColdFusion Programmer [mailto:[EMAIL

CFTRANSACTION and PostgreSQL/mySQL

2003-10-08 Thread Bryan Stevenson
Hey All, I've seen many posts out there about PostgreSQL and mySQL and rollbacks.I want to know if they will properly rollback (not commit) if a query(s) fail inside a CFTRANSACTION block? TIA Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group

Re: Help with Regular Expressions

2003-10-08 Thread Ben Doom
You could run it on any line that has too many list elements.That is, if listlen(5) then run the script on it (define it as a UDF and call it). HTH. --Ben ColdFusion Programmer wrote: Thanks Ben, the problem with that script is that because I'm reading a log file with 300 plus rows of

Re: CFMAIL Odd Results

2003-10-08 Thread Howie Hamlin
FYI - by RFC a line of text in an email message must be 1000 characters or less including the required CRLF pair.It is common for mail servers to reject non compliant mail because there is a lot of SPAM mail that is non-compliant. Regards, -- Howie Hamlin - inFusion Project Manager On-Line Data

Re: returning an image via cfhttp

2003-10-08 Thread Jochem van Dieten
John McCosker wrote: CFHTTP METHOD=GET URL="" PROTECTED]/GetMap.asp CFHTTPPARAM TYPE=FORMFIELD VALUE=#XML_DOC# NAME=xmlparams /CFHTTP CFCONTENT TYPE=image/gifCFOUTPUT#toString(CFHTTP.FileContent)#/cfoutput/CFCONT ENT Try this: CFHTTP METHOD=GET URL="" PROTECTED]/GetMap.asp CFHTTPPARAM

query output question

2003-10-08 Thread Tim Laureska
This is probably basic, but I've not run into it before... I have the following select area in a form: select name=category2 size=3 multiple option value=10Accounting/Auditing/option option value=20Agriculture, Forestry, Fishing/option option value=30Architecture Engineering/option option

OT:Bots / spiders finding unlinked pages... How?

2003-10-08 Thread Mark W. Breneman
One of our clients' IS department just got NetTracker/6.0 Enterprise and has set it loose on the site.It has found several pages that are not linked from any where.I do not have directory browsing turned on and I know these pages are not linked from any page.. How is it possible that it found

Re: re Using cfdump

2003-10-08 Thread Calvin Ward
That should work on the form processing page, if your method is set to POST. - Calvin - Original Message - From: Bushy To: CF-Talk Sent: Wednesday, October 08, 2003 11:40 AM Subject: re Using cfdump Why does this work cfdump var=#session# expand=yes and this doesn't... cfdump

CFContent and PDF problems

2003-10-08 Thread Shawn Grover
We're using a CFContent to push files to a client page (after they've clicked on an appropriate link of course).Things are working for image files, but we are getting odd behaviour when we try to view PDF documents. Here's the code in question: !--- Set the name of the download file in the HTTP

RE: HELP!!! How do I debug server hogging code.

2003-10-08 Thread Mike Brunt
Ian, what version of ColdFusion are you running on what operating system? Kind Regards - Mike Brunt Original Message --- I've got some code that recently started hanging and tying up the server when it is run.It does not throw any errors, but it also never returns any

Re: HELP!!! How do I debug server hogging code.

2003-10-08 Thread James Thomas
Sounds like a seamless loop.Try outputting things as you go down the page.Wherever the last number ends on the output is where your problem is at. xENo - Original Message - From: Ian Skinner To: CF-Talk Sent: Wednesday, October 08, 2003 11:50 AM Subject: HELP!!! How do I debug server

RE: PayPal Buy Now?

2003-10-08 Thread Buddy
Kay, When you say premium site access, the first thing that pops into my head is adult content. This may or may not be the case with your client, but if it is you cannot use paypal. Adult sites are excluded in their terms and conditions. If you are working on an adult site and need advice about

RE: query output question

2003-10-08 Thread Douglas.Knudsen
you are passing a list this way so you need to use the IN operator...and while your at ti best to use cfqueryparam here. ...this 'should' work cfquery datasource=test_data name=cat_name SELECT category, category_no FROM job_categories Where category_no IN ( cfqueryparam cfsqltype=CF_SQL_VARCHAR

Re: query output question

2003-10-08 Thread Ubqtous
Tim, On 10/8/2003 at 12:42, you wrote: TL Where category_no=#category2# Use: Where category_no in (#category2#) ~ Ubqtous ~ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: HELP!!! How do I debug server hogging code.

2003-10-08 Thread Scott Weikert
One thing I do at times is use GetTickCount() and cfflush combo. Top of the page, set a variable (let's call it StartTick) as GetTickCount(). Then at strategic parts of your code, set a variable NowTick as GetTickCount() - StartTick. Output it, and do a cfflush. This will be the no. of

Problem with select list on Mac OS9 + NS4

2003-10-08 Thread Samuel Neff
We're having a problem with select lists not scrolling on a Mac OS9 w/ NS4. I tested this on all three of our OS9 computers with same results. See these screen shots: http://www.blinex.com/~sam/No_Scroll_Option_List.jpg http://www.blinex.com/~sam/With_Scroll_Option_List.jpg What can cause

RE: .bak files in Dreamweaver

2003-10-08 Thread Scott Fegette
That would be my suspiction too, Calvin. Using DWMX 2004 and CT 2 (if you've indeed got your site configured to use Contribute) I'm pretty sure you can find/set this option via: - Site Manage Sites - Highlight the site in question, click Edit to open the site defs window - Select the

Clearing CGI variables

2003-10-08 Thread Corey Menscher
For many years our site has used the CGI.AUTH_USER variable to determine if someone is logged in.This has become a problem because we want to provide a logout option...but there seems to be no way to clear the CGI variables programmatically.We are running Deerfield's (previously O'Reilly's)

RE: Clearing CGI variables

2003-10-08 Thread Barney Boisvert
CGI variables are provided by the web server, based on what information the client sends to it.To get what you want, you have to tell the browser to stop remembering the credentials for the realm they are currently logged into, which will cause the client to stop sending the auth-user header.I

OT: Legal?

2003-10-08 Thread Cedric Villat
Ok, a client of mine has gone nuts. He is an agent for a few celebrities, and I had offered to create a site for one of his clients free-of-charge provided I was the one running the site. He has now decided to go to another designer, and wants me to give him the site, which as I said he has not

Re: CFTRANSACTION and PostgreSQL/mySQL

2003-10-08 Thread Jochem van Dieten
Bryan Stevenson wrote: I've seen many posts out there about PostgreSQL and mySQL and rollbacks.I want to know if they will properly rollback (not commit) if a query(s) fail inside a CFTRANSACTION block? PostgreSQL: yes MySQL: only if you take the provisions described in the MySQL manual

RE: Legal?

2003-10-08 Thread Ben Densmore
I'm not a lawyer but who is listed as owning the domain? If it is under his name then he may win if he took legal action. If it is in your name and there was no written agreement between the 2 of you then I don't think there is much he can do. Ben -Original Message- From: Cedric Villat

Re: OT: Legal?

2003-10-08 Thread David Groth
Cedric - Had the same thing happen to me.The code is your intellectual property until YOU release it to the customer.My customer threaten legal action as well, when he didn't want to pay for.I responded by offering to have everything deleted from the server, and then he could go on his merry

RE: Legal?

2003-10-08 Thread Tony Weeg
if you made the code. its yours, regardless of influence from a prospective buyer. im no lawyer, but I would say unless you are under the confines of employment by someone,or some entity, the code is yours, it intellectual property, and it seems by your involvment with this code, that's its your

Re: Legal?

2003-10-08 Thread Charlie Griefer
not necessarily sound legal advice oops!i hit the wrong key and deleted all of the files on the server. i may have a recent backup somewhere...if only i were motivated enough to look for it... / not necessarily sound legal advice - Original Message - From: Cedric Villat To: CF-Talk

thanks- query output question

2003-10-08 Thread Tim Laureska
Thanks to all for the quick replay -Original Message- From: Ubqtous [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 1:34 PM To: CF-Talk Subject: Re: query output question Tim, On 10/8/2003 at 12:42, you wrote: TL Where category_no=#category2# Use: Where category_no in

Re: Legal?

2003-10-08 Thread Kevin Graeme
You really need to talk to a lawyer to get real legal advice. However, my understanding of copyright law is that it depends on if it's freelance or work-for-hire. If you are working freelance then you own the material you create. When it's done and the client receives it (it's put into production

RE: HELP!!! How do I debug server hogging code.

2003-10-08 Thread Ian Skinner
Sorry that would probably be useful information wouldn't it. CFMX 6.0 Win 2000 server Oracle 9i database -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED] Sent: Wednesday,

CF Chatroom Scripts

2003-10-08 Thread David Thomas
Looking for a CF chat script must be CF 5.0 or older Please contact [EMAIL PROTECTED] [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

  1   2   >