PDF Find and Replace?

2007-12-19 Thread Nick Cernis
Is it possible to find all instances of a given string (such as {FirstName}) in a PDF template of a business card, replace them with form-submitted data, then resave the PDF with a new filename? I couldn't find anything in the CF PDF documentation that handled this sort of functionality, and

RE: CFHTTP and Caching

2007-12-19 Thread Ian Vaughan
Where would structkeyexists go in the application.cfm page ? CFIF (APPLICATION.TimeStamp EQ ) OR (DateDiff(n, APPLICATION.TimeStamp, TimeFormat(NOW(), hh:mm:s)) GT 20) CFSET APPLICATION.TimeStamp = CreateTime(TimeFormat(NOW(), hh), TimeFormat(NOW(), mm), TimeFormat(NOW(), s)) cfhttp

Re: Using Mac Mini as web server

2007-12-19 Thread Tom Chiverton
On Tuesday 18 Dec 2007, Dave Watts wrote: He actually suggested the wake on ethernet option. Would that work though if the Mini is running via wireless? I don't know about the Mini in particular, but I know that doesn't work for other systems, and I really doubt it'll work for you. wake on

Sending Emails / Spam Filters

2007-12-19 Thread Giles Roadnight
Hi All I've just built a customer management / login system for my site and it's all working great - the only issues is that all of the e-mail I send out ( e.g. your password has been reset - here is your new e-mail ect) get caught by gmail's spam filters (and others I assume). Are there any

Re: Sending Emails / Spam Filters

2007-12-19 Thread Tom Chiverton
On Wednesday 19 Dec 2007, Giles Roadnight wrote: Are there any guide lines to stopping this? Sample e-mails for example. I would think this will be a fairly common problem. Install SpamAssassin and send yourself a mail - the headers will indicate what tests you are triggering. It's probably

Re: CFHTTP and Caching

2007-12-19 Thread Tom Chiverton
On Wednesday 19 Dec 2007, Ian Vaughan wrote: Where would structkeyexists go in the application.cfm page ? Round about where you check for application.foo's value, without checking foo exists in application. -- Tom Chiverton Helping to administratively deploy guinine environments on:

Re: Sending Emails / Spam Filters

2007-12-19 Thread Giles Roadnight
Thanks for the reply. SpamAssassin doesn't look that easy to install - I need a server to run it on. I can't just run it as an exe on a desktop? Thanks again. On Dec 19, 2007 11:35 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 19 Dec 2007, Giles Roadnight wrote: Are there any

Re: Sending Emails / Spam Filters

2007-12-19 Thread Tom Chiverton
On Wednesday 19 Dec 2007, Giles Roadnight wrote: Thanks for the reply. SpamAssassin doesn't look that easy to install - I need a server to run it on. I've no idea. There's probably a POP3 proxy version or something. -- Tom Chiverton Helping to widespreadedly network third-generation metrics

RE: CFDOCUMENT creating a PDF - ARGH!

2007-12-19 Thread Peterson, Chris
Les, By specifying a name and a filename I'm not sure what that is doing... name assigns the resulting PDF file to a variable, and filename writes it to a file... do exactly what I had in my example (cfdocument format=pdf filename=c:\test.pdf) and write that to a file - still nothing? Chris

Re: Sending Emails / Spam Filters

2007-12-19 Thread Casey Dougall
On 12/19/07, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 19 Dec 2007, Giles Roadnight wrote: Thanks for the reply. SpamAssassin doesn't look that easy to install - I need a server to run it on. I've no idea. There's probably a POP3 proxy version or something. I would look at your

Re: same line number keeps showing with cftrace

2007-12-19 Thread Bryan S
I still haven't solved this problem but I have some new info that might help someone help me. On my local installation cftrace reports the actual line number where the cftrace tag is placed as designed. On our Unix or Solaris servers it always reports the same path

Re: Sending Emails / Spam Filters

2007-12-19 Thread Tom Chiverton
On Wednesday 19 Dec 2007, Casey Dougall wrote: I can't find one with my initial testing but there was a few websites out there that offered a service where you could send one of your emails and it There's a MX record checker at : http://www.mxtoolbox.com/index.aspx (both basic DNS check and a

RE: Using Mac Mini as web server

2007-12-19 Thread Andy Matthews
Thanks Dave...the never sleep option sounds like my best bet then. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 18, 2007 5:14 PM To: CF-Talk Subject: RE: Using Mac Mini as web server He actually suggested the wake on ethernet option. Would that

