Re: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Tom Chiverton
On Tuesday 29 Jan 2008, Andy Matthews wrote: commenting out various portions of the query, etc. I finally tracked it down to my LIMIT keyword, which previously used cfqueryparams1. It appears i.e. SELCT a,b,c LIMIT cfqueryparam value=... ? I though CFQP only worked in WHERE clauses. Odd it

RE: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Andy Matthews
That's exactly what I thought. Worked just fine locally...but blows up with that error when in production. andy -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2008 4:46 AM To: CF-Talk Subject: Re: ColdFusion, MySQL 5.0.45, cfqueryparam, and

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Tom Chiverton
On Tuesday 29 Jan 2008, Tom Chiverton wrote: Now, if I CFDUMP 'res', my 'prop's are correctly camelCased - just like in the query and the ActionScript object I'm aiming at. Oh no, their not (not if I cfdump the right result !). So the problem boils down to - given a query, how do you get the

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Brian Kotek
Tom, are you sure your keys have the proper case? As far as I know, query column names are all uppercase so I'm pretty sure that is where the problem is coming from. To deal with this, I passed a list of property names with the correct case to the AOP Advice doing this translation (using the

Using __type__ to return objects to Flex

2008-01-29 Thread Tom Chiverton
I'm playing with the method that seems to have been hiding from me for a while at : http://www.briankotek.com/blog/index.cfm/2008/1/28/Returning-Typed-Structs-vs-CFCs-to-Flex to generate arrays of value objects based of a query, without using createObject(). Here, I've given my function a

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Don L
Ok, got you, so, in essence it's really you pay what you get, 'academic' less than 'standard', 'standard' less than 'enterprise'... Thanks. No, it doesn't mean it's restricted to one IP address - it means it's simply not going to cope with enterprise-level demand. Some of the features are

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Tom Chiverton
On Tuesday 29 Jan 2008, Brian Kotek wrote: property names, is simple using my MetaDataAwareAdvice. You might have a http://www.briankotek.com/blog/index.cfm/2008/1/16/Creating-A-MetadataAware-ColdSpring-Advice I saw that, but I'd have to list the column names in the metadata XML as well as

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Todd
And, after 30 days, Trial becomes Developer. On Jan 29, 2008 10:55 AM, Dave Watts [EMAIL PROTECTED] wrote: Ok, got you, so, in essence it's really you pay what you get, 'academic' less than 'standard', 'standard' less than 'enterprise'... There is no academic edition. There are four

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Don L
Thank you, guys, for your very helpful info. It looks like I'll have to bite the bullet (getting the standard edition...) Ok, got you, so, in essence it's really you pay what you get, 'academic' less than 'standard', 'standard' less than 'enterprise'... There is no academic edition. There

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Todd
No. It's a licensing terminology issue here, nothing more. If you're getting Academic Standard, then you're getting an Standard Edition with Academic restrictions on it (i.e. Don't expect to be running a ecommerce website on this license). There is no degrading of versions except between

RE: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keywor d?

2008-01-29 Thread Dave Watts
I though CFQP only worked in WHERE clauses. No, you can use it anywhere you can put data in an SQL command. This varies somewhat by database platform. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Brian Kotek
The column_name is actually in whatever case the column name is using in the database. For a one-time generation this might be fine, but one definitely wouldn't want to be doing this on every method call. However, passing a DSN to an advice, or just a properly-formatted list of property names, is

RE: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Dave Watts
Ok, got you, so, in essence it's really you pay what you get, 'academic' less than 'standard', 'standard' less than 'enterprise'... There is no academic edition. There are four editions: Enterprise, Standard, Developer and Trial. Academic pricing is available for Enterprise and Standard.

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Todd
Pony up the money like any other long time cf'er? I had at one point in time, my own 2 licenses of standard. I'm down to 1 now. On Jan 29, 2008 11:23 AM, Don L [EMAIL PROTECTED] wrote: I know that part, thanks though. How can one as a long time cfer to get a good deal out of this? And,

Re: CF 8 code analyzer question

