Re: Handling invalid recipient in mailing list

2015-04-04 Thread anene.quorium
Hi guys, I havehave Sent from Samsung tablet Mike K afpwebwo...@gmail.com wrote: You probably know already, but I'll say it just in case ... you can rarely have a 100% clean list. I have found that even after you just clean up a list, your next mailing will have rejects in it.   Even

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Dave Long
Thanks so much to all and to Mike and William, I will be putting your advice on the top of my list of things to do. The list in question has approximately 5,500 names but, by the time it is cleaned up, will probably be closer to 5,000. The idea of not disturbing subscribers unnecessarily

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Russ Michaels
Long d...@northgoods.com wrote: Thanks so much to all and to Mike and William, I will be putting your advice on the top of my list of things to do. The list in question has approximately 5,500 names but, by the time it is cleaned up, will probably be closer to 5,000. The idea

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
doing that as that's required by the CAN SPAM ACT. You can hook that up to a query so people can just do it themselves with no action needed from you. When sending bulk mail to a mail list it's important that you clean the list of failed mail and provide an opt-out option. Failure to do

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
I never use anything but Mail Chimp for bulk mail sends Honestly, I too highly recommend a service like Mail Chimp or Constant Contact, or Emma. They clearly have their place and the headache of getting blacklisted is miserable, but sometimes you have a situation where the options and

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Dean Lawrence
a service like Mail Chimp to validate a mail list is an easy way to validate a mail list, but the steps I detailed are a valid alternative for any full blown system you may be managing. I've written systems that have opt-in, opt-out features and utilize a variety of merged lists, like customer lists

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
I agree that using a third part service is highly desirable, but depending on the integration and the client it may not be feasible. I clearly have clients that would never allow their mail list or the mail content to be placed on any third-party server for compliance and/or security reasons

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Kelly Matthews
Have any of you tried Amazon SES for email? I paid to clean my list and then started using them. I can send out 20,000 emails for $2. It’s so much cheaper. I do use a software program called Sendy in conjunction with Amazon which cost $50 (one time). Just thought I’d mention it, but it’s

Re: Handling invalid recipient in mailing list

2015-04-03 Thread anene.quorium
17,000 emails in my list. (I know its not as much as yours), but after spending so much with the likes of icontact and campaign monitor, I decided to get ingenious. So I segmented the list into minor groups of 2,000. Then I churned our this flow in my code: 1. Select all from list table

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Rob Voyle
Hi Folks Robert details all the steps to keeping an email list clean and valid. Having done that in the past and for a list of 5000 addresses I would say it is a far better deal to go with one of the email newsletter companies. Having tried several I can highly recommend mailchimp http

Re: Handling invalid recipient in mailing list

2015-04-03 Thread Maureen
an email list clean and valid. Having done that in the past and for a list of 5000 addresses I would say it is a far better deal to go with one of the email newsletter companies. Having tried several I can highly recommend mailchimp http://mailchimp.com

RE: Handling invalid recipient in mailing list

2015-04-03 Thread Robert Harrison
It is true that using a service like Mail Chimp to validate a mail list is an easy way to validate a mail list, but the steps I detailed are a valid alternative for any full blown system you may be managing. I've written systems that have opt-in, opt-out features and utilize a variety

Handling invalid recipient in mailing list

2015-04-02 Thread Dave Long
I am trying to send a mass mailing to a somewhat carelessly created list of contacts using e-mail addresses which were not verified at the time of entry. Whenever the cfloop tag comes to an erroneous recipient, it quits and throws an error. Is there anything I can do to the code to make it keep

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Mark A Kruger
- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 5:12 PM To: cf-talk Subject: Handling invalid recipient in mailing list I am trying to send a mass mailing to a somewhat carelessly created list of contacts using e-mail addresses which were not verified at the time

Re: Handling invalid recipient in mailing list

2015-04-02 Thread Bryan Stevenson
the list ;-) HTH Cheers *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS™ phone: 250.480.0642 cell: 250.920.8830 e-mail: br...@fisheryfacts.com mailto:br...@fisheryfacts.com web: www.fisheryfacts.com http://www.fisheryfacts.com

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Rick
cftry Run you CFMAIL.. cfcatchMark email bad in database/cfcatch /cftry -Original Message- From: Dave Long [mailto:d...@northgoods.com] Sent: Thursday, April 02, 2015 5:12 PM To: cf-talk Subject: Handling invalid recipient in mailing list I am trying to send a mass mailing