RE: CFHTTP and Caching

2007-12-19 Thread Ian Vaughan
I have added the following but I am getting this error even though I have defined this in my application.cfm page Element WEATHER_XML is undefined in APPLICATION. Application.cfm page -- cfset Application.TimeStamp=#TimeFormat(now(), 'hh:mm:ss')# CFIF (APPLICATION.TimeStamp EQ ) OR

Re: Follow-up: PDF generation running excrutiatingly slow

2007-12-19 Thread Rupesh Kumar
I posted a blog entry about this at http://coldfused.blogspot.com/2007/12/images-and-cfdocument-performance.html Let me know if that helps. Thanks Regards, Rupesh Adobe ColdFusion Team ~| Adobe® ColdFusion® 8 software 8 is

RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Since I didn't get any replies to this, perhaps I can rephrase the question. Does anyone know of *any* way. To store the last position of *multiple* open CFWINDOW objects. All examples I have found only work with one window. -Original Message- From: Dustin M. Snell [mailto:[EMAIL

Re: CFHTTP and Caching

2007-12-19 Thread Tom Chiverton
On Wednesday 19 Dec 2007, Ian Vaughan wrote: I have added the following but I am getting this error even though I have defined this in my application.cfm page Did you wait 20 minutes (or whatever your DateDiff interval is) ? -- Tom Chiverton Helping to autoschediastically supply value-added

Re: data not outputting correctly

2007-12-19 Thread Bruce Sorge
Isaac, Here is the SQL: CREATE SYNONYM TransServe FOR [xx.xxx.xx.xxx].Snowline.dbo.Street CREATE SYNONYM TransServeRoutes FOR [xx.xxx.xx.xxx].Snowline.dbo.Route SELECT Bus_Routes.Schedule_ID, Trans.RecordID, Trans.Prefix + ' ' + Trans.Name + ' ' + Trans.Type + ' ' + Trans.Suffix + '@' + ' ' +

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
I must admit, either your not thinking straight or you are plan being silly. The answer is in your code, every window has a name. So why not do what you have done with the next window name? Personally, I would send an event back to the server when the mouse up event is fired and save that

RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Sorry if I seem silly or not to be thinking straight. Although I do have a programming background, I am rather new to Javascript and AJAX techniques. The function naming is the result of an attempt at solving the problem -but it didn't work. Ideally all the CFWINDOWs would all go through a

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
Ok, Here is what you need to do. 1) D'load Firefox 2) Get the plugin / addon calle fireBug 3) Use that to view properties and methods of an object For example, in the fireBug window. Coldfusion Will dump the object to the console, for you to browse and inspect. HTH On 12/20/07, Dustin

CFHTTP and cookies

2007-12-19 Thread Ian Skinner
How does a CF server handle cookies sent by a web site when the site is accessed via cfhttp...? Is there anyway to capture and do something with such a cookie? TIA Ian ~| Adobe® ColdFusion® 8 software 8 is the most important

Re: Sending Emails / Spam Filters

2007-12-19 Thread William Seiter
Please post a sample of the code that you are using to send the emails. there are a number of different headers that can be added to reduce your spam-risk assessment, and it would be helpful to see what you are sending already. William Hi All I've just built a customer management / login

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
Also as I said you answer is in the code. var w = ColdFusion.Window.getWindowObject('WindowName1'); w.on('move',setCoordsTODAYAT,w); w.on('hide',closeWindowTODAYAT,w); var w1 = ColdFusion.Window.getWindowObject('WindowName2'); w1.on('move',setCoordsTODAYAT,w1);

RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin M. Snell
Thanks for your reply. Ok I have Firebug. I see quite a lot of properties and methods. After checking the whole tree I do not see a way to get all the Windows that are open or a way to check if a certain Window Exists by name or any other identifying characteristic that would persist from page to

RE: PDF Find and Replace?

2007-12-19 Thread Bobby Hartsfield
Use PDF forms. CF8 has support for them built in. Else, you can build the pdf form with acrobat and have CF generate an fdf answer file that points to the pdf form. Just look up FDF files if that's the way you have to go. You'll find plenty of info on google about them ..:.:.:.:.:.:.:.:.:.:.:.

cfquery order by question

2007-12-19 Thread Les Mizzell
i have an adin form that allows a client to specify the sort order of a returned collection of results. Easy enough, but I've run into a slight snag... Here's the basic query... cfquery name=sortCARDS Select name, amount, date FROM COLLECTIONS WHERE collection_id = '#url.colID#'