2008-01-29 Thread Andy Chen
According to the article, CF 8 requires that This sounds like an error in the code analyzer. If your code works in CF8, it's correct. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest caliber vendor-authorized instruction at our training centers

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Brian Kotek
On Jan 29, 2008 11:08 AM, Tom Chiverton [EMAIL PROTECTED] wrote: On Tuesday 29 Jan 2008, Brian Kotek wrote: property names, is simple using my MetaDataAwareAdvice. You might have a http://www.briankotek.com/blog/index.cfm/2008/1/16/Creating-A-MetadataAware-ColdSpring-Advice I saw that,

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Don L
I know that part, thanks though. How can one as a long time cfer to get a good deal out of this? And, after 30 days, Trial becomes Developer. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Tom Chiverton
On Tuesday 29 Jan 2008, João_Fernandes wrote: I usually have dbinfo to get the needed metadata and generate my code based on that. This in the context of a piece of AOP AfterAdvice, so it doesn't really have the DSN to hand, never mind the table name, other wise yeah, that might work but I

RE: CF8 and IPv6

2008-01-29 Thread Ben Forta
Yes, CF8 does support IPv6 for debugging IP addresses. CF7 does have some IPv6 support, but (if I remember correctly)) not for debugging addresses. --- Ben -Original Message- From: Brian Kotek [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2008 10:08 AM To: CF-Talk Subject: Re:

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Tom Chiverton
On Tuesday 29 Jan 2008, Brian Kotek wrote: Yep, there's no way to do it directly from the query columns. That's what I was afraid of having hacked with various combinations of getMetaData() etc. For us, it's going to be better to sticking to using the Adobe Eclipse plug in to generate AS VOs

RE: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Steve Brownlee
Andy: Any idea how large your resultset is? I know that the MySQL JDBC driver has had problems crapping out on extremely large resultsets. And by crapping out, I mean, throwing the exception you're seeing. - Steve Brownlee -Original Message- From: Andy Matthews [mailto:[EMAIL

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Brian Kotek
Yep, there's no way to do it directly from the query columns. You either have to write your own VO CFC (which can then obviously have the proper case), or you have to give this code a list of the properly-formatted property names. Or of course you can have your AS class use all uppercase property

CF8 and IPv6

2008-01-29 Thread DURETTE, STEVEN J (ATTASIAIT)
Hi all, Just a quick question. Is CF8 (or even 7) IPv6 compatible? Will the ColdFusion Administrator debug ips work with IPv6? I'm being asked because our network is switching to IPv6 and this could be an issue if it doesn't handle it. Right now we are on CF7 (we own CF8 but change comes

Re: CF8 and IPv6

2008-01-29 Thread Brian Kotek
There was an update to CF7 to allow some support for IPv6 (in things like GetLocalHostIP()), which obviously are carried over to CF8. But for debug IPs I have no idea. I'd download the developer edition and try it. On Jan 29, 2008 9:55 AM, DURETTE, STEVEN J (ATTASIAIT) [EMAIL PROTECTED] wrote:

Re: CF8 and IPv6

2008-01-29 Thread Todd
Yes, it is... in the debugging IP textbox, one of the IP sets is: 0:0:0:0:0:0:0:1 My understanding, that's localhost equivalent of 127.0.0.1 On Jan 29, 2008 9:55 AM, DURETTE, STEVEN J (ATTASIAIT) [EMAIL PROTECTED] wrote: Hi all, Just a quick question. Is CF8 (or even 7) IPv6 compatible?

Re: cfinput binding onchange

2008-01-29 Thread Dominic Watson
Ok, I have come up with a solution that works - if there's a better way please let me know! First, I created a couple of simple javascript functions to blur and then refocus the supplied input object after a given delay (object passed by id, IE won't do the delay thing the way I would like just

Re: CMS Solution Recommendations

2008-01-29 Thread Brian Kotek
Not sure where you're looking, FarCry is constantly updated. I'd definitely check it out. http://www.farcrycms.org/ On Jan 29, 2008 12:39 PM, Nate Willard [EMAIL PROTECTED] wrote: Hello, Can anyone recommend a Coldfusion CMS solution? Also, is your recommendation currently supported? I

Re: CMS Solution Recommendations

2008-01-29 Thread Bruce Sorge
Actually FarCry has been recently update to v-4. I played around with it for quite a bit and was very very impressed, and even made sure to vote for it in the webby awards recently. And if it were not for the fact that I could not get the stupid navigation to do exactly what I wanted I would

RE: CMS Solution Recommendations

2008-01-29 Thread Mark Kruger
Nate, FC released version 4 last summer and version 5 is in progress. It has a vibrant development community. Where were you looking? -mark -Original Message- From: Nate Willard [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2008 11:39 AM To: CF-Talk Subject: CMS Solution

Re: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Josh Nathanson
I am having the same issue, with CF8/MySql 5 on my installation of BlogCFC, and haven't seen any solutions thus far. The problem is intermittent but it seems to happen pretty regularly. The BlogCFC forum at RIAforge has this post:

RE: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword?

2008-01-29 Thread Andy Matthews
4 records, with about 6 or 7 columns apiece. -Original Message- From: Steve Brownlee [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2008 9:12 AM To: CF-Talk Subject: RE: ColdFusion, MySQL 5.0.45, cfqueryparam, and the LIMIT keyword? Andy: Any idea how large your resultset is? I

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Jo�o_Fernandes
I usually have dbinfo to get the needed metadata and generate my code based on that. Something that should be implemented for CF9 would be something similar that LCDS support that is QueryRowType. With this kind of functionality, you can return directly your queries to the client and they will

CMS Solution Recommendations

2008-01-29 Thread Nate Willard
Hello, Can anyone recommend a Coldfusion CMS solution? Also, is your recommendation currently supported? I look at FarCry and it seems that the web site and code hasn't been updated in 2 years? Thanks ~| Adobe® ColdFusion® 8

Re: CMS Solution Recommendations

2008-01-29 Thread C. Hatton Humphrey
Can anyone recommend a Coldfusion CMS solution? Also, is your recommendation currently supported? I look at FarCry and it seems that the web site and code hasn't been updated in 2 years? I have recently become a BIG fan of BeSavvy. That is where I was recommended some time back and I will

CF-Based CRMs?

2008-01-29 Thread Rey Bango
I'm looking for a CF-based CRM. Anyone know of a good one? Rey ~| 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

Re: CF8 and IPv6

2008-01-29 Thread Todd
I meant to clarify that this is CF8 Debugging. On Jan 29, 2008 10:03 AM, Todd [EMAIL PROTECTED] wrote: Yes, it is... in the debugging IP textbox, one of the IP sets is: 0:0:0:0:0:0:0:1 My understanding, that's localhost equivalent of 127.0.0.1

Re: CF 8 code analyzer question

2008-01-29 Thread Matthew Smith
Thank you both for the response. ~| 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:

RE: CFIMAGE- stacking images

2008-01-29 Thread Ben Forta
ImageNew() to create a new blank image. ImageRead() and ImagePaste() to paste first image, then another ImageNew() and ImagePaste() setting the x and y so that it is where you want it relative to first image. Or just take all of that and make a ImageAppend() function that dos it for you. --- Ben

CFIMAGE- stacking images

2008-01-29 Thread Daniel Baughman
Hello all, I keep trying to find ways to use CFIMAGE but almost every time am forced to use another tool... Is there any way to append images? IE I have one image, a photo, that I want to append a polaroid-like bottom to. It seems this is outside the functionality of the CFIMAGE tag. Or am I

Re: CFIMAGE- stacking images

2008-01-29 Thread Ian Skinner
Ben Forta wrote: ImageNew() to create a new blank image. ImageRead() and ImagePaste() to paste first image, then another ImageNew() and ImagePaste() setting the x and y so that it is where you want it relative to first image. Or just take all of that and make a ImageAppend() function that dos

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Azadi Saryev
and, if i am not mistaken, any time you enter a valid licence key, your trial/dev edition turns into a standard/enterprise one. and if you remove the licence key it reverts back to dev edition (?) --- Azadi Saryev Sabai-dee.com http://www.sabai-dee.com Todd wrote: And, after 30 days, Trial

RE: Speaking of nudity (NSFW)

2008-01-29 Thread Andy Matthews
Keep looking Dave...you'll see it eventually. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 29, 2008 3:47 PM To: CF-Talk Subject: RE: Speaking of nudity (NSFW) Just ran into this one:

Re: CMS Solution Recommendations

2008-01-29 Thread Geoff Bowers
On 30/01/2008, Bruce Sorge [EMAIL PROTECTED] wrote: Actually FarCry has been recently update to v-4. I played around with it for quite a bit and was very very impressed, and even made sure to vote for it in the webby awards recently. That's great to hear :) And if it were not for the fact

Re: ColdFusion slow database connection to SQL2005

2008-01-29 Thread Dana Kowalski
is the data source setup as a native sql driver or ODBC? I've run into speed problems in the past when we had to use the ODBC instead of the native sql one. also, if you go into the mgmt. studio and run the same query in the query tool is the response immediate and much faster? If not, maybe

Re: Speaking of nudity (NSFW)

2008-01-29 Thread Bruce Sorge
Sorry. My bad. moving it now. Dave Watts wrote: No matter how long I stare at that, I fail to see the connection with CF. ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free

Re: CMS Solution Recommendations

2008-01-29 Thread Geoff Bowers
On 30/01/2008, Nate Willard [EMAIL PROTECTED] wrote: I look at FarCry and it seems that the web site and code hasn't been updated in 2 years? Apologies for letting the side down there. The main website is due for a major revamp and some areas are a little stale.. we're just about to put out a

RE: Speaking of nudity (NSFW)

2008-01-29 Thread Dave Watts
Just ran into this one: http://fr.news.yahoo.com/afp/20080128/img/pod-allemagne-touris me-nudi-44ec2938cfb00.html No matter how long I stare at that, I fail to see the connection with CF. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

Re: CFIMAGE- stacking images

2008-01-29 Thread Raymond Camden
Good point Ian. That's exactly what I tell folks as well. About the only thing I think the tag can do that the functions can't is the writeToBrowser action. Of course, CAPTCHA Is a _heck_ of a lot easier with the tag. On Jan 29, 2008 2:23 PM, Ian Skinner [EMAIL PROTECTED] wrote: Ben Forta wrote:

Re: ColdFusion slow database connection to SQL2005

2008-01-29 Thread Tom Mollerus
Kevin, were you using ODBC socket connections, or ODBC connections? Or, which driver exactly was it that you selected in the CF admin? I'm having the same problems that you are, and I'm not sure that the upgrade of the JDBC drivers is going to fix the problem. Thanks! Well I have just

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Todd
That's correct. On Jan 29, 2008 11:32 AM, Azadi Saryev [EMAIL PROTECTED] wrote: and, if i am not mistaken, any time you enter a valid licence key, your trial/dev edition turns into a standard/enterprise one. and if you remove the licence key it reverts back to dev edition (?) --- Azadi

RE: CFIMAGE- stacking images

2008-01-29 Thread Ben Forta
Here's an ImageAppend() function for you. Pass it two image paths, and the 3rd Boolean flag is TRUE (default) to stack images on top of each other, or FALSE to have them side by side. It returns an image object which you can save, or write to the browser with cfimage action=writetobrowser. ---

CF8 and MySQL Zero 0000-00-00 Dates

2008-01-29 Thread Jim McAtee
Is there a way of dealing with MySQL default -00-00 dates beyond going through all of our databases and changing them to NULL or a valid date? I came across an aticle suggesting that there may be a JDBC connection setting that will keep the MySQL JDBC driver from choking on them, but there

Speaking of nudity (NSFW)

2008-01-29 Thread Bruce Sorge
Just ran into this one: http://fr.news.yahoo.com/afp/20080128/img/pod-allemagne-tourisme-nudi-44ec2938cfb00.html Bruce -- Throttle Jockey - Why golf courses should be motocross tracks ~| Adobe® ColdFusion® 8 software 8 is

RE: Using __type__ to return objects to Flex

2008-01-29 Thread Kevin Aebig
There's a setting for the AMF gateway that automatically cases the column names to lowercase if you're interested. You can view the associated configurations inside: CF install dir\wwwroot\WEB-INF\flex\services-config.xml Cheers, !k -Original Message- From: Tom Chiverton [mailto:[EMAIL

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Brian Kotek
Interesting and good to know! But forcing them to lowercase is just about as bad as forcing them to uppercase. Unfortunately, it still means I can't properly camel case the property names in the AS class. On Jan 29, 2008 5:23 PM, Kevin Aebig [EMAIL PROTECTED] wrote: There's a setting for the

Re: CMS Solution Recommendations

2008-01-29 Thread s. isaac dealey
There is one by someone on this list named Matt Robertson but I cannot recall the name. It was a pretty solid app as well but lacked recent documentation. ContentMonger ... All of Matt's apps are mongers, though last I knew he was looking for someone else to take over his software projects

Re: Using __type__ to return objects to Flex

2008-01-29 Thread Jo�o_Fernandes
Tom, if you are using Reactor why don't you use the metadata generated by reactor itself? You could call getObjectMetadata() which has a getFieldList() which will return the list of fields with the proper case if I'm not mistaken. -- João Fernandes http://www.onflexwithcf.org

Browser and security

2008-01-29 Thread Don L
Not directly CF-related but web app related. I think it would be nice that future IE and FF releases would include an option (to the effect of for public use?), and if yes, that version of web browser would not be able to save cookie etc. Does that make sense? At one point, I saw a user with

Re: Browser and security

2008-01-29 Thread Todd Rafferty
It's up to the developer to do it and it's not that difficult. Ben Nadel just wrote an example today. http://www.bennadel.com/blog/1131-Ask-Ben-Ending-ColdFusion-Session-When-User-Closes-Browser.htm On Jan 29, 2008 6:21 PM, Don L [EMAIL PROTECTED] wrote: Not directly CF-related but web app

Re: Speaking of nudity (NSFW)

2008-01-29 Thread Mark Picker
Maybe it's so COLD the guys nads have sunk back in and are reFUSing (close enough) to come out I was trying to work an ION, but couldn't think of anything. :) Keep looking Dave...you'll see it eventually. Just ran into this one:

Re: Speaking of nudity (NSFW)

2008-01-29 Thread Mark Picker
Maybe it's so COLD that their nads have sunk back in and are reFUSing to come back out? I did try to work an ION in there but can't think of anything. :) Keep looking Dave...you'll see it eventually. Just ran into this one: http://fr.news.yahoo.com/afp/20080128/img/pod-allemagne-touris

Re: Browser and security

2008-01-29 Thread Don L
You missed my point entirely. Were a version of browser not to support cookie in particular (use env = public) then it would SYSTEMATICALLY addd a measure of security. No, it's NOT difficult to implement it at all!! I fully understood it's not exactly a good forum for this topic. It's up to

Re: Browser and security

2008-01-29 Thread Charlie Griefer
Why can't the institution in question just disable cookies on the workstations that they provide? Why should there be a whole new version of a given browser (or browsers) when every browser that I'm aware of currently allows the people deploying them to configure them in the manner that you're

Re: ColdFusion v8.0 Standard Edition - Academic Edition

2008-01-29 Thread Don L
Have ordered a standard edition. Though I have a license of a previous version (even if it would work, most likely not, it won't be legal). Thanks for the info. and, if i am not mistaken, any time you enter a valid licence key, your trial/dev edition turns into a standard/enterprise one. and

RE: Browser and security

2008-01-29 Thread Dave Watts
Why can't the institution in question just disable cookies on the workstations that they provide? Why should there be a whole new version of a given browser (or browsers) when every browser that I'm aware of currently allows the people deploying them to configure them in the manner that

Re: Browser and security

2008-01-29 Thread Don L
Extra work, which can easily be saved. The logic goes like this: The use of browser in such case is already determined, that is, for the general public or the like, hence, it's inappropriate to store cookie etc. mechanism in such environment. Why can't the institution in question just

Re: Browser and security

2008-01-29 Thread James Holmes
My suggestion then is: 1) Check out the Firefox source code 2) Rewrite the cookie handling code 3) Compile the code 4) ... 5) Profit On Jan 30, 2008 11:28 AM, Don L [EMAIL PROTECTED] wrote: Extra work, which can easily be saved. The logic goes like this: The use of browser in such case is

