RE: How so I show prior month?

2007-07-25 Thread Andrew Tyrone
I know cfoutput#dateformat(now(),'mmm ')#/cfoutput will put out current month and year (Jul 2007). Subtract from the current month using DateAdd() and a negative number for the month: #DateFormat(DateAdd(m,-1,Now()),'mmm ')# Andy

RE: How so I show prior month?

2007-07-25 Thread Andrew Tyrone
-Original Message- From: Dale Fraser [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 1:37 AM To: CF-Talk Subject: RE: How so I show prior month? cfoutput#dateformat(createDate(dateAdd(m, -1, now()),'mmm ')#/cfoutput That isn't correct. CreateDate() takes 3

Re: Writing large data files

2007-07-25 Thread Garth Young
I'm trying to look for something in java but I'm not familiar with the ins adn outs. I think the main problem is that I don't know the username and password (for the eventual production environment). Would I be able to somehow reuse the DSN used by ColdFusion to connect to the database?

Re: Writing large data files

2007-07-25 Thread Garth Young
I'm trying to look for something in java but I'm not familiar with the ins adn outs. I think the main problem is that I don't know the username and password (for the eventual production environment). Would I be able to somehow reuse the DSN used by ColdFusion to connect to the database?

Re: PGP...

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: We use CFEXECUTE and the command­line tools, but I'm sure there are other ways. The oddly named Bouncy Castle Java classes, for instance. -- Tom Chiverton This email is sent for and on

Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
C Fault faultString=[MessagingError message='Unknown destination 'ColdFusion'.'] faultCode=InvokeFailed faultDetail=Couldn't establish a connection to 'ColdFusion'] at mx.rpc::AbstractInvoker/http://www.adobe.com/2006/flex/mx/internal::invoke() at

Re: HELLO

2007-07-25 Thread ISWARDUTH BEEHARRY
Alternate e-mail: [EMAIL PROTECTED] I am Dr. Mrs. Mariam Abacha, wife to the late Nigerian Head of state, General Sani Abacha who died on the 8th of June 1998 while still on active service for our Country. I am contacting you with the hope that you will be of great assistance to

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: Can anyone tell me what this error usually means?? Obviously it can't connect to CF but I don't understand why. Is CF running ? What is your endpoint URL ? -- Tom Chiverton This email is

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
Hi Tom Yes, it's running. An app I've been working on was running fine until this morning when I started getting this error. Here's the code for a simple CF call. mx:RemoteObject id=testcfService destination=ColdFusion source=CW_BuyVouchers.buyonline.flexStore.CFCs.SecureService

Re: PGP...

2007-07-25 Thread Brian Peddle
Syntax I us cfset args = +batchmode +force #ftpfile#.pgp -o C:\internet\import\#ftpfilename# -z /putyourkeyhere/ cfexecute name=C:\Program Files\Network Associates\PGPNT\pgp.exe arguments=#args# timeout=20/cfexecute FYI cfset ftpfile = feed.ftp_path feed.ftp_filename / cfset

Site Monitoring Update

2007-07-25 Thread Steve LaBadie
Back in November of 2006 this list was discussing site monitoring tools/software. Some of the products discussed were: Server Siren, ServersAlive, PingaLink, Paessler, and SeeFusion. I would like to know if opinions have changed about these or other products or has anything new come on the

Re: CF8 and cfimage captchas

2007-07-25 Thread Jayesh Viradiya
Hi, This could be achived using the fonts attribute in the cfimage action=captcha tag. One or more valid fonts to use for the CAPTCHA text. Separate multiple fonts with commas. ColdFuison supports only the system fonts that the JDK can recognize. For example, TTF fonts in the Windows directory

Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
I have inherited a fusebox4.0 app to maintain that has dozens of circuits that are reused all over the place. I know that's how fusebox is supposed to work, and it makes sense to reuse the fuses, but wow it takes AGES to follow the flow of the program. And i end up with dozens of files open,

Re: Site Monitoring Update

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: ServersAlive, PingaLink, Paessler, and SeeFusion. I would like to know if opinions have changed about these or other products or has anything new come on the horizon that you like, either to purchase or freeware. ColdFusion 8 :-) -- Tom

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: Hi Tom Yes, it's running. An app I've been working on was running fine until this morning when I started getting this error. And you can't do a diff against the previous version of the code ? Or check it out and check it's not a code gaff ?

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie:applicant address type=short premiseno154/premiseno postcodeX9 9XQ/postcode /address name

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie:applicant address type=short premiseno154/premiseno postcodeX9 9XQ/postcode /address name