RE: cfquery order by question

2007-12-19 Thread Brad Wood
I *think* I understand what you are asking. What is the sortORD column value for the other 12 records you want to come after the first three? If it is null or 0 then that is probably why they are sorting to the top. You need to have something like this probably: sortORD,name,

Re: cfquery order by question

2007-12-19 Thread Jim Wright
How do I get my numberic sort fields to take priority and come up first without maybe having TWO queries defined and two output blocks? Use something like ORDER BY COALESCE(sortORD,) ASC, #getPAGE.sortMETH# ~| Adobe®

Re: cfquery order by question

2007-12-19 Thread Les Mizzell
I *think* I understand what you are asking. What is the sortORD column value for the other 12 records you want to come after the first three? Currently null, though I could set it to default to something else. I suppose might be a good idea actually, then there would be a value.

Re: cfquery order by question

2007-12-19 Thread Les Mizzell
Use something like ORDER BY COALESCE(sortORD,) ASC, #getPAGE.sortMETH# Ooo - that works. Actually, I'll admit to having never seen coalesce before. Thanks very much! That eliminates something far more convoluted! Les ~|

RE: cfquery order by question

2007-12-19 Thread Brad Wood
Coalesce simply returns the first non-null value. Like MS SQL's isnull, but it can take more arguments. ~Brad -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 12:15 PM To: CF-Talk Subject: Re: cfquery order by question Use something

OT: Nashville, TN Flex User Group presents Flex 3 and AIR pre-release tour with Ben Forta

2007-12-19 Thread Andy Matthews
For any of you that might live in, or around Nashville, TN, the Nashville Flex User Group is hosting the upcoming Flex 3 and AIR pre-release tour with Ben Forta on January 24th. More details can be found on the UG website (http://www.615flex.com/special-events/).

Re: setlocale()

2007-12-19 Thread Richard White
hi thanks for all your feedback. thanks adrian this is working fine now but will look into what the date object and cfqueryparam as advised thanks again richard ~| Adobe® ColdFusion® 8 software 8 is the most important and

RE: cfquery order by question

2007-12-19 Thread Andy Matthews
Coalesce kicks hiney. It's so useful. -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 12:15 PM To: CF-Talk Subject: Re: cfquery order by question Use something like ORDER BY COALESCE(sortORD,) ASC, #getPAGE.sortMETH# Ooo - that

Calendar

2007-12-19 Thread Richard White
Hi, i am looking for a dhtml or coldfusion calendar component that works in much the same way as ms outlook calendar, e.g. adding and displaying appointments. just wondering if you guys know of any good ones thanks richard

Re: Calendar

2007-12-19 Thread Charlie Griefer
http://kalendar.riaforge.org/ ? On Dec 19, 2007 10:21 AM, Richard White [EMAIL PROTECTED] wrote: Hi, i am looking for a dhtml or coldfusion calendar component that works in much the same way as ms outlook calendar, e.g. adding and displaying appointments. just wondering if you guys know of

Re: Calendar

2007-12-19 Thread Rob Parkhill
Richard, http://www.cfkalendar.com/ or http://calendarinfusion.riaforge.org/ are two that I found. Can't say that I have used either of them, but you can look into them. Rob ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin Snell
For anyone else who wants to do this, I got it working finally. But it required the use of a try catch block to ignore the exception caused when you try to ColdFusion.Window.getWindowObject(x) on a window that may or may not exist. I was unable to find an elegant method to check if a window

RE: CFHTTP and cookies

2007-12-19 Thread Dave Watts
How does a CF server handle cookies sent by a web site when the site is accessed via cfhttp...? By default, it doesn't do anything with those cookies. Is there anyway to capture and do something with such a cookie? Yes, they're available within the CFHTTP.Header string or the

RegEx Tools

2007-12-19 Thread Che Vilnonis
Question, are there any online RegEx tools out there that will allow me to paste a url, for example, http://atlanta.craigslist.org/car/514214963.html, ask what data I need returned, and give me the RegEx necessary to get back just atlanta or any other city I need? Thanks, Che

Re: RegEx Tools

2007-12-19 Thread Claude Schneegans
Question, are there any online RegEx tools out there Sure: you can design and test your regExp online here: http://www.contentbox.com/claude/REwizard/index.cfm (IExplorer only) and you can test a parse on your page address here:

Loopy loo

2007-12-19 Thread Dominic Watson
This is probably old news to most of you, but I only just discovered this: http://fusion.dominicwatson.co.uk/2007/12/more-loopy-looism.html Is this bizarre or is there good reason for this behaviour? Dominic ~| Adobe®

RE: RegEx Tools

2007-12-19 Thread Andy Matthews
There's also a free app called Regex Coach which is quite useful. I've used it for about 2 years now and it's VERY handy. -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 1:56 PM To: CF-Talk Subject: RegEx Tools Question, are there any

RE: Loopy loo

2007-12-19 Thread Brad Wood
It is a little bizarre, but it has come up several times in the talk list and I don't think I have ever heard an exceptionally good reason for it. The good news is, the behavior is fixed in CF8. I just tested it to make sure. :) ~Brad -Original Message- From: Dominic Watson

Re: Loopy loo

2007-12-19 Thread Dominic Watson
:) Cool, glad it's not just me! It had me stumped for an hour or so this evening, the bug it was producing seemed completely impossible! Dom On 19/12/2007, Brad Wood [EMAIL PROTECTED] wrote: It is a little bizarre, but it has come up several times in the talk list and I don't think I have

Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Ben Mueller
Hi all, Given that you can't use cfqp and cachedwithin at the same time (serious bummer), are there best practices for when you want to do both? All of the solutions I can think of (application/server caching, some sort of custom cachedwithin thing, etc) just seem annoying. Also, is there