Using cfinput causes form fields to show through?

2008-01-29 Thread Ryan Stille
I have a form with three text fields lined up vertically on top of each other. The first field was a cfinput, so I could use the autosuggest feature. Worked great. Then I changed the other two fields to be cfinputs, and now they show through the autosuggest popup area. Here's a screen shot

Re: CF8 and MySQL Zero 0000-00-00 Dates

2008-01-29 Thread Azadi Saryev
zeroDateTimeBehavior=convertToNull add it to the jdbc url's query string part. maybe entering it into the Connection String box (under Advanced Settings in the CF Administrator)'s Data Sources page) will work too, but i have not tried it. --- Azadi Saryev Sabai-dee.com

Re: CMS Solution Recommendations

2008-01-29 Thread Andrew Grosset
So that's why we haven't heard from Matt in a while...I used to really enjoy reading his posts, hopefully we'll see him here again soon! Andrew. There is one by someone on this list named Matt Robertson but I cannot recall the name. It was a pretty solid app as well but lacked recent

Re: CMS Solution Recommendations

2008-01-29 Thread s. isaac dealey
So that's why we haven't heard from Matt in a while...I used to really enjoy reading his posts, hopefully we'll see him here again soon! I actually talked to him on the phone right after he'd posted a note on cf-jobs mentioning that he was looking for someone to take over. Based on what he