RE: Handling invalid recipient in mailing list

2015-04-02 Thread William Seiter
Dave, You could have your code 'automatically' scrub the list and use a 'log' to keep track of the changes. This way you won't have to do a test run. Also, you could set up your code on a 'dummy' email server that will send the email but trap it prior to being mailed, this way you don't have

RE: Handling invalid recipient in mailing list

2015-04-02 Thread Dave Long
have been there all along, but a means of automatically cleaning the existing mailing list would help everyone... me most of all though. Thanks again for your help. Dave Long -Original Message- From: Rick [mailto:cfh...@kchost.net] Sent: Thursday, April 2, 2015 5:20 PM To: cf-talk Subject

Re: Handling invalid recipient in mailing list

2015-04-02 Thread Mike K
You probably know already, but I'll say it just in case ... you can rarely have a 100% clean list. I have found that even after you just clean up a list, your next mailing will have rejects in it. Even if it's only a few minutes since you last cleaned it up. Your error handling needs

Re: Querying a comma separated list

2014-08-28 Thread te...@it-werks.com te...@it-werks.com
It works perfectly. Thank you, Terry ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: Querying a comma separated list

2014-08-27 Thread Maureen
Your query should be: select * from pgallery where gtype = 1 if you only want items with a gtype of 1 or select * from pgallery where gtype IN (1,2,3,4) if you want multiple types. You can also set a variable of such as gtypelist =1,2,3,4) then do select * from pgallery where gtype IN

RE: Querying a comma separated list

2014-08-27 Thread UXB
I assume from the example you are storing the a comma delimited list in the Field gtype and need to query all records that match one or more items from the stored list. Here are some ways to accomplish what you want to do plus some other tricks. http://www.sommarskog.se/arrays-in-sql-2005.html

RE: Querying a comma separated list

2014-08-27 Thread David Phelan
a comma separated list I assume from the example you are storing the a comma delimited list in the Field gtype and need to query all records that match one or more items from the stored list. Here are some ways to accomplish what you want to do plus some other tricks. http://www.sommarskog.se/arrays

Querying a comma separated list

2014-08-26 Thread te...@it-werks.com te...@it-werks.com
I haven't done this is ages and could use some help, please. Here I define a list of checkboxes of picture types: input type=checkbox name=tt value=1 cfif gtype contains '1'checked/cfifSolidbr input type=checkbox name=tt value=2 cfif gtype contains '2'checked/cfifOpenbr input type=checkbox

Re: Querying a comma separated list

2014-08-26 Thread Jon Clausen
listContains() isn’t a function of the database but, rather, a CFML function. If you’re storing the list as a string list, and are querying the database, then your query will have to use Access string functions as it doesn’t know CFML: http://www.techonthenet.com/access/functions/ HTH, Jon

Re: Querying a comma separated list

2014-08-26 Thread Bill Moniz
I'm pretty certain you can't do what you're trying to do directly. The comma delimited list you have stored in gtype is just a string as far as the DB engine is concerned and cannot be searched as a list. If you must store it this way, I have achieved the result I think you want, in the past

Re: Querying a comma separated list

2014-08-26 Thread Jerry Milo Johnson
, rather than multiple. not sure if it is better, but it was simpler for me to understand hth Jerry Milo Johnson On Tue, Aug 26, 2014 at 8:41 PM, Bill Moniz hydro.b...@gmail.com wrote: I'm pretty certain you can't do what you're trying to do directly. The comma delimited list you have stored

Re: AWeber Email List Management

2014-07-16 Thread Dean Lawrence
Thanks Maureen and Bryon for your suggestions. Yes, PHP is an option, but I am not posting directly to AWeber because I have to do work with the submitted data first prior to sending it to their server, including setting some CF session values. I was primarily trying to not have to work with 2

Re: AWeber Email List Management

2014-07-15 Thread Dean Lawrence
Thanks for the suggestion Russ, Unfortunately, my client already settled on using AWeber. On Mon, Jul 14, 2014 at 3:31 PM, Russ Michaels r...@michaels.me.uk wrote: no, but I can recommend www.sendgrid.com though On Mon, Jul 14, 2014 at 8:27 PM, Dean Lawrence dean...@gmail.com wrote:

Re: AWeber Email List Management

2014-07-15 Thread Maureen
The PHP version of the AWeber stuff doesn't look like it would that hard to convert to Coldfusion. Pretty straight forward code. On Tue, Jul 15, 2014 at 3:09 PM, Dean Lawrence dean...@gmail.com wrote: Thanks for the suggestion Russ, Unfortunately, my client already settled on using AWeber.

Re: AWeber Email List Management

2014-07-15 Thread Byron Mann
Is installing php and using the php lib via cfexecute an option? Byron Mann Lead Engineer Architect HostMySite.com On Jul 14, 2014 3:28 PM, Dean Lawrence dean...@gmail.com wrote: Does anyone have any experience using the AWeber API ( https://labs.aweber.com/) from within their ColdFusion

Re: AWeber Email List Management

2014-07-15 Thread Maureen
I don't see why not. If you are going to do that, there are several options other than PHP as well. Or you could just call the php page on your form action instead of a cfm page. On Tue, Jul 15, 2014 at 10:39 PM, Byron Mann byronos...@gmail.com wrote: Is installing php and using the php lib

Re: AWeber Email List Management

2014-07-15 Thread Byron Mann
Guess I should have phrased that a bit differently. Php (and others) option with cfexecute is certainly viable, I was concerned if the original poster was able to do so. They may be in a corporate, hosted or government environment that dictates otherwise. If php and CF are running locally on

AWeber Email List Management

2014-07-14 Thread Dean Lawrence
Does anyone have any experience using the AWeber API (https://labs.aweber.com/) from within their ColdFusion app? They don't have an wrapper library for ColdFusion and their documentation is not very good. I haven't been able to find anything substantial by using Google, so any help pointing

Re: AWeber Email List Management

2014-07-14 Thread Russ Michaels
no, but I can recommend www.sendgrid.com though On Mon, Jul 14, 2014 at 8:27 PM, Dean Lawrence dean...@gmail.com wrote: Does anyone have any experience using the AWeber API ( https://labs.aweber.com/) from within their ColdFusion app? They don't have an wrapper library for ColdFusion and

nput solicited: List function support as member functions in CFML

2014-03-28 Thread Adam Cameron
G'day: I'm concerned about how Adobe have implemented the list-oriented member functions in ColdFusion 11. And I was hopeing to capture some community input as to what other people think, before raising it with Adobe: http://cfmlblog.adamcameron.me/2014/03/survey-lists-in-cfml-and-naming

RE: Saving updated sort order in mysql jquery list to update database

2013-09-26 Thread David Phelan
, September 25, 2013 7:43 PM To: cf-talk Subject: Saving updated sort order in mysql jquery list to update database I have a cfm page that displays a drag and drop ul list and I do not know how to create an array of that sorted list to the mysql database. Any help would be greatly appreciated. I

Saving updated sort order in mysql jquery list to update database

2013-09-25 Thread te...@it-werks.com te...@it-werks.com
I have a cfm page that displays a drag and drop ul list and I do not know how to create an array of that sorted list to the mysql database. Any help would be greatly appreciated. I am new to the jquery, jquery-ui plugins, but loving it all so far. Thanks in advance, Terry

Re: Saving updated sort order in mysql jquery list to update database

2013-09-25 Thread .jonah
The callback called after you drop your sorted item should place an ajax call to your selected endpoint with a list of IDs in their new order. (I haven't used the jQuery UI sortables to know the details.) Then on the CF side just update the DB. A naive way might be like this: cfloop from=1

List Manager Help

2013-06-18 Thread Robert Harrison
Hi, I'm having a problem making a change to my list member account. It doesn't seem to be something I can fix on this end. Can someone who has access to the HOF list manager contact me off list so I can explain the problem I'm encountering off-list and get my account fixed? Thanks, Robert

Getting a datasource list

2013-05-20 Thread Kris Sisk
production server (yeah, yeah, I should have upgraded both at the same time, I know). Anyway, the upgrade broke my app. Specifically, it can't pull a list of my data sources anymore. It seems the coldfusion.server.ServiceFactory java class I've always used to pull the list of datasources

Re: Getting a datasource list

2013-05-20 Thread Russ Michaels
have upgraded both at the same time, I know). Anyway, the upgrade broke my app. Specifically, it can't pull a list of my data sources anymore. It seems the coldfusion.server.ServiceFactory java class I've always used to pull the list of datasources is no longer present in CF10. Google has

Re: Getting a datasource list

2013-05-20 Thread Leigh
coldfusion.server.ServiceFactory No, that undocumented class still exists in CF10. Perhaps it is a permissions issue. What is the exact code and error message? -Leigh ~| Order the Adobe Coldfusion Anthology now!

Community Mailing List

2013-04-22 Thread Kevin Parker
I have a community based organisation (they do a lot of work with community safety through schools, emergency services and other community based organisations) who is one of my pro bono customers (actually it's my only one) that I help out. They're looking for an email list management system

Re: Community Mailing List

2013-04-22 Thread Russ Michaels
, emergency services and other community based organisations) who is one of my pro bono customers (actually it's my only one) that I help out. They're looking for an email list management system that supports categories and subscribers can manage their own subscriptions. Their hosting provider

RE: cfinput autosuggest list not correct

2013-04-09 Thread Stephens, Larry V
is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam...@gmail.comwrote: Oh, and stop using

Re: cfinput autosuggest list not correct

2013-04-09 Thread Raymond Camden
a little more work - like populating select inputs - but I'm now glad I made the change. jQuery is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct

Re: cfinput autosuggest list not correct

2013-04-09 Thread Russ Michaels
the change. jQuery is a big help. -Original Message- From: Matt Quackenbush [mailto:quackfu...@gmail.com] Sent: Monday, April 08, 2013 6:07 PM To: cf-talk Subject: Re: cfinput autosuggest list not correct On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam

cfinput autosuggest list not correct

2013-04-08 Thread Bill Franklin
I have verified that the JSON being returned shows the correct values, but the values that the cfinput are displaying are only the people with a first name that starts with the value I have typed... cfinput type=text name=full_name id=full_name message=Start typing

Re: cfinput autosuggest list not correct

2013-04-08 Thread Raymond Camden
That's the default. Use matchContains=true. Oh, and stop using cfinput. Avoid the CF UI tags. Take the time to learn some JS. You will thank me. On Mon, Apr 8, 2013 at 4:50 PM, Bill Franklin bill.frank...@bayer.comwrote: I have verified that the JSON being returned shows the correct

Re: cfinput autosuggest list not correct

2013-04-08 Thread Matt Quackenbush
On Mon, Apr 8, 2013 at 6:00 PM, Raymond Camden raymondcam...@gmail.comwrote: Oh, and stop using cfinput. Avoid the CF UI tags. Take the time to learn some JS. You will thank me. +infinity ~| Order the Adobe Coldfusion

Re: search email list to extract data in spreadsheet

2013-01-19 Thread Dave Watts
Why can't you just contact the college for the information? The main reason why I need to extract the information onto a spreadsheet is to save time (instead of doing it manually) - we work with several universities in the UK and store their information in our database - to promote our

Re: search email list to extract data in spreadsheet

2013-01-18 Thread Tom Small
Hi Attila, Thanks for your email and I should of been much clearer in my previous email. Hi John, Another questions - what if I wanted to extract information from a list of emails found on web (http://rg.kcl.ac.uk/staffprofiles/?by=A) and run some code that can extract details from each

Re: search email list to extract data in spreadsheet

2013-01-18 Thread Tom Small
Sorry about the first part of my previous email... ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: search email list to extract data in spreadsheet

2013-01-18 Thread J.J. Merrick
and I should of been much clearer in my previous email. Hi John, Another questions - what if I wanted to extract information from a list of emails found on web (http://rg.kcl.ac.uk/staffprofiles/?by=A) and run some code that can extract details from each email link and store each details

Re: search email list to extract data in spreadsheet

2013-01-18 Thread Tom Small
J.J, Thanks for your replay. The main reason why I need to extract the information onto a spreadsheet is to save time (instead of doing it manually) - we work with several universities in the UK and store their information in our database - to promote our product/services. You mentioned

search email list to extract data in spreadsheet

2013-01-17 Thread Tom Small
Hi, Can someone advise me on the following.. I want to know the best way to search through a list of emails and extract the information (e.g. first, address, position, address, etc) into an excel spreadsheet. Appreciate any advice on this issue. Tom

Re: search email list to extract data in spreadsheet

2013-01-17 Thread John M Bliss
Assuming you can get to the list via POP, this should do what you need: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7f96.html On Thu, Jan 17, 2013 at 2:19 PM, Tom Small t...@re-base.net wrote: Hi, Can someone advise me on the following.. I

Re: search email list to extract data in spreadsheet

2013-01-17 Thread Tom Small
Hi John, Thanks for the link. Tom ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

list status

2012-12-03 Thread Dan Baughman
Hey guys, This list has served me well for a number of years but I'd like to unsubscribe... you can't unsubscribe without signing into the houseoffusion site and the forgot password functionality is not working. Does anyone know how to unsub from this list? Thanks

Re: list status

2012-12-03 Thread Matt Quackenbush
: Hey guys, This list has served me well for a number of years but I'd like to unsubscribe... you can't unsubscribe without signing into the houseoffusion site and the forgot password functionality is not working. Does anyone know how to unsub from this list? Thanks

list of countries and territories

2012-12-03 Thread Greg Morphis
Does anyone have or know of a good list of delimited countries and territories I can use and import into my DB? Thanks ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155

Re: list of countries and territories

2012-12-03 Thread Russ Michaels
http://countrylist.net/ On Mon, Dec 3, 2012 at 6:43 PM, Greg Morphis gmorp...@gmail.com wrote: Does anyone have or know of a good list of delimited countries and territories I can use and import into my DB? Thanks

Re: list of countries and territories

2012-12-03 Thread Greg Morphis
That is awesome.. thanks Russ! On Mon, Dec 3, 2012 at 1:03 PM, Russ Michaels r...@michaels.me.uk wrote: http://countrylist.net/ On Mon, Dec 3, 2012 at 6:43 PM, Greg Morphis gmorp...@gmail.com wrote: Does anyone have or know of a good list of delimited countries and territories I

Re: list status

2012-12-03 Thread Michael Dinowitz
I'll look at both the password mechanism as well as unsubscribe you. On Mon, Dec 3, 2012 at 11:43 AM, Dan Baughman dan.baugh...@gmail.comwrote: Hey guys, This list has served me well for a number of years but I'd like to unsubscribe... you can't unsubscribe without signing

list delimiters question

2012-11-15 Thread morchella
hey guys! i could use a liitle help. i am trying to get a specific value. in this example chapter_id ListgetAt could work, but the returned form url cold have the value in a different oposition at any time. i thought i could use a delimiter specifiying ,chapter_id= but that dosnt seem to work.

Re: list delimiters question

2012-11-15 Thread Greg Morphis
I'm sure there are several ways to do this cfset FORM.some_url = http://somesite.com/some_display.cfm?some_id=4184chapter_id=12120passage_id=40099 / cfset params = listgetat(FORM.some_url,2,?) / cfset p = listtoarray(params, ) / cfset chapter_id = 0 / cfloop array=#p# index=i cfif

Re: list delimiters question

2012-11-15 Thread Marty Franklin
Can you just access through the url scope? cfdump var=#url.chapter_id# Best Regards, *Marty Franklin* /Information Technology/ *Asset Research Services, Inc.* ma...@assetresearch.com mailto:ma...@assetresearch.com On 11/15/2012 7:28 AM, morchella wrote: hey guys! i could use a liitle

Re: list delimiters question

2012-11-15 Thread Greg Morphis
no need to convert it to a array (I was trying to go that route but keeping it a list works fine too) cfset params = listgetat(FORM.some_url,2,?) / cfset chapter_id = 0 / cfloop list=#params# delimiters= index=i cfif find(chapter_id=, i) cfset chapter_id = listgetat(i, 2, =) / /cfif /cfloop

Re: list delimiters question

2012-11-15 Thread morchella
its from a form field, not a url, but it is a url. =] On Thu, Nov 15, 2012 at 9:43 AM, Marty Franklin ma...@assetresearch.comwrote: Can you just access through the url scope? cfdump var=#url.chapter_id# Best Regards, *Marty Franklin* /Information Technology/ *Asset Research

Re: list delimiters question

2012-11-15 Thread morchella
to convert it to a array (I was trying to go that route but keeping it a list works fine too) cfset params = listgetat(FORM.some_url,2,?) / cfset chapter_id = 0 / cfloop list=#params# delimiters= index=i cfif find(chapter_id=, i) cfset chapter_id = listgetat(i, 2, =) / /cfif /cfloop cfdump

Re: list delimiters question

2012-11-15 Thread morchella
not sure what the listgetat 2 is doing? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: list delimiters question

2012-11-15 Thread Dean Lawrence
It is treading your form.some_url value as a list separated by a question mark. The listgetat is retrieving the second value in the list, which are all the url name-value pairs. On Thu, Nov 15, 2012 at 9:53 AM, morchella morchella.delici...@gmail.com wrote: not sure what the listgetat 2

Re: list delimiters question

2012-11-15 Thread Greg Morphis
gets the second item in the list (chapter_id=12345) using the = as a delimiter On Thu, Nov 15, 2012 at 8:53 AM, morchella morchella.delici...@gmail.comwrote: not sure what the listgetat 2 is doing? ~| Order the Adobe

Re: list delimiters question

2012-11-15 Thread Greg Morphis
and the first one is separating the parameters from the URL using the ? as a delimiter. On Thu, Nov 15, 2012 at 8:59 AM, Dean Lawrence dean...@gmail.com wrote: It is treading your form.some_url value as a list separated by a question mark. The listgetat is retrieving the second value

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Carl Von Stetten
likely to have members with adequate experience to answer questions. Many of the HoF lists were created before established communities or forums were available elsewhere. If you look a some of these HoF lists, you'll see what I mean: *List** * *Posts in 2012** * *Last Post** * Ajax

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Matt Quackenbush
questions. Many of the HoF lists were created before established communities or forums were available elsewhere. If you look a some of these HoF lists, you'll see what I mean: *List** * *Posts in 2012** * *Last Post** * Ajax 3 8/23/12 CSS 0 12

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Cameron Childress
On Sun, Sep 16, 2012 at 2:26 PM, Rick Faircloth r...@whitestonemedia.comwrote: But more important than just communicating with anyone is communicating with people you already have a relationship with. When discussing responsive design, the most important to me is communicating with experts

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-17 Thread Russ Michaels
a some of these HoF lists, you'll see what I mean: *List** * *Posts in 2012** * *Last Post** * Ajax 3 8/23/12 CSS 0 12/23/10 JavaScript 0 9/15/11 XML 0 5/12/10 SQL 4 5/9/12

Mailing list for Responsive and Adaptive Web Design

2012-09-16 Thread Rick Faircloth
Hi, Michael... Have you given any thought to creating a mailing list for the hottest design paradigm to come along in a lng time? Response and Adaptive Web Design I think there would be a of interest in this, especially, the role of CF in this design approach. Nothing, I don't believe

Re: Mailing list for Responsive and Adaptive Web Design

2012-09-16 Thread Russ Michaels
I think you would be far better off to join an existing list on this topic that is already active. Its not really a cf topic so would get limited activity and this list is already quiet enough these days without trying to draw traffic to another one. Hard to believe this list used to be so active

RE: Mailing list for Responsive and Adaptive Web Design

2012-09-16 Thread Rick Faircloth
there is certainly room for the most important design paradigm shift to come about in a decade. Most mailing list participants, I would venture to guess, would rather carry on conversations about the various issues they face when programming and designing within the same group, rather than sign up for yet

RE: Mailing list for Responsive and Adaptive Web Design

2012-09-16 Thread terry
I give this idea a HUGE PLUS!!! Terry -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Sunday, September 16, 2012 9:14 AM To: cf-talk Subject: Mailing list for Responsive and Adaptive Web Design

Re: Populate Select List from JS

2012-08-16 Thread Chris Hardman
br / br / select name=resortID size=1 style=width: 150px option value = 0 /option/select The first list is hard coded as you can see and teh

Re: Populate Select List from JS

2012-08-16 Thread Chris Hardman
br / br / select name=resortID size=1 style=width: 150px option value = 0 /option/select The first list is hard coded as you can see and teh

Re: Populate Select List from JS

2012-08-16 Thread Bruce Sorge
Actually this code worked once I corrected the spelling of a variable. Sorry I did not update the list. BRuce Bruce AJAX might be better here. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe

Populate Select List from JS

2012-08-12 Thread Bruce Sorge
br / br / select name=resortID size=1 style=width: 150px option value = 0 /option/select The first list is hard coded as you can see and teh

Question for UK List Members

2012-05-23 Thread Edward Chanter
I'm currently investigating a new UK hosting solution and I was hoping to pick people's brains: 1. Can anyone recommend one or two good, responsive CF hosting companies based in the UK? 2. Do people have any experiences with running CF hosting on a VM solution, how does it compare to a

Re: Question for UK List Members

2012-05-23 Thread Andy Allan
Does it *have* to be a CF host? If so, then you've got HostMediaUK and BlueThunder Internet. If you want a damn good hosting company, then I'd strongly recommend Rackspace. They won't help you one jot with ColdFusion, but they are untouched for their experience and support when it comes to

RE: Question for UK List Members

2012-05-23 Thread Edward Chanter
with ColdFusion, but they are untouched for their experience and support when it comes to infrastructure and support. We host all our sites and apps on their UK and US Cloud platform. I'll add rackspace to my list of hosts to investigate. Thanks Andy

Re: Question for UK List Members

2012-05-23 Thread Jude Blacklaw
I can recommend www.cfmxhosting.co.uk most of the others I have tried over the years were rubbish or turned out of be resellers for the rubbish ones. So far these guys have been great so I stuck with them. Cloud is essentially just the same thing as a VPS, depending on your viewpoint,

Re: Question for UK List Members

2012-05-23 Thread Azadi Saryev
www.hostmedia.co.uk On Wed, May 23, 2012 at 4:31 PM, Edward Chanter firew...@cc.uk.com wrote: I'm currently investigating a new UK hosting solution and I was hoping to pick people's brains: 1. Can anyone recommend one or two good, responsive CF hosting companies based in the UK? 2. Do

Re: Question for UK List Members

2012-05-23 Thread Andy Allan
cfmxhosting / bluethunder are essentially one and the same. On 23 May 2012 09:59, Jude Blacklaw judeblack...@gmail.com wrote: I can recommend www.cfmxhosting.co.uk most of the others I have tried over the years were rubbish  or turned out of be resellers for the rubbish ones. So far these

Re: Question for UK List Members

2012-05-23 Thread Russ Michaels
Ed, here are a couple of good sites which I have found have reliable reviews. Don't bother to look at host review sites as these are a scam usually and the hosts pay to be listed/rated. Always check generic review sites instead, preferably ones without advertising. http://forta.com/cf/isp/ this

Re: Question for UK List Members

2012-05-23 Thread Jochem van Dieten
On Wed, May 23, 2012 at 10:31 AM, Edward Chanter wrote: 2. Do people have any experiences with running CF hosting on a VM solution, how does it compare to a standalone server? In most configurations disk I/O is a bit more unpredictable. For the rest it is the same. 3. I tried to convince my

Re: Question for UK List Members

2012-05-23 Thread Byron Mann
We run almost all of our shared and internal web servers as VMs using VMware with no degradation in performance. Most of them are currently using local storage of the host node. Eventually we will be moving to either a fiber channel SAN storage or multi-pathed direct attach storage to store the

Re: Somewhat OT....Making us look bad...For the adobe engineers on the list..

2012-04-28 Thread Raymond Camden
I spoke to a guy yesterday who still has several (old) clients using Access. It works fine for them so they haven't seen a need to change. I used to run DeathClock.com on it (4M views per month), but I cached the hell out of -everything- I did. I still think Access had the easiest way to create

Re: Somewhat OT....Making us look bad...For the adobe engineers on the list..

2012-04-28 Thread Roger Austin
On 4/28/2012 9:18 AM, Raymond Camden wrote: I spoke to a guy yesterday who still has several (old) clients using Access. It works fine for them so they haven't seen a need to change. I used to run DeathClock.com on it (4M views per month), but I cached the hell out of -everything- I did. I

Re: Somewhat OT....Making us look bad...For the adobe engineers on the list..

2012-04-28 Thread Mike Kear
The only problem with using Access for a web application is that it isnt designed to handle simultaneous accesses. And that's what most web applications require.If you have multiple requests on Access, it will queue the requests and handle them one at a time. In some applications,

Somewhat OT....Making us look bad...For the adobe engineers on the list..

2012-04-27 Thread Eric Roberts
on this list has consumed their products...some on a regular basis. This is how companies get turned off of products. This could have been a big win on Adobe's part. Way to drop the ball. Some days I think Adobe purposely tries to sabotage their own product. Adobe folks...feel free to pass

  1   2   3   4   5   6   7   8   9   10   >