Re: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Barney Boisvert
It's resolved in CF8. cheers, barneyb On Dec 19, 2007 12:39 PM, Ben Mueller [EMAIL PROTECTED] wrote: Hi all, Given that you can't use cfqp and cachedwithin at the same time (serious bummer), are there best practices for when you want to do both? All of the solutions I can think of

Re: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Charlie Griefer
On Dec 19, 2007 12:39 PM, Ben Mueller [EMAIL PROTECTED] wrote: Hi all, Given that you can't use cfqp and cachedwithin at the same time (serious bummer), are there best practices for when you want to do both? All of the solutions I can think of (application/server caching, some sort of

RE: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Brad Wood
It is resolved, if you have CF8. http://www.chapter31.com/2007/10/31/coldfusion-8-can-now-use-cacheafterc achewithin-when-using-cfqueryparams/ ~Brad -Original Message- From: Ben Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 2:40 PM To: CF-Talk Subject: Solutions

dealing with timezones

2007-12-19 Thread Mik Muller
Hey, So I'm thinking of how to deal with timezones. My server's clock is set to US west coast time, and I serve many, many sites that are all in different timezones. They're all running the same code which subscribes (in a fashion) to a central application to verify the site's status. I'm

RE: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Andy Matthews
This has been resolved in CF8 (supposedly). -Original Message- From: Ben Mueller [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 19, 2007 2:40 PM To: CF-Talk Subject: Solutions for cfqueryparam/cachedwithin problem? Hi all, Given that you can't use cfqp and cachedwithin at the

RE: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Dave Watts
Given that you can't use cfqp and cachedwithin at the same time (serious bummer), are there best practices for when you want to do both? All of the solutions I can think of (application/server caching, some sort of custom cachedwithin thing, etc) just seem annoying. Also, is there any

CFMAIL: Ensure Correct Formatting question.

2007-12-19 Thread J W
Running CF8, MSSQL 2005 I have a question about keeping chr(10)'s and chr(13)'s in plain text emails. ..and before I go on experimenting to find my answer, I figured someone might have a quick answer here. I am sending out an email message using cfmail. This email can be HTML or just plain TEXT

Re: CFMAIL: Ensure Correct Formatting question.

2007-12-19 Thread Todd
Use a plain textarea (as opposed to a rich text editor) and let them type? THE CRLF should go in correctly with no issues. Just remember to use type=text or use the cfmailparam to designate the text body. On Dec 19, 2007 4:16 PM, J W [EMAIL PROTECTED] wrote: Running CF8, MSSQL 2005 I have a

Re: RegEx Tools

2007-12-19 Thread Ben Doom
No. My brain is not online ... yet! Just so you know -- tools can be useful, but like everything (computer generated code, translations, whatever) people-skills will sometimes yeild a more efficient or easier-to-work-with solution. Also, I'm a snob about my regex. --Ben The Regex Ninja Doom

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
Every window will exist, whether it is hidden or not. The only time a window will not exist, is when you dynamically create it. But that is easy to achieve, by keeping a list of window names in an array. On 12/20/07, Dustin M. Snell [EMAIL PROTECTED] wrote: Thanks for your reply. Ok I have

Re: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Dustin Snell
I do dynamically create them so that if the user doesn't have the windows open they don't take up page-load time. ColdFusion could choose to make us do the same thing for all of our variables, but for ease we have IsDefined(). I think Adobe should add this type of functionality to CF for Window

Re: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Ben Mueller
This has been fixed in CF 8. Awesome. Thanks, all. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;160198600;22374440;w Archive:

Session Management - sticky sessions

2007-12-19 Thread coldfusion . developer
All, Do I have this correct? If your site is running on a cluster, in order to manage session variables properly, you want to use the Java option within the CFadmin to manage session variables cause the sessions will be foreced to use the server that initiated the session management? Correct?

Re: Session Management - sticky sessions

2007-12-19 Thread Sean Corfield
On Dec 19, 2007 2:03 PM, [EMAIL PROTECTED] wrote: The reason why I ask is, we have a coupon application that doesn't work with sticky sessions and only works with the standard sessions management option. That statement doesn't make any sense - how can an application *not* work with sticky

Re: CFMAIL: Ensure Correct Formatting question.

2007-12-19 Thread J W
Not sure why I was stressing there. It works fine even with cftextarea too. Brain fart I guess.. LOL Thanks! On Dec 19, 2007 4:22 PM, Todd [EMAIL PROTECTED] wrote: Use a plain textarea (as opposed to a rich text editor) and let them type? THE CRLF should go in correctly with no issues. Just

Re: CF forums

2007-12-19 Thread Mark Picker
Hi, Thread seems to have gotten a bit sidetracked (but still funny). I haven't used any of these products in a while, but it does seem like Galleon also fits the bill. Demo site: http://www.coldfusionjedi.com/forums/ Would have to agree with Matt. Something the same as VBulletin would be

Re: data not outputting correctly

2007-12-19 Thread Bruce Sorge
OK, I changed the ORDER BY to Route_Name and Pick_Up and it is ordering fine except for one school, the high school. What I am getting is routes 10-23 first, then routes 6-9 are displaying. I know what SQL Server is doing, it sees the number 1 in front of the other numbers and is assuming that

JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Brad Wood
I'd generally recommend you use an enterprise J2EE server that does replication in an intelligent way - i.e., not JRun). Funny you say that-- I had always assumed that people DID view JRUN as an enterprise J2EE server. I have always been reticent to move away from JRUN because I expected CF

Re: CF forums

2007-12-19 Thread Raymond Camden
On Dec 19, 2007 4:27 PM, Mark Picker [EMAIL PROTECTED] wrote: Hi, Thread seems to have gotten a bit sidetracked (but still funny). I haven't used any of these products in a while, but it does seem like Galleon also fits the bill. Demo site: http://www.coldfusionjedi.com/forums/ I'd

Re: dealing with timezones

2007-12-19 Thread Mik Muller
Ok. I decided to not care about server local time offset from GMT, and go only with a server/site offset. A site admin will see what the current server time is and be asked for an offset to that to match their local time. Easy. Now, the next question... when messages are posted, when would be

Re: Session Management - sticky sessions

2007-12-19 Thread Jochem van Dieten
Sean Corfield wrote: The issue here is that if you do not have sticky session, you have to be able to manage sessions that move between servers at will. That means that either: 1) you use client scope instead of session scope (with all the attendant restrictions) 2) you write your own