XML to database

2007-07-25 Thread R M
Hi all, I would like to know how to populate mySQL database with XML data. This data comes from a webservice I would like to store it in a database. ie:applicant address type=short premiseno154/premiseno postcodeX9 9XQ/postcode

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
I'm not sure I know what you mean Tom. I'm running CF8 and the only reference to endpoint is in the services-config.xml file. This is the it: !-- CF Based Endpoints -- channel-definition id=my-cfamf class=mx.messaging.channels.AMFChannel endpoint

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
I'd say the debugging information with order of execution and execution times and templates and paths is most useful for this. It tells you what templates are being executed and where. -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 8:29 AM

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: I'm running CF8 and the only reference to endpoint is in the services­config.xml file. This is the it: K. !­­ CF Based Endpoints ­­ channel­definition id=my­cfamf class=mx.messaging.channels.AMFChannel endpoint

RE: XML to database

2007-07-25 Thread Jayesh Viradiya
Hi, I think this link could be useful for you. http://tutorial195.easycfm.com/ I have take the example from the above link to modify your needs. I haven't executed the code myself, so if any syntax errors, correct by yourself. Jayesh Adobe CF Team !---Read Your XML - cfhttp

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Michael Dinowitz
If you have debug access I have an enhanced debug template that shows the full flow of an application. It includes standard templates, components, custom tags and includes in a full tree view. ~| Get involved in the latest

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Michael, that sounds interesting. I'd like to have a look at that. I'm new to fusebox, and I have to say I'm yet to be convinced it's better than the way I do my own sites. But i inherited it, and it's not going to be rebuilt any time soon, so I have to roll my sleeves up and learn

Re: reformatting data in text field

2007-07-25 Thread Ben Doom
It didn't occur to me but, yes, that would likely be a more readable solution than either of mine. --Ben Doom Raymond Camden wrote: I'm surprised no one mentioned ListQualify. On 7/24/07, John P [EMAIL PROTECTED] wrote: That worked, Thanks for your help

Re: cfcontent

2007-07-25 Thread Ben Doom
Use cfheader and cfcontent to set they data type, reset the output, etc. Then just print the XML. If you really need to FORCE them to download it (something I'd not recommend), you could always misset the MIME type to something like application/octet-stream. --Ben Doom Chad Gray wrote: I

RE: querySetCell within cfoutput

2007-07-25 Thread Jayesh Viradiya
Hi, I think it should take the new value for the later check but just not sure. Why don't you try printing it, to know if it has taken the new value. Jayesh Adobe CF Team -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 6:58 PM To:

Re: HELLO

2007-07-25 Thread Eric Haskins
Almost hit Report SPAM in Gmail until I noticed it was from CF-Talk. Eric Haskins On 7/25/07, ISWARDUTH BEEHARRY [EMAIL PROTECTED] wrote: Alternate e-mail: [EMAIL PROTECTED] I am Dr. Mrs. Mariam Abacha, wife to the late Nigerian Head of state, General Sani Abacha who died on the 8th

RE: querySetCell within cfoutput

2007-07-25 Thread Adrian Lynch
Good question. Can you not knock up a simple test? Changing the index of an index loop doesn't effect the number of times the loop runs, so it might not be as straightforward an answer. Adrian -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: 25 July 2007 14:28 To:

RE: querySetCell within cfoutput

2007-07-25 Thread Peterson, Chris
Yea, I thought of that afterwards too ;) I wrote a quick script to check, and it does use the new value for any further request of that date variable. I will have to look elsewhere for my bug! ;) Chris Peterson Gainey IT Adobe Certified Advanced Coldfusion Developer -Original

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
Michael, is this available somewhere? I'd really like to check it out. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 9:13 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? If you have debug access I have

