RE: Dual Xeon 3.06 GHz - 120 GB IDE HD - 2 GB RAM

2006-01-19 Thread Kerry
It states that with Raid 1 (mirror) the write speed is the same I cant see where it says that? Maybe a case of temporary blindness on my part, or maybe John has just edited the encyclopedia -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 19 January 2006 16:21 To: CF-Talk

RE: Avoiding copying by value

2006-01-05 Thread Kerry
AFAIK: I think that shows that the session pointer to the object in memory (query) is deleted, but because there is another pointer to the object - q -, then the object in memory is not deleted by the garbage collection. i.e session.qncache is not a query, its a pointer to a query object in

RE: Reference to undefined entity APOS;.

2006-01-05 Thread Kerry
I seem to remember XML choking on the ampersand unless its within a CDATA block? -Original Message- From: Rob Sherman [mailto:[EMAIL PROTECTED] Sent: 05 January 2006 16:20 To: CF-Talk Subject: Reference to undefined entity APOS;. Hi, I'm running CFMX 6.1 (Standard) updater 1. I have

RE: cfquery result=

2005-11-30 Thread Kerry
6.1 says: Attribute validation error for tag CFQUERY. The tag does not allow the attribute(s) RESULT -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: 30 November 2005 14:11 To: CF-Talk Subject: cfquery result= This is probably a dumb question, but I'll ask just to

RE: pseudo-memory leak

2005-11-30 Thread Kerry
are you saying if it takes 2 weeks to hack a website, its less hacked than if it takes 2 hours? :P -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: 30 November 2005 16:09 To: CF-Talk Subject: RE: pseudo-memory leak Clocks ticking. ;-)

RE: pseudo-memory leak

2005-11-29 Thread Kerry
FYI, hashing something doesnt mean that it cant be extracted, why just the other day my little 2Ghz workstation extracted a 5 character password from a hash in about 5 minutes... -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: 29 November 2005 09:43 To: CF-Talk Subject: RE:

RE: cfinclude problem

2005-11-11 Thread Kerry
If you cant use relative incs, what you could do in a shared environment is put all your include files in a namespace that no one else should be using... havent actually had to do it myself but I would guess something along the lines of: /com_mydomain/myappname/includes

RE: encrypt + file append + decrypt