Re: dealing with timezones

2007-12-19 Thread Mik Muller
Actually, I've had to rethink this position. I just did a search for INSERT and SELECT in my code and realized that there is an order of magnitude difference in the number of times these statements appear. Don't know why I didn't think about this before, but there's obviously only a single

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Dave Watts
Funny you say that-- I had always assumed that people DID view JRUN as an enterprise J2EE server. I have always been reticent to move away from JRUN because I expected CF to work more reliably with it and support to be more readily available. Of course neither of those factors

RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
Dustin, I do not mean to be rude, but if you use firebug to inspect the div elements that are created by CFWindow. The normal getElemenyByID('WindowName'), will return null if it is not defined. Also you never said if you are doing this dynamically, in other words you are using JS to create the

RE: Multple CFWINDOWS - cannot identify - 2nd try

2007-12-19 Thread Andrew Scott
Ok if you dynamically create them, then why not store the windownames into an array. Then loop over the array to see if it is there, then when removing the window remove it from the array? But if that is too much work see another post of mine. Andrew Scott Senior Coldfusion Developer Aegeon

RE: submitting a cfform to a cfpod

2007-12-19 Thread Will Swain
Not to worry, I've got this working now. Now I'd like to preserve the selections made by a user in the form, after it's submitted. The idea here is that a user can refine their search easily if they get too many/not enough results. All the form fields are selects, apart from two checkboxes. I