Re: Connection Flex to CF Error

2007-07-25 Thread Paul Hastings
Tom Chiverton wrote: uri=http://{server.name}:{server.port}{context.root}/flex2gateway/; Is this likly to be correct (your site doesn't go via a proxy or something that changes the URL ? yes that's the default for cf 7/8's services-config.xml

querySetCell within cfoutput

2007-07-25 Thread Peterson, Chris
I have an output block that does many different tests against each record as its looping through them. Near the beginning of the loop, I check for a certain date and, if it matches, I perform a querySetCell() on that date to assign a new one. Now, further down in this block of code, I do further

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: uri=http://{server.name}:{server.port}{context.root}/flex2gateway/; Is this likly to be correct (your site doesn't go via a proxy or something that changes the URL ? yes that's the default for cf 7/8's services­config.xml I know it's the

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: Michael, is this available somewhere? I'd really like to check it out. Turn on the relevant debug option in the CF admin. -- Tom Chiverton This email is sent for and on behalf of

Re: Writing large data files

2007-07-25 Thread Jochem van Dieten
Garth Young wrote: The problem I have is that the Coldfusion query is not returning as the result set is too big. I could simply run the query pulling out blocks of rows from it but this would require re-executing the SQL 6-7 times at least. Use a cursor:

RE: Connection Flex to CF Error

2007-07-25 Thread Chad Gray
If you go to the endpoint do you get a blank page? You should. IE when I go here: http://demo.dev/flex2gateway/ The last time I played with Flex I put the endpoint in the RemoteObject. There are probably a lot of ways to set it up though. mx:RemoteObject id=roServalent

Re: How so I show prior month?

2007-07-25 Thread Dae
Thanks everyone!! Now that sure was easier then sitting here beating my head for the last hour. On 7/25/07, Andrew Tyrone [EMAIL PROTECTED] wrote: I know cfoutput#dateformat(now(),'mmm ')#/cfoutput will put out current month and year (Jul 2007). Subtract from the current month using

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
He said it's a custom template. Like you set in the administrator. -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 10:10 AM To: CF-Talk Subject: Re: Fusebox - is there a trick to following the flow? On Wednesday 25 Jul 2007, [EMAIL

Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Chad McCue
I have a script running on a windows 2000 server with a firewall perfectly, I then moved it over to a new server running a firewall and windows 2003 and it no longer works. The AJAX call simply checks for a valid promotion code by calling a CFC that checks the SQL database if found returns a 1 if

XML Insert Problem