2005-11-10 Thread Kerry
no one? anyway, realised my mistake as soon as I left the office - each message has to be decrypted individually. Just because they are all encrypted using the same algorithm and appended doesnt mean you can decrypt them all in one go. -Original Message- From: Kerry [mailto:[EMAIL

RE: SESSION or not to SESSION

2005-11-09 Thread Kerry
question: Do you have to modify the JVM settings so that CF can actually use our theoretical 1GB of RAM? -Original Message- From: John Paul Ashenfelter [mailto:[EMAIL PROTECTED] Sent: 09 November 2005 16:02 To: CF-Talk Subject: Re: SESSION or not to SESSION On 11/9/05, Ken Ferguson

encrypt + file append + decrypt

2005-11-09 Thread Kerry
okay, been looking at this for a while now, cant see why its not working, suggestions appreciated! !--- environment: cfmx 6.1, win2K code objective: encrypt string + linebreak, append to file (repeat), read file, decrypt, display in textarea expected output: 1 2 3 4 5 6 7 8 9 10 actual output:

RE: portable SQL queries with date and time values

2005-10-27 Thread Kerry
dont know about best practice, but to ensure date portability I dont use date fields in the DB, I use varchar fields and put ISO dates in them e.g. 20051027T161420 Then if needed, I convert to proper dates once the value is out of the DB. Since I know the string will alway be in the same format,

RE: Recursion anyone?

2005-10-26 Thread Kerry
There are loads and loads of DHTML menus out there, e.g. http://www.dynamicdrive.com/dynamicindex1/hvmenu/ with the actual menu code taken care of, all you have to do is recurse over your database and write out the menu items. last time i checked, cftree outputs a java applet, not javascript.

RE: Recursion anyone?

2005-10-26 Thread Kerry
give you the first record's categoryname. when doing a for() loop, you _must_ use the counter variables.menuqry.adcategoryname[i] Good luck! -Original Message- From: Stephen Whiteley [mailto:[EMAIL PROTECTED] Sent: 26 October 2005 14:51 To: CF-Talk Subject: Re: Recursion anyone? Kerry

RE: Recursion anyone?

2005-10-26 Thread Kerry
11 : for(i=1; i lte parentitemid.menuqry.recordcount; i=i+1){ My original post contains: variables.inst.menuqry.recordcount You changed it to: parentitemid.menuqry.recordcount Change it back. p.s. dude, I dont mind helping with the overall how do i do this, but asking me to debug simple

RE: Recursion anyone?

2005-10-26 Thread Kerry
buildmenu(10,0); /cfscript -Original Message- From: Stephen Whiteley [mailto:[EMAIL PROTECTED] Sent: 26 October 2005 15:30 To: CF-Talk Subject: Re: Recursion anyone? Thanks Kerry I'm starting to understand, got no experience of cfscript but it seems a lot like actionscript

RE: ColdFusion Bug :- functions return additional spaces(!)

2005-10-26 Thread Kerry
might i suggest output=false? cffunction name=spaceTest output=false -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: 26 October 2005 16:29 To: CF-Talk Subject: RE: ColdFusion Bug :- functions return additional spaces(!) When a function is called and the result

RE: Recursion anyone?

2005-10-26 Thread Kerry
, October 26, 2005 10:30 AM To: CF-Talk Subject: Re: Recursion anyone? Thanks Kerry I'm starting to understand, got no experience of cfscript but it seems a lot like actionscript. Unfortunately I've tried to run the code and I'm getting the following error. Context validation error for tag cfscript

RE: Recursion anyone?

2005-10-26 Thread Kerry
-Talk Subject: Re: Recursion anyone? Thanks Kerry I'm starting to understand, got no experience of cfscript but it seems a lot like actionscript. Unfortunately I've tried to run the code and I'm getting the following error. Context validation error for tag cfscript. The start tag must have

RE: stop: SHOUTING

2005-10-24 Thread Kerry
what about comparing number of uppercase characters to number of lowercase? cfscript str=i HAVE MY CAPS LOCK ON BY MISTAKE!; str=rereplace(str,[^a-zA-Z],,ALL); ucasecount = len(rereplace(str,[a-z],,ALL)); lcasecount = len(rereplace(str,[A-Z],,ALL)); if(ucasecount gt lcasecount){ writeoutput(More

RE: stop: SHOUTING

2005-10-24 Thread Kerry
(lcasecount) characters found. you might be SHOUTING.); } /cfscript -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: 24 October 2005 19:19 To: CF-Talk Subject: RE: stop: SHOUTING what about comparing number of uppercase characters to number of lowercase? cfscript str=i HAVE MY

RE: WHAT'S WRONG WITH THIS QUERY?

2005-10-20 Thread Kerry
I think the syntax is along the lines of UPDATEtblA SET tblA.something = tblB.something FROM tblB WHERE (tblA.something = tblB.something) -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: 20 October 2005 14:17 To: CF-Talk Subject: RE: WHAT'S WRONG

RE: more coldfusion 7.01 problems, Macromedia folks please read! I just want to cry

2005-10-20 Thread Kerry
Anthony: One of our servers started to do this, ran fine for months, then recently it started to just stop responding, even though memory and cpu look fine. I dont know if google have modified their bot recently, but it seems that google was opening a new session for every page hit, as soon as it

RE: cfc name introspection

2005-10-20 Thread Kerry
er, something along the lines of: function getMyName(){ if(not structkeyexists(variables.inst,myname)){ variables.inst.myname = getMetaData(this).name; } return variables.inst.myname; } -Original Message- From: Michael Dinowitz [mailto:[EMAIL

RE: A timeout alert

2005-10-18 Thread Kerry
Sounds like a job for javascript or if you need it to work 100% of the time, when you load the form, encrypt the current time, and place a hidden field containing this value. when the form is posted, decrypt the value and compare it to the current time. if the timeout has been exceeded, give them

RE: security suggestions?

2005-10-14 Thread Kerry
what would you recommend to do this the Hash function? The hash function is efficient, but I could dehash most passwords in a couple of minutes, so I would go for some kind of salted hash / key based encryption. how do you match up the password the user enters when logging in to the encrypted

RE: security suggestions?

2005-10-14 Thread Kerry
how would the hashed value in the db be converted back to their original password of 'Test' You dont - you have to send them a new password. -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED] Sent: 14 October 2005 09:59 To: CF-Talk Subject: RE: security suggestions? Sor

RE: CFCs and cftry/cfcatch

2005-10-13 Thread Kerry
I thought there was a patch for this? http://www.macromedia.com/go/1a9c83c Or are you referring to another bug? -Original Message- From: Rob Richardson [mailto:[EMAIL PROTECTED] Sent: 13 October 2005 15:17 To: CF-Talk Subject: Re: CFCs and cftry/cfcatch Bryan--- I'm coming in on the

RE: dynamic function call puzzle

2005-10-12 Thread Kerry
heres what i do when I need to dynamically call functions - make all your beans inherit this: cffunction name=runFunction cfargument name=functionname type=string required=yes cfargument name=args type=struct required=no default=#structnew()# cfset

RE: dynamic function call puzzle

2005-10-12 Thread Kerry
oops, with that flavour of the function you will need: args = structnew(); args[colArray[x]] = q[colArray[x]][q.currentrow]; o.runfunction(setcolArray[x],args); -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: 12 October 2005 16:57 To: CF-Talk Subject: RE: dynamic function

RE: dynamic function call puzzle

2005-10-12 Thread Kerry
differently to cause the error... (Something about my Setters perhaps?) cfset var retval = cfinvoke component=#this# method=#arguments.functionname# argumentCollection=#arguments.args# returnvariable=retval cfreturn retval -Original Message- From: Kerry [mailto:[EMAIL PROTECTED

RE: dynamic function call puzzle

2005-10-12 Thread Kerry
retval -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 12, 2005 10:04 AM To: CF-Talk Subject: RE: dynamic function call puzzle oops, with that flavour of the function you will need: args = structnew(); args[colArray[x]] = q[colArray[x]][q.currentrow

RE: Secure Admin Areas

2005-10-12 Thread Kerry
quick glance, I can see this wrong with it: script alert(You must login to access this area!); self.location=login.cfm; /script oooh, javascript, REAL secure, nobody can get past that. replace with something like: You must login to access this area! cflocation url=login.cfm cfabort

RE: Secure Admin Areas

2005-10-12 Thread Kerry
also, you would want to use cfqueryparam in the query, not dump the form values straight to the database. -Original Message- From: Jason Manaigre [mailto:[EMAIL PROTECTED] Sent: 12 October 2005 17:58 To: CF-Talk Subject: Secure Admin Areas Hi all, a few quick questions, building a CMS

RE: Secure Admin Areas

2005-10-12 Thread Kerry
and this line: cfif qVerify.RecordCount this only verifies that one or more users were found, assuming you have unique usernames, it should be: cfif qVerify.RecordCount eq 1 not sure if there is a better tutorial out there, but i hope so, there seems to be a few issues with this one.

RE: CFCs and cftry/cfcatch

2005-10-12 Thread Kerry
try catch definitely works in a cfc. can you post your code? -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 12 October 2005 18:37 To: CF-Talk Subject: CFCs and cftry/cfcatch Hey All, I'm having some issues trying to get a try/catch block to work correctly

RE: Secure Admin Areas

2005-10-12 Thread Kerry
putting all these replies into one email... =] !K -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: October 12, 2005 11:16 AM To: CF-Talk Subject: RE: Secure Admin Areas and this line: cfif qVerify.RecordCount this only verifies that one or more users were found, assuming you

RE: resolve a hostname

2005-10-11 Thread Kerry
does cgi.remote_addr not give you an ip on your system? -Original Message- From: Orlini, Robert [mailto:[EMAIL PROTECTED] Sent: 11 October 2005 15:20 To: CF-Talk Subject: resolve a hostname Hello, Is there anyway to create a CF script to resolve a user or hostname into an IP address

RE: Rounding...

2005-10-11 Thread Kerry
cffunction name=roundTo cfargument name=numToRound type=numeric required=yes cfargument name=roundToNearest type=numeric default=5 cfscript var retVal = 0; retVal =

RE: Rounding...

2005-10-11 Thread Kerry
sending again as original post has not arrived after 30 mins cffunction name=roundTo cfargument name=numToRound type=numeric required=yes cfargument name=roundToNearest type=numeric default=10 cfscript var

RE: Rounding...

2005-10-11 Thread Kerry
http://www.cflib.org/udf.cfm?ID=613 20 lines of code for a 1 line mathematical equation? -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: 11 October 2005 15:57 To: CF-Talk Subject: Re: Rounding... On 10/11/05, J W [EMAIL PROTECTED] wrote: I have a whole number

RE: #CGI.SERVER_NAME# to display IP

2005-10-10 Thread Kerry
what remote server? CGI.REMOTE_ADDR gives you the IP of the client, and _you_ are the server? -Original Message- From: Paul Stewart [mailto:[EMAIL PROTECTED] Sent: 10 October 2005 09:32 To: CF-Talk Subject: Re: #CGI.SERVER_NAME# to display IP How do you get the name of the remote

RE: #CGI.SERVER_NAME# to display IP

2005-10-10 Thread Kerry
i.e. googlebot(whatever). Does coldfusion / java have a similar function / method? is that ok big man? Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Kerry [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, October 10

RE: #CGI.SERVER_NAME# to display IP

2005-10-10 Thread Kerry
sorry, I still dont really understand what you are trying to acheive. What is confusing me is that a visitor to your website is not a server. e.g. you log on to your ISP and they give you an IP, then you visit a website which tracks that IP, and then the site admin does a look up on it, and they

RE: #CGI.SERVER_NAME# to display IP

2005-10-10 Thread Kerry
that to a server name i.e. googlebot(whatever). Does coldfusion / java have a similar function / method? is that ok big man? Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Kerry [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent

RE: #CGI.SERVER_NAME# to display IP

2005-10-10 Thread Kerry
IP great thanks, and not everybody uses an isp for their net connetion. i.e. search engine robots. Paul Stewart Site Developer [EMAIL PROTECTED] www.whichfranchise.com - Original Message - From: Kerry [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, October 10, 2005

RE: Idea for better hosting

2005-09-30 Thread Kerry
some semi-ignorant questions from me: Here the really bad sites would hit each server 1/3 as hard What if I uploaded an infinite loop? wouldnt that still kill all three servers in turn? Does anyone know if setting the isolation to high in IIS will have any effect on the performance / memory of

RE: SQL row select?

2005-09-29 Thread Kerry
orig. post bounced with body too long, sending again, will probably duplicate Im not a query analyzer expert, and this wasnt a very scientific experiment, but I thought people might find these server trace results interesting. Test1: approx 10,000 row table Testing: Single Sub Select with

RE: ot: checksum?

2005-09-29 Thread Kerry
I use the microsoft one - fciv.exe http://support.microsoft.com/?kbid=841290 -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: 29 September 2005 10:31 To: CF-Talk Subject: Re: ot: checksum? On Wednesday 28 September 2005 19:47, Ryan Guill wrote: what about on

RE: Query with multiple criteria

2005-09-29 Thread Kerry
cfquery name=myQuery Select * From Table Where 1=1 cfif IsDefined(form.lname) and lname like '%#form.lname#%' /cfif cfif IsDefined(form.category) and lname like '%#form.category#%' /cfif cfif IsDefined(form.color) and lname like '%#form.color#%' /cfif /cfquery -Original

RE: SQL row select?

2005-09-28 Thread Kerry
really easy in mysql, still doable in mssql but not as straight forward or efficient as mysql select top 50 * from mytable where id not in (select top #pagesize# * #pagenumber# id from mytable) -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 28 September 2005

RE: Logging users actions - DB or Log4J?

2005-09-20 Thread Kerry
We have an app where we log every user action, it would get to about a million rows in one week, so we log to csv file, and then have a daily schedule which compiles all the raw data into totals - which comes to about 15 rows per day, and a lot less data. Then the reporting app can quickly and

RE: Replacement for cfdirectory

2005-09-13 Thread Kerry
Just a thought, not at all sure if it would be more performant: why not loop through the db, and copy each file into another directory, then delete or rename the original directory and rename the new directory to the same as the original? This way you could also do the queries in batches e.g. 100

RE: JPG-scraping... brainfart

2005-09-07 Thread Kerry
cfhttp url=http://www.google.co.uk/intl/en_uk/images/logo.gif; getasbinary=yes/cfhttp cffile action=write file=#getDirectoryfromPath(getCurrentTemplatepath())#test.gif output=#cfhttp.FileContent# img src=test.gif -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: 07

RE: Please help correct an assumption regarding Application.cfm

2005-09-07 Thread Kerry
except not compiled every time, just run? unless you use cfadmin to stop cf from saving any classes? -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: 07 September 2005 17:30 To: CF-Talk Subject: Re: Please help correct an assumption regarding Application.cfm No, my

RE: Decryption problem.

2005-08-26 Thread Kerry
looks like public private key encryption using a des algorithm. I think cfmx7 supports des, but not sure. You could use java, either compiled or via cfscript. Heres the first thing google gave me: http://www.orlingrabbe.com/des_java.htm -Original Message- From: Picker, Mark

RE: Need to share encryption between CF and ASP environments

2005-08-23 Thread Kerry
one-way encrypts (hashs) are more secure Not disagreeing, but just so you know, I downloaded a small exe yesterday that cracked an MD5 hash in 3.5 minutes, using my old 2Ghz workstation. -Original Message- From: Fabio Terracini [mailto:[EMAIL PROTECTED] Sent: 23 August 2005 14:45 To:

RE: REPOST: webservices and optional numeric arguments

2005-08-17 Thread Kerry
Anyone know if this is Macromedia's decision or if they are simply complying with some web services standards? -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 17 August 2005 17:49 To: CF-Talk Subject: Re: REPOST: webservices and optional numeric arguments Well

RE: Copy record from query into structure

2005-08-16 Thread Kerry
cffunction name=RowToStruct cfargument name=qry cfargument name=rownumber cfscript var i = 0; var retval = structnew(); for(i=1;i lte listlen(arguments.qry.columnlist);i=i+1){

RE: Studio 8 announced

2005-08-12 Thread Kerry
ewww, clients with small budgets the php guys are welcome to them! -Original Message- From: Russ Michaels [mailto:[EMAIL PROTECTED] Sent: 12 August 2005 16:36 To: CF-Talk Subject: RE: Studio 8 announced simple. You have a client, they say they want a forum and point you at PHPBB

RE: Looking for very simple CMS

2005-08-10 Thread Kerry
Also, just because the cost may change for certain clients doesnt mean they're getting ripped off, e.g. oh you have a massive project? we want the development, you can have the cms for free! oh you have a massive industry profile? we want you as a client so much that you can have the cms for free!

RE: Fck additional parameters

2005-08-04 Thread Kerry
fckconfig.js edit the default toolbar, or make your own one and tell fckeditor to use it... -Original Message- From: gabriel l smallman [mailto:[EMAIL PROTECTED] Sent: 04 August 2005 13:33 To: CF-Talk Subject: Fck additional parameters Im trying to setup the fck editor and configure

RE: IE not maintaining session...

2005-07-28 Thread Kerry
use a cookie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 28 July 2005 13:05 To: CF-Talk Subject: IE not maintaining session... Hi folks, Not sure if this is a CF issue, or regular behavior of ID and Win 2000. Here's the issue: If I open my IE and log

RE: Passing Values containing Special Characters

2005-07-22 Thread Kerry
try: a href=setquotedefaults.cfm?quotefrom=#urlencodedformat(quotefrom)# -Original Message- From: Nancy Elberty [mailto:[EMAIL PROTECTED] Sent: 22 July 2005 17:49 To: CF-Talk Subject: Passing Values containing Special Characters I am a novice, self-taught CF programmer and am sure that

RE: CFIF logic problem

2005-07-21 Thread Kerry
works fine for me! Test not logged in: cfparam name=url.no default=0 cfset request.restrict = 3 cfset session.permission = notadmin cfif listfind(request.restrict,url.no) and comparenocase(session.permission,admin) neq 0 cflocation url=index.cfm /cfif Page contentbr cfoutput

RE: Looping over query assistance

2005-07-21 Thread Kerry
cfreturn listtoarray(valuelist(getCourses.title)) -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 21 July 2005 17:19 To: CF-Talk Subject: Re: Looping over query assistance Just return the whole query and skip all the other stuff...like so: cffunction

RE: CFIF logic problem

2005-07-20 Thread Kerry
cfparam name=url.no default=0 cfset request.restrict = 3 cfif listfind(request.restrict,url.no) and comparenocase(session.permission,admin) neq 0 cflocation url=index.cfm /cfif Page content cfinclude template=pages/#url.no#.cfm -Original Message- From: Ian Vaughan

RE: CFError performance

2005-07-19 Thread Kerry
I got: normal time = 0 milliseconds error time = 125 milliseconds division by zero error! -Original Message- From: S.Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: 19 July 2005 15:49 To: CF-Talk Subject: Re: CFError performance Minor revisions to the script: cfset starttime =

RE: CF and Zips

2005-07-13 Thread Kerry
http://www.cflib.org/udf.cfm?ID=744 -Original Message- From: Ken Ferguson [mailto:[EMAIL PROTECTED] Sent: 13 July 2005 15:26 To: CF-Talk Subject: CF and Zips Anybody know of a free cf utility (or asp or php for that matter) that will create a zip file of directories? The problem is that

RE: Coldfusion Switch Error - Hex Characters

2005-07-11 Thread Kerry
Thats an interesting bug! heres a sorta workaround: cfscript function Hex7toStr(Char){ var newchar = ; var asciiChar = ; var i=0; for(i=1;i lte len(char);i=i+1){ asciiChar = asciiCharasc(mid(char,i,1)); } switch (asciiChar)

RE: Simple Directory Listing

2005-07-11 Thread Kerry
Right, so Im assuming the webserver does not have access to the directory and therefore you cant just use cfdirectory. Some ideas: Use frames Use javascript to popup a window with no address bar Setup a website with a home directory set to use that directory Setup a share on the server e.g.

RE: cfxhtmlbeans: new project at cfopen.org

2005-07-06 Thread Kerry
Interesting, want some feedback? - Not happy about your repeated use of evaluate in the base object - have you created any real world HTML pages using this? I would be interested to see how much code is required to generate a complex html page -Original Message- From: Martin Orth

RE: Frigging annoying Checkbox behaviour

2005-07-06 Thread Kerry
IIRC, unticked checkboxes should not exist in the form scope. -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: 06 July 2005 11:40 To: CF-Talk Subject: Frigging annoying Checkbox behaviour I vaguely recall reading this somewhere before; when I submit a form full of

RE: jar launcher crashes randomly

2005-07-01 Thread Kerry
Hey did anyone get any further with this? I am now getting this on our W2K3 server as well. -Original Message- From: Nathan Strutz [mailto:[EMAIL PROTECTED] Sent: 13 June 2005 05:58 To: CF-Talk Subject: Re: jar launcher crashes randomly stylo stylo wrote: Anyone else? Ya, we get this

RE: another cfdump bug?

2005-06-29 Thread Kerry
is this on 7? works fine for me on 6.1+updater+hotfix hf56580_611.zip -Original Message- From: Russ [mailto:[EMAIL PROTECTED] Sent: 29 June 2005 17:18 To: CF-Talk Subject: another cfdump bug? I'm running into an issue with cfdump. Here is the sample code that reproduces the issue I'm

RE: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Kerry
Comparing Blue Dragon to CF 5 is kind of an unfair comparison as well as better stability and performance than even CFMX -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: 28 June 2005 15:16 To: CF-Talk Subject: RE: 5th Most Trafficked Site Switches to BlueDragon

RE: 5th Most Trafficked Site Switches to BlueDragon

2005-06-28 Thread Kerry
product than MM or that myspace isn't loving it, I'm just saying that the way it was presented seems flawed. John Burns Certified Advanced ColdFusion MX Developer Wyle Laboratories, Inc. | Web Developer -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 28, 2005

RE: Java InputStream = ??? in CF

2005-06-28 Thread Kerry
why not just give it exactly what it asks for? cfset inputstr = createobject(java,java.io.InputStream) -Original Message- From: Jeff Chastain [mailto:[EMAIL PROTECTED] Sent: 28 June 2005 15:59 To: CF-Talk Subject: Java InputStream = ??? in CF I have a Java application that was purchased

RE: Java InputStream = ??? in CF

2005-06-28 Thread Kerry
InputStream object.  What this is, is a CMS type system and this method call is to insert a new document in the CMS. Thanks -- Jeff From: Kerry [EMAIL PROTECTED] Sent: Tuesday, June 28, 2005 10:07 AM To: CF-Talk cf-talk@houseoffusion.com Subject: RE: Java

RE: Your recent email to us

2005-06-28 Thread Kerry
yep every time -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] Sent: 28 June 2005 17:01 To: CF-Talk Subject: Fw: Your recent email to us Anybody else getting this? I seem to get one everytime I post to CF-TALK. Goldman Sachs JBWere's electronic mail policy

RE: This is crazy this is crazy this is crazy!

2005-06-27 Thread Kerry
Just tried in IE no probs. -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: 27 June 2005 00:25 To: CF-Talk Subject: Re: This is crazy this is crazy this is crazy! Ok, ignore that. I see you posted bout your browser now. My mind is screwed tonight after this.

RE: CF7 Flash Remoting

2005-06-17 Thread Kerry
I thought page not found meant that it wasnt setup right. http://www.macromedia.com/go/tn_16522 -Original Message- From: Ray Buechler [mailto:[EMAIL PROTECTED] Sent: 17 June 2005 15:00 To: CF-Talk Subject: CF7 Flash Remoting Has any one been able to connect to Flash Remoting in CFMX 7?

RE: New ColdFusion shirts available...

2005-06-15 Thread Kerry
saw one on think geek which i thought was pretty funny: No, I will not fix your computer -Original Message- From: Adrocknaphobia [mailto:[EMAIL PROTECTED] Sent: 15 June 2005 14:37 To: CF-Talk Subject: Re: New ColdFusion shirts available... Ooohh oooh, I want a shirt thats says All CF

RE: odd error question

2005-06-09 Thread Kerry
hmmm, if you try/catch it and then dump cfcatch, is there more info? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: 09 June 2005 14:45 To: CF-Talk Subject: Re: odd error question i know, apart from one thing: shared hosting cfmx server @ experthost.com :( tw On

RE: a simple xml question

2005-06-09 Thread Kerry
Function calls need brackets: cfset testxml= myCFC.simpleXml() -Original Message- From: Ida Chen [mailto:[EMAIL PROTECTED] Sent: 09 June 2005 16:05 To: CF-Talk Subject: a simple xml question I am new to cfc/xml. When I tried to create a simple cfc function that returns an xml object

RE: Mulitple FCKEditor Instances Firefox issues

2005-06-09 Thread Kerry
hmmm, just tried it with three instances, no problems. fckeditor 2.0 firefox 1.0.4 -Original Message- From: jonese [mailto:[EMAIL PROTECTED] Sent: 09 June 2005 17:30 To: CF-Talk Subject: SOT: Mulitple FCKEditor Instances Firefox issues We have a form with two instances of the FCKeditor

RE: session variables or multiple pages

2005-06-08 Thread Kerry
CF will give 2 windows from the same machine the same session, if the browser is the same. If your boss wouldnt mind using firefox for one window and IE for the other window, it should work. -Original Message- From: Daniel Kessler [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 14:10 To:

RE: CFML Language History

2005-06-08 Thread Kerry
TechNote Details ID: tn_18791 Product(s): ColdFusion Versions: 4, 4.5, 5, MX, MX 6.1 -Original Message- From: Emanuel Costa [mailto:[EMAIL PROTECTED] Sent: 08 June 2005 16:17 To: CF-Talk Subject: CFML Language History Does anyone knows if this technote has been updated to MX 7 or if it

RE: Get New Record ID in ORACLE

2005-06-07 Thread Kerry
I have managed to get some SQL that cfquery didnt like to work perfectly using this: cfscript factory = CreateObject( java, coldfusion.server.ServiceFactory ); ds = factory.getDataSourceService().getDatasource( yourdsn ); conn = ds.getConnection(); stmt = conn.createStatement(); sql = your funky

RE: Currency data type in access

2005-06-07 Thread Kerry
http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/functa27.htm -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: 07 June 2005 18:22 To: CF-Talk Subject: Currency data type in access Hi, When I display the dollar amount in a web page the values come with extra

RE: Search engines and CF

2005-06-03 Thread Kerry
best practices for search engine optimization when using coldfusion I would say that SEO best practices are development language independent. What we are currently doing is setting up a site map of sorts Heres a tip: If you can make the order of the links on the site map change dependent on, say,

RE: Search engines and CF

2005-06-03 Thread Kerry
yep. -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: 03 June 2005 16:07 To: CF-Talk Subject: RE: Search engines and CF Hey Kerry, so what you are saying is that changing the order of the links on the site map will signal to google that the page has changed

RE: get parent items from list?

2005-06-02 Thread Kerry
What's the most efficient way of determining the parent of any item in the list and determining that item1 has no parent perhaps im missing something here, but: mylist = item1,item2,item3,item4; for(i=1; i lte ListLen(mylist);i=i+1){ WriteOutput(I am: ListGetAt(mylist,i));

RE: cfcomponent/function inheritence issue?

2005-05-27 Thread Kerry
If you do this: cfset var s = structNew() cfset s = mystruct Then s is not a struct, but a pointer to mystruct, so whenever you set a property of s, you are in fact setting a property of mystruct. Also, personally, theres no way i would do this: cfif NOT isDefined(mystruct)cfset

RE: cfcomponent/function inheritence issue?

2005-05-27 Thread Kerry
: cfcomponent/function inheritence issue? Kerry, Thanks for your help. You're certainly right about the duplicate function...and of course I should have known that already. But I'm a little confused about your statement that I shouldn't do this: cfif NOT isDefined(mystruct)cfset this.init()/cfif I could

RE: Database Schema Options

2005-05-25 Thread Kerry
Personally, I would go for a generic attributes table, Ive seen it done in some massive enterprise databases, and it does provide flexibility for when: you realise you need another 10 attribute types, oops, now some properties dont have some attributes but they have another 10 different

RE: format XML string?

2005-05-24 Thread Kerry
parse it into an xml object, then use: xmlobj.getDocumentElement().toString() except that will probably Unicode format it, dunno if theres a unicode2msdos() function floating around anywhere... -Original Message- From: Johnny Le [mailto:[EMAIL PROTECTED] Sent: 24 May 2005 18:36 To:

RE: Viewing files in another server/directory outside CF server

2005-05-24 Thread Kerry
UNC: \\servername\sharename\directory\file AFAIK, your CF service will need to login as a user with rights to the remote server -Original Message- From: Michel Deloux [mailto:[EMAIL PROTECTED] Sent: 24 May 2005 17:45 To: CF-Talk Subject: Re: Viewing files in another server/directory

RE: SQL Server User Problems

2005-05-18 Thread Kerry
is the table owner dbo or {username}? -Original Message- From: Protoculture [mailto:[EMAIL PROTECTED] Sent: 18 May 2005 17:20 To: CF-Talk Subject: RE: SQL Server User Problems Manage to solve the issue with the users, but now we're finding the stored procedures we had aren't not

RE: Client side include

2005-05-12 Thread Kerry
Not the answer you want but, I would avoid DHTML menus, and recursive menus that render the whole menu in one go. -Original Message- From: Kevin Roche [mailto:[EMAIL PROTECTED] Sent: 12 May 2005 08:49 To: CF-Talk Subject: Client side include Hi, A new site I am building has a really

RE: Client side include

2005-05-12 Thread Kerry
a small delay while the js does its thing client side... -Original Message- From: Kevin Roche [mailto:[EMAIL PROTECTED] Sent: 12 May 2005 09:49 To: CF-Talk Subject: RE: Client side include Micha, Kerry, Thanks for your replys. I have no prblem with caching on the server. I would also like

  1   2   >