Mail list manager recommendations

2008-01-29 Thread Nathan C. Smith
I'm looking for a relatively simple mailing list manager or newsletter-type system. This would be for an outbound only newsletter-style list. I'd like to find something with a double opt-in option (invitees have to click a link in order to approve their subscription). And a link to unsubscribe

Re: Mail list manager recommendations

2008-01-29 Thread Kay Smoljak
It's not free, it's a third party system not installable code and it's not ColdFusion - and with that, I guess totally inappropriate for this list - but I have never found a better newsletter system than MailBuild.com :) There are so many risks associated with running newsletters out of your own

RE: Using cfinput causes form fields to show through?

2008-01-29 Thread William
I am not certain of the cf solution for this problem, but i can give you some insight on the problem. I had built an autosuggest system for a public website using css and javascript. The solution to my problem, when the same scenario occured, was to change the layer number (z-index) from the

RE: Using cfinput causes form fields to show through?

2008-01-29 Thread Jake Churchill
William, I looked into this (see my other post) and the z-index for the input field gets set to 0, the autosuggestcontainer gets set to 9050 and the shadow to 9049. The problem lies in that IE6 and z-index don't get along (at all). IE6 literally resets all z-index to 0 once the page loads.

re: Using cfinput causes form fields to show through?

2008-01-29 Thread Jake Churchill
Ryan, I have a solution/hack for you! If you name your input field test and set the autosuggest, it will wrap that in a div with ID testautosuggest and CLASS autosuggest. Knowing that, you can add the following CSS: style type=text/css #testautosuggest { float:left!important;

RE: Mail list manager recommendations

2008-01-29 Thread Nathan C. Smith
Thanks Kay, I probably should add that it is for very low volumes and for existing clients only that I want to use this software. Probably less than 7000 subscribers. Probably A LOT less ;) Thank-you. -Nate -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]

CFAjax Problem (parseJSON)

2008-01-29 Thread RobG
I was over at learncf.com and am trying to run their CFAjax tutorial on one of my servers. When I click on either of the buttons, such as Server Time, I get this error: Error: [Exception... 'SyntaxError: parseJSON' when calling method: [nsIOnReadyStateChangeHandler::handleEvent] nsresult:

RE: Using cfinput causes form fields to show through?

2008-01-29 Thread William Seiter
Looking at the code from back then, (the pages were never launched and I don't have php loaded locally, so can't test), this is the css I used for that 'autofill' section. z-index:99; position:absolute; visibility: visible; display: block; It may have been the

RE: Front end developer to a ColdFusion developer

2008-01-29 Thread William Seiter
I think what I like the best about the opportunity is that this 'entry-level' position offers a very nice vehicle as part of the Compensation package. £3 - £35000 per annum + Bens I wish more companies would offer professional sports style perks to their offers ;) As far as posting it