2007-07-25 Thread Lee
We are having trouble inserting a line into XML when using straight string manipulation it blows up on XML Search. We are guessing that there is a better way to insert the line. Details below. The existing XML structure shows (partial XML is noted in the examples below and does not represent

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Phillip M. Vector
It wasn't that steep when I tried learning it, but then again, I learned on FB3. :) The idea is that you only open up 1 circuit.xml file at a time. trace down the error that's causing a fuseaction to go kaput and then move onto the next. It shoulds like you are opening all the pages that have

Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Che Vilnonis
This should be and easy question. How do I programmatically clear/remove the browser's cookie that gets set when using Client variables? I need to generate a new CFID/CFTOKEN when a user logs out of and older application. Thanks, Che

Re: How so I show prior month?

2007-07-25 Thread Charlie Griefer
the coldfusion reference has all functions, not only listed alphabetically, but also grouped by category (including a date category). http://livedocs.adobe.com/coldfusion/7/htmldocs/0354.htm i have to assume checking there would have been easier than beating your head as well :) On 7/25/07,

RE: Connection Flex to CF Error

2007-07-25 Thread Bill Betournay
Everything about my installations are defaults. I'm using the built in cf server as well. Bill -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: 25 July 2007 10:10 To: CF-Talk Subject: Re: Connection Flex to CF Error On Wednesday 25 Jul 2007, [EMAIL PROTECTED]

Re: Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Raymond Camden
Did you try Firebug to debug the XHR request? On 7/25/07, Chad McCue [EMAIL PROTECTED] wrote: I have a script running on a windows 2000 server with a firewall perfectly, I then moved it over to a new server running a firewall and windows 2003 and it no longer works. The AJAX call simply checks

Re: Using XMLHTTPREQUEST on windows 2003

2007-07-25 Thread Claude Schneegans
I then moved it over to a new server running a firewall and windows 2003 and it no longer works. Define no longer works. Any error message ? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Sandra, thank you!That looks extremely helpful. What does parameter name=mode value=development / do? Does it force a reload of the XML files every page view? If so, that's what i've been looking for for days now! And yes, this app seems pretty well written by the previous guy. IT

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Couple of things that will help in Debugging a Fusebox 4+ app. 1) Validate the XML in circuit.xml.cfm. Fusebox will burp on bad XML. If an error shows up in the parsed file. (circuit.fuseaction.cfm) then the error is in the circuit. Most well done FB4+ apps usually use MVC. The controller

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks for your suggestion Phillip. Actually what I am currently tasked with is duplicate part of the functionality of one circuit in a new circuit. At first sight, all i have to do is copy that circuit to a new folder, tweak the circuit.xml.cfm files a bit and change the dsp files to show the

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Loathe
I'd recommend that you call the fuseaction in question, rather than copy the file itself. You would do this using the do action=circuit.fuseaction / verb. That way the core files will take care of making sure your dependencies are all there, and you will have very little editing to do. Even if

Re: Developer Edition on Portable Hard Drive