RE: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Brad Wood
Thanks for the insight as usual, Dave. Sean's comment has got me thinking about seriously considering a J2EE platform other than JRun. Can anyone find any good resources which juxtapose the features, ease of use, cost etc of major J2EE players. I Googled for a while and couldn't turn up much.

Re: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Will Tomlinson
This has been fixed in CF 8. Awesome. Thanks, all. EXCEPT, if you're using mySQL, there's a bug that'll creep up from time to time - Corrupt table. You'll need a hotfix. I haven't seen this particular hotfix in the official releases, but adobe sent it to me. Worked nicely. Just email me

Re: Solutions for cfqueryparam/cachedwithin problem?

2007-12-19 Thread Casey Dougall
On 12/19/07, Ben Mueller [EMAIL PROTECTED] wrote: Hi all, Given that you can't use cfqp and cachedwithin at the same time (serious bummer), are there best practices for when you want to do both? All of the solutions I can think of (application/server caching, some sort of custom

Re: dealing with timezones

2007-12-19 Thread Aaron Rouse
Another problem might be if time zone rules change for one area vs another, didn't this happen recently(past year or so) stateside? We store the time in GMT and store the offsite needed for the location the users are at. On Dec 19, 2007 5:52 PM, Mik Muller [EMAIL PROTECTED] wrote: Actually,

Re: dealing with timezones

2007-12-19 Thread Paul Hastings
Aaron Rouse wrote: Another problem might be if time zone rules change for one area vs another, didn't this happen recently(past year or so) stateside? We store the time it happens *all* the time someplace in the world. see:

Re: data not outputting correctly

2007-12-19 Thread s. isaac dealey
OK, I changed the ORDER BY to Route_Name and Pick_Up and it is ordering fine except for one school, the high school. What I am getting is routes 10-23 first, then routes 6-9 are displaying. I know what SQL Server is doing, it sees the number 1 in front of the other numbers and is assuming

Re: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Matthew Williams
But wait! Adobe just released updater 7 for JRun 4. It's supposed to have vastly improved on the clustering interfacing by reducing a bunch of the overhead. I'm slated to test this on my shared servers for this coming year. Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog

Re: CF forums

2007-12-19 Thread s. isaac dealey
Would have to agree with Matt. Something the same as VBulletin would be nice for CF. What I really want to see is an application that brings a lot of this together (blogs,wikis,forums,common security model etc), similar to products like Microsoft Community Server. Isn't PHP Nuke sorta like

Re: dealing with timezones

2007-12-19 Thread s. isaac dealey
Another problem might be if time zone rules change for one area vs another, didn't this happen recently(past year or so) stateside? We store the time in GMT and store the offsite needed for the location the users are at. I don't store offsets for that reason (although I do store the dates in

Re: Dynamic Tree view in ColdFusion

2007-12-19 Thread John Eubanks
I would be very interested, as I am working a site whose navigation is data driven. I wrote one using treeview.nets treeview js. http://fullcitymedia.com/apps/treeview/ It supports direct linking to tree nodes. Let me know if anyone is interested. Emmet I did a basic one and posted it. Look

Re: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Sean Corfield
On Dec 19, 2007 7:21 PM, Matthew Williams [EMAIL PROTECTED] wrote: But wait! Adobe just released updater 7 for JRun 4. It's supposed to have vastly improved on the clustering interfacing by reducing a bunch of the overhead. I'm slated to test this on my shared servers for this coming year.

Re: JREE Servers (was Session Management - sticky sessions)

2007-12-19 Thread Mark Mandel
Sean, Any opinions on how JBoss compares against the two? Mark On Dec 20, 2007 6:07 PM, Sean Corfield [EMAIL PROTECTED] wrote: On Dec 19, 2007 7:21 PM, Matthew Williams [EMAIL PROTECTED] wrote: But wait! Adobe just released updater 7 for JRun 4. It's supposed to have vastly improved on