2007-07-25 Thread William Burba
There is one option I have been playing with for kicks, and it works to a degree, just depends on what you are doing. Check out the SmithProject (http://www.smithproject.org/). What I did was go out to portableapps.com, downloaded xampp and installed the tomcat portable server in that. You

Re: XML Insert Problem

2007-07-25 Thread Raymond Camden
Is there any reason you aren't using CF's XML functions? Like XMLElemNew(). On 7/25/07, Lee [EMAIL PROTECTED] wrote: We are having trouble inserting a line into XML when using straight string manipulation it blows up on XML Search. We are guessing that there is a better way to insert the

RE: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
Che, Here is one way to do it. Use the code within this tag !--- Run this code only when you want to expire the login --- to expire the login: !--- Application is created --- cfapplication name=test sessionmanagement=yes sessiontimeout=#CreateTimeSpan(0,4,0,0)# setclientcookies=yes !---

Re: Developer Edition on Portable Hard Drive

2007-07-25 Thread William Burba
Oh, and forgot with being wrapped up in the first post. They do have a self contained stand alone version which you can download and use as well. Since I was playing with jsp as well, that is why I went with the xampp and war option.

RE: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sandra Clark
Development mode forces a reload of the circuit files, parsed files and the fusebox with each call. Production mode will only reload the parsed files if they aren't there and it won't pick up changes in the circuit files either. The problem is that forcing the recall from production mode to pick

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
You might need to append a random var to the returned string. Timestamp or something. -Original Message- From: Robert Rawlins - Think Blue [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 11:45 AM To: CF-Talk Subject: Spry and IE Caching Hello Guys, First time ever using

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Sandra Clark
I don't know why its crashing, but simplify your life Paul. Use inheritance and the cascade to create a more efficient CSS. That way when you start trying to figure out where the problems are, it will be a heck of a lot easier. ..chanpod :link, ..chanpod :visited{ display: block;

Cold Fusion and VMWare?

2007-07-25 Thread Michael Eger
We are testing to see if it is possible to run a Virtualized (VMWare) Version of a Cold Fusion application, which will be accessed by IP address. We have VMWare running on a test server and installed a virtualized version of the application and everything works. Sporadically, we get a Connection

CF 8 and CFDOCUMENT

2007-07-25 Thread Bryan Stevenson
Hey All, Does anyone know if the horrendously broken CFRDOCUMENT tag actually works as advertised in CF 8? Big broken item for me was only 1 header/footer per document regardless of how many CFDOCUNTSECTIONS (even though docs said you could have a header and footer per section and not just

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Mike Kear
Thanks Sean. Your advice is very welcome. It's a Fusebox 4.0.2 app. The circuits folder has 28,000 files in it! Took 45 minutes just to unzip onto my dev PC. Is it a simple/trivial thing to convert to fusebox 5+ ?It's not going to be something i'm going to be paid to do, so it needs to

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
It should have been (removed the Not): cfloop collection=#session# item=Key cfif ListFindNoCase('CFID,CFToken,SessionID,JSessionID',Key) cfset StructDelete(session,Key) /cfif /cfloop or if you want to clear the whole session struct for that user: cfloop collection=#session# item=Key

RE: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
Che, You should also run this code to clear out the session for that user: cfloop collection=#session# item=Key cfif not ListFindNoCase('CFID,CFToken,SessionID,JSessionID',Key) cfset StructDelete(session,Key) /cfif /cfloop -Aaron -Original Message- From:

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Greg Luce
I would investigate migrating it to FB5 because the FB debug is awesome. You can turn the CFdebug off then. Greg On 7/25/07, Sandra Clark [EMAIL PROTECTED] wrote: Development mode forces a reload of the circuit files, parsed files and the fusebox with each call. Production mode will only

Generate Random Number 1000 - No Duplicates

2007-07-25 Thread coldfusion . developer
I need to generate 1000, unique 8 digit numbers. I'm looking for a function that will do this. Rand generates in the range of 0 - 1. RandRange would work, but how do I assure that there aren't any duplicates. I'm outputing this data from a query to a xls. Thanks D

Re: Cold Fusion and VMWare?

2007-07-25 Thread Ian Skinner
Has anyone ever used Cold Fusion with VMWare? YUP! Any ideas why we would sporadically get a connection error? Nope, it worked fine for me on my development workstation. Sorry. ~| Enterprise web applications, build robust,

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Thanks for the tip Sandra. Like I said, I'm a rookie ;) But this thing boggles my mind, since it normally loads fine. I was under the impression code is code, if its not altered it should load the same every time. -Original Message- From: Sandra Clark [mailto:[EMAIL PROTECTED] Sent:

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Aaron Wolfe
It should have been (removed the Not): cfloop collection=#session# item=Key cfif ListFindNoCase('CFID,CFToken,SessionID,JSessionID',Key) cfset StructDelete(session,Key) /cfif /cfloop or if you want to clear the whole session struct for that user: cfloop collection=#session# item=Key

RE: Spry and IE Caching

2007-07-25 Thread Andy Matthews
That should have read append a random var to the request. -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 3:46 PM To: CF-Talk Subject: RE: Spry and IE Caching You might need to append a random var to the returned string. Timestamp or

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Andy Matthews
Not sure if it's just the way it came through in email, but your classes are setup incorrectly. A class definition should only have one . Before the name: ..myClassName Not ...myClassName Also, your HTML is invalid. The A tag should not have anything nested inside it, especially block level

Re: CF8 and pdfs

2007-07-25 Thread Bryan Stevenson
Anyone know if you can place an image in a PDF in CF8? Thanks, Chad You could in 7, so don't see why not in 8 (not that it always worked in 7...there were some known issues). Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642

CF8 and pdfs

2007-07-25 Thread Chad Gray
Anyone know if you can place an image in a PDF in CF8? Thanks, Chad ~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates.

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Its basically one div pod that is crashing, as in the txt style doesn't apply and the div ends up appearing 3 times and one of the 3 is out of place. I didn't post the code originally because I was hoping it was a common bug, guess not. Here is the css: ..chanpod a { display: block;

Re: HELLO

2007-07-25 Thread Jochem van Dieten
Eric Haskins wrote: Almost hit Report SPAM in Gmail until I noticed it was from CF-Talk. And you found it of vital importance to include the full, unaltered email message and not even remove the email addresses? Jochem ~| Get

Re: Connection Flex to CF Error

2007-07-25 Thread Paul Hastings
Bill Betournay wrote: Everything about my installations are defaults. I'm using the built in cf server as well. are your CFCs in a cf mapped dir did you do a cf re-install lately? maybe forgot to set use-mappings to true in remoting-config.xml?

Spry and IE Caching

2007-07-25 Thread Robert Rawlins - Think Blue
Hello Guys, First time ever using spry and I'm using the Spry.Utils.updateContent() function to update content every few seconds in a div. This works perfectly in Firefox but for some reason IE seems to have a common caching problem where it'll cache the content totally ruining the point of

RE: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Ben Nadel
Barney, I love the 1XYZ-N technique for the length constraint That's damn brilliant! .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion Help? www.bennadel.com/ask-ben/ -Original Message- From: Barney Boisvert [mailto:[EMAIL

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Raymond Camden
I assume you logged bugs for all this, right? ;) So I haven't tried this - but the docs for CF8, which you can download from labs btw and try this out yourself, talk about how there are there are new variables available in cfdocumentitem based on sections.. I'd say it should should work fine, but

RE: Writing large data files

2007-07-25 Thread Dave Watts
I suppose I could increase the JVM max memory to 2GB but I'm not really sure if this is a viable option. No, it's certainly not an option on Windows generally, and probably not a viable option for solving this problem on any platform - that's just too big of a recordset. Do this within the

Re: Mail Issues - Java Errors

2007-07-25 Thread Jochem van Dieten
Ryan Mannion wrote: Error,scheduler-3,07/25/07,11:01:39,,452 4.3.1 Out of memory Do you think my JVM heap size may be set too small? Currently set as blank min, and 512 max. Look at your SMTP server, this is the error it returns to CF. Jochem

CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
This isn't exactly a cf issue but its happening on a .cfm page so plase bare with me. For some reason my css seems to partially crash, randomly on SOME refreshes in Firefox only.. On avg 8 out of 10 times the code will load fine. Is this a known Firefox bug? I'm a bit of a css rookie but I've

Re: Fusebox - is there a trick to following the flow?

2007-07-25 Thread Sean Corfield
On 7/25/07, Mike Kear [EMAIL PROTECTED] wrote: What does parameter name=mode value=development / do? Does it force a reload of the XML files every page view? Yup. It'll makes things run slowly (since the framework is reloading on every request) but it will enable you to test the changes you

Re: XML Insert Problem

2007-07-25 Thread Dominic Watson
I have been writing a component that lets you do this kind of thing using XPath. So you can do things like: myXML.Insert('XPath of parent','name of tag', value); or myXML.Delete('XPath of elements/attributes/comments/etc to delete'); or myXML.Update('XPath of elements to update', value); It

RE: Cold Fusion and VMWare?

2007-07-25 Thread John Mason
Do you have vmware tools installed? John [EMAIL PROTECTED] -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 25, 2007 5:33 PM To: CF-Talk Subject: Re: Cold Fusion and VMWare? Has anyone ever used Cold Fusion with VMWare? YUP! Any ideas why we

RE: CSS Refresh Crash in Firefox??

2007-07-25 Thread Paul Henderson
Thanks Andy I will check it out yes I was only putting a single . before the class, the cut and paste must of messed that up. If I shouldn't be nesting things in the href that is probably the root of the problem. But, you'd think it would load messed up on each request, not just some.

Re: HELLO

2007-07-25 Thread Michael Dinowitz
I've removed the spam portion or Eric's message. In the archives, that portion would normally have only shown up in the original message but I removed it totally due to its content. Eric Haskins wrote: Almost hit Report SPAM in Gmail until I noticed it was from CF-Talk. And you found it of

Re: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Maximilian Nyman
You don't actually need to use the StructKeyExists though I would take what Russ said and rewrite the function to this: function getRandomNumberArray(length, count) { var min = 1 + repeatString(0, length - 1); var max = repeatString(9, length); var uniquer = structNew(); while

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Oğuz Demirkapı
Can you also provide some sample code? I am now working with cfdocument and I really wonder what you are trying to do. TIA! Raymond Camden wrote: I assume you logged bugs for all this, right? ;) So I haven't tried this - but the docs for CF8, which you can download from labs btw and try

RE: Running CF7 on 64 bit Windows

2007-07-25 Thread Ben Forta
You can run CF as a 32 bit application on 64 bit Windows. Connecting to a 64 bit web server is not supported. Actually, 32bit CF can indeed use 64bit IIS on 64bit Windows, but there is a configuration change you need to make to allow 64bit IIS to run 32bit apps. I blogged this in February

RE: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Russ
Well you can put them into a struct and keep generating until you get 1000 in the struct. Since the struct only allows for unique keys, you won't have more then one of the same number. Russ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, July

Re: HELLO

2007-07-25 Thread Eric Haskins
Sorry Michael, Wasn't trying to RE-SPAM just wanted to see if anyone else got it Eric On 7/25/07, Michael Dinowitz [EMAIL PROTECTED] wrote: I've removed the spam portion or Eric's message. In the archives, that portion would normally have only shown up in the original message but I

Re: CF 8 and CFDOCUMENT

2007-07-25 Thread Bryan Stevenson
I assume you logged bugs for all this, right? ;) So I haven't tried this - but the docs for CF8, which you can download from labs btw and try this out yourself, talk about how there are there are new variables available in cfdocumentitem based on sections.. I'd say it should should work fine,

Mail Issues - Java Errors

2007-07-25 Thread Ryan Mannion
Does anyone know what the following might mean? Our application seems to be running fine, but we've encountered a few low traffic (small number of emails), errors occuring in the logs. The emails were never sent either Error,scheduler-3,07/25/07,11:01:39,,452 4.3.1 Out of memory

RE: Cold Fusion and VMWare?

2007-07-25 Thread Dave Watts
We are testing to see if it is possible to run a Virtualized (VMWare) Version of a Cold Fusion application, which will be accessed by IP address. We have VMWare running on a test server and installed a virtualized version of the application and everything works. Sporadically, we get a

RE: XML Insert Problem

2007-07-25 Thread Chad Gray
I think I typed this out right... might be some typos. Basically use XmlElemNew to create the new node then assign it's XmlAttributes and XmlText to what you want. cfset xml = XMLParse(#XMLgoesHere#) cfset

Re: HELLO

2007-07-25 Thread Michael Dinowitz
It was spam that got through to the list. Why, I'm not sure but the thread was killed from the archives. Looks like a little more work on the filters. On 7/25/07, Eric Haskins [EMAIL PROTECTED] wrote: Almost hit Report SPAM in Gmail until I noticed it was from CF-Talk.

Re: Generate Random Number 1000 - No Duplicates

2007-07-25 Thread Barney Boisvert
I haven't tested this (just wrote it in the email), but it should be close: function getRandomNumberArray(length, count) { var min = 1 + repeatString(0, length - 1); var max = repeatString(9, length); var uniquer = structNew(); var result = arrayNew(1); var num = ; while

RE: Writing large data files

2007-07-25 Thread Dave Watts
I suppose I could increase the JVM max memory to 2GB but I'm not really sure if this is a viable option. No, it's certainly not an option on Windows generally, and probably not a viable option for solving this problem on any platform - that's just too big of a recordset. Do this within

Re: Clearing the Cookie that gets set when using Client variables.

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: This should be and easy question. How do I programmatically clear/remove the browser's cookie that gets set when using Client variables? I need to generate a new CFID/CFTOKEN when a user logs out of and older application. Use cfcookie to

Re: Connection Flex to CF Error

2007-07-25 Thread Tom Chiverton
On Wednesday 25 Jul 2007, [EMAIL PROTECTED] wrote: Everything about my installations are defaults. I'm using the built in cf server as well. On port 8500 or something (i.e. not 80) ? Could a firewall be in the way ? -- Tom Chiverton This

  1   2   >