Why this regex takes so long?

2014-10-02 Thread Claude Schnéegans
Hi, I'm having a problem with a scheduled task that chokes my server. Its role is to analyse bounced messages. I have been able to identify where it blocks, when analysing a line like this one with the regex below: Message-id: 26823262.22036.1411993378646.JavaMail.NS4007563$@127.0.0.1 CFSET

Re: Why this regex takes so long?

2014-10-02 Thread Byron Mann
Think this has something to do with the Regex itself. I stink at them; however try plugging it in here: http://regex101.com/ It returns something about catastrophic backtracking. You may want something like this: [A-Z0-9]*@ On Thu, Oct 2, 2014 at 11:51 AM, wrote: Hi, I'm having a problem

Re: Why this regex takes so long?

2014-10-02 Thread Claude Schnéegans
however try plugging it in here: It gives me the same result: Timout for PHP and Python (after about 3 sec) and a result in Javascript in about 4 sec, because it happens in my computer and there is no time out. It looks like the problem is really in the regEx itself. I'll try to get another

Re: Why is this happening??????

2013-03-15 Thread Byron Mann
it in news.cfc like this: cfset saveNewsItemStruct = structNew() cfset saveNewsItemStruct.ATID = '#application.temp_images_directory#' / why in the WORLD would I get this: e:\\inetpub\\webroot\\tempImages when I return the struct and display saveNewsItemsStruct.ATID? Why are the path

Re: Why is this happening??????

2013-03-14 Thread Bobby
the backslashes. I don't believe I've ever run into this before. Rick -Original Message- From: Jerry Milo Johnson [mailto:jmi...@gmail.com] Sent: Wednesday, March 13, 2013 10:18 PM To: cf-talk Subject: Re: Why is this happening?? how are you displaying it when

RE: Why is this happening??????

2013-03-14 Thread Rick Faircloth
I'm not aware of any jsStringFormat() at work and no global script protection, either. -Original Message- From: Bobby [mailto:bo...@acoderslife.com] Sent: Thursday, March 14, 2013 10:00 AM To: cf-talk Subject: Re: Why is this happening?? I guess you had no luck finding

Why is this happening??????

2013-03-13 Thread Rick Faircloth
= '#application.temp_images_directory#' / why in the WORLD would I get this: e:\\inetpub\\webroot\\tempImages when I return the struct and display saveNewsItemsStruct.ATID? Why are the path lines doubling? I don't think I've seen this in 15 years of CF programming! (I'm getting too old

Re: Why is this happening??????

2013-03-13 Thread Jerry Milo Johnson
! If I create this variable in application.cfc: cfset application.temp_images_directory = 'e:\inetpub\webroot\tempImages' / and use it in news.cfc like this: cfset saveNewsItemStruct = structNew() cfset saveNewsItemStruct.ATID = '#application.temp_images_directory#' / why in the WORLD

Re: Why is this happening??????

2013-03-13 Thread Bobby
= structNew() cfset saveNewsItemStruct.ATID = '#application.temp_images_directory#' / why in the WORLD would I get this: e:\\inetpub\\webroot\\tempImages when I return the struct and display saveNewsItemsStruct.ATID? Why are the path lines doubling? I don't think I've seen this in 15 years

RE: Why is this happening??????

2013-03-13 Thread Rick Faircloth
If I use this on a test page: cfoutput#application.temp_images_directory#/cfoutput it comes out fine: e:\inetpub\webroot\tempImages I just don't see why (or how) it could be happening. Thanks for the feedback! Rick -Original Message- From: Jerry Milo Johnson [mailto:jmi...@gmail.com

Re: Why is this happening??????

2013-03-13 Thread Jerry Milo Johnson
#application.temp_images_directory#/cfoutput it comes out fine: e:\inetpub\webroot\tempImages I just don't see why (or how) it could be happening. Thanks for the feedback! Rick -Original Message- From: Jerry Milo Johnson [mailto:jmi...@gmail.com] Sent: Wednesday, March 13, 2013 9:34 PM To: cf-talk

RE: Why is this happening??????

2013-03-13 Thread Rick Faircloth
That gives me an idea about what might be going on. I'll check into that tomorrow and let you know what I find. Thanks! Rick -Original Message- From: Bobby [mailto:bo...@acoderslife.com] Sent: Wednesday, March 13, 2013 10:57 PM To: cf-talk Subject: Re: Why is this happening

Re: Why is this happening??????

2013-03-13 Thread Dave Watts
If I create this variable in application.cfc: cfset application.temp_images_directory = 'e:\inetpub\webroot\tempImages' / and use it in news.cfc like this: cfset saveNewsItemStruct = structNew() cfset saveNewsItemStruct.ATID = '#application.temp_images_directory#' / why in the WORLD would

RE: Why is this happening??????

2013-03-13 Thread Rick Faircloth
\/duck_400.jpg I'm not sure what is inserting the backslashes. I don't believe I've ever run into this before. Rick -Original Message- From: Jerry Milo Johnson [mailto:jmi...@gmail.com] Sent: Wednesday, March 13, 2013 10:18 PM To: cf-talk Subject: Re: Why is this happening?? how

RE: Why is this happening??????

2013-03-13 Thread Rick Faircloth
. If I create this variable in application.cfc: cfset application.temp_images_directory = 'e:\inetpub\webroot\tempImages' / and use it in news.cfc like this: cfset saveNewsItemStruct = structNew() cfset saveNewsItemStruct.ATID = '#application.temp_images_directory#' / why in the WORLD

Re: Why is this happening??????

2013-03-13 Thread Kym Kovan
I've ever run into this before. Rick -Original Message- From: Jerry Milo Johnson [mailto:jmi...@gmail.com] Sent: Wednesday, March 13, 2013 10:18 PM To: cf-talk Subject: Re: Why is this happening?? how are you displaying it when the \ are appearing doubled? (something like a js

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-30 Thread M
All - I needed to seek the help of a networking geek to help me get the Wireshark captures. During the process we installed a copy of CF10 Developer Edition to be better able to poke and prod at settings in a more controlled (and change sensitive) environment. If it matters, it's CF10

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-30 Thread M
Sorry for the length of previous post, but only way to demonstrate failure of Captivate 6 and Coldfusion to get along. On Wed, Jan 30, 2013 at 10:52 AM, M opusmyh...@gmail.com wrote: All - I needed to seek the help of a networking geek to help me get the Wireshark captures.

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-30 Thread Russ Michaels
I think your problem may be multipart/form-data you have in the form Content-Disposition: form-data; name=Upload but there is no file being sent that I can see from your sample data. On Wed, Jan 30, 2013 at 4:57 PM, M opusmyh...@gmail.com wrote: Sorry for the length of previous post,

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-28 Thread M A
Apologies for the confusion. The two files in the directory are the HTTP requests that are uploading the Captivate data. My current internalServerReporting.cfm looks like this: html body It worked ... I got this far /body /html So, there's no CFML in the file, or anything, but I don't

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-28 Thread Russ Michaels
If that is the content of your CFML page that then is why it is not working, as you are not doing anything with the data. You cannot just submit data to a blank page that does nothing, you need some code in there to process what is being posted to it. On Mon, Jan 28, 2013 at 2:19 PM, M

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-28 Thread M
of your CFML page that then is why it is not working, as you are not doing anything with the data. You cannot just submit data to a blank page that does nothing, you need some code in there to process what is being posted to it. On Mon, Jan 28, 2013 at 2:19 PM, M A opusmyh...@gmail.com wrote

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-28 Thread Russ Michaels
look next? On Mon, Jan 28, 2013 at 8:23 AM, Russ Michaels r...@michaels.me.uk wrote: If that is the content of your CFML page that then is why it is not working, as you are not doing anything with the data. You cannot just submit data to a blank page that does nothing, you need some

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-28 Thread M
: If that is the content of your CFML page that then is why it is not working, as you are not doing anything with the data. You cannot just submit data to a blank page that does nothing, you need some code in there to process what is being posted to it. On Mon, Jan 28, 2013 at 2

First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M A
'mornin. I work at a university that developed an online employee training/compliance system using Captivate. Worked beatifully until we hit 6. Simply told CP to email the results and we parsed it with a little javascript, fiddle with some code and voila the data collected is happily

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread Dave Watts
In 6 emailing the results is no longer an option, but there is what looks like a snazzy internal server solution. Captivate provides directions and php files and everything. We run a strictly CF/Oracle shop and every attempt to replicate the php files/actions ends in failure. My first

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M
Sadly your first suggestion never made it out the gate and if you gimme a minute I can give you many more details as to the failures. Really appreciate your reply. Truly. This has me pulling my hair out. m On Fri, Jan 25, 2013 at 9:09 AM, Dave Watts dwa...@figleaf.com wrote: In 6

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M
As a more detailed follow up to my original quandry, this is what has been attempted: I have attempted posting to a CFM version of internalServerReporting on two different ColdFusion platforms. The first is Unix-based, 64-bit, Apache 2.2.15 (RHEL 6's version) with CF 9 (not sure of the current

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread Russ Michaels
it is a bit hard to speculate without seeing eitehr the code or the data that is being submitted. It would help if we could see these. put them up on pastebin.com On Fri, Jan 25, 2013 at 5:43 PM, M opusmyh...@gmail.com wrote: As a more detailed follow up to my original quandry, this is what

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M
Thank you, will do! On Fri, Jan 25, 2013 at 12:15 PM, Russ Michaels r...@michaels.me.uk wrote: it is a bit hard to speculate without seeing eitehr the code or the data that is being submitted. It would help if we could see these. put them up on pastebin.com On Fri, Jan 25, 2013 at

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread Dave Watts
Attached are two different POST requests captured from the Captivate submit, in a format that can be pasted into a 'telnet server http' session. (The exact path and server have been removed from the files.) The mailing list doesn't allow attachments. You can put them inline, but I'd also

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M
D'oh . . . this has not been my week. Please hold. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread M
Links to code can be found here: http://www4.uwm.edu/ptb/ Thank you, again. m On Fri, Jan 25, 2013 at 12:30 PM, M opusmyh...@gmail.com wrote: D'oh . . . this has not been my week. Please hold. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/

Re: First time caller, long time listener . . . why does Captivate 6 hate CF

2013-01-25 Thread Russ Michaels
Neither of those files contain any code? Regards Russ Michaels www.michaels.me.uk www.cfmldeveloper.com - Free CFML hosting for developers www.cfsearch.com - CF search engine On Jan 25, 2013 6:37 PM, M opusmyh...@gmail.com wrote: Links to code can be found here: http://www4.uwm.edu/ptb/

Re: Rounding, why?

2012-11-13 Thread Leigh
You need to provide the scale attribute (ie Number of decimal places). The default is zero (0). That is why the value is rounded. -Leigh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion

Rounding, why?

2012-11-12 Thread Greg Morphis
Something is baffling me.. I'm inserting a value into the database and it's rounding the number. I don't know where or why this is happening! On the action page this is what the code looks like when inserting INSERT INTO mytable

Re: Rounding, why?

2012-11-12 Thread Greg Morphis
as to why this happens? I'm using CF9.0.1 On Mon, Nov 12, 2012 at 11:11 AM, Greg Morphis gmorp...@gmail.com wrote: I tried decimal(19,2) and back to smallmoney and still 36.00 gets inserted into the database table. And changed the type in the cfc to cf_sql_decimal. On Mon, Nov 12, 2012 at 10

Re: Rounding, why?

2012-11-12 Thread Greg Morphis
in the database. Any ideas as to why this happens? I'm using CF9.0.1 On Mon, Nov 12, 2012 at 11:11 AM, Greg Morphis gmorp...@gmail.com wrote: I tried decimal(19,2) and back to smallmoney and still 36.00 gets inserted into the database table. And changed the type in the cfc to cf_sql_decimal

Re: Rounding, why?

2012-11-12 Thread Greg Morphis
and it's rounding the number. I don't know where or why this is happening! On the action page this is what the code looks like when inserting INSERT INTO mytable ( af_id

Why would cflayout tag mess with debug output in classic mode

2012-05-14 Thread kbutte...@yahoo.com kbutte...@yahoo.com
Hi all, Just took over a new site. Running it locally. Site works fine, but debug info is not showing. I can look at the source and the debug info is there, but it's being hidden somehow. I have done some testing and if the page has cflayout/cflayout tags, then the debug will not appear.

Re: Why would cflayout tag mess with debug output in classic mode

2012-05-14 Thread Raymond Camden
The debug output includes a butt load of closing tags, like /td, /span, etc. It does to to ensure the debug output doesn't get swallowed up because something, like a table, didn't complete. Most likely it is not working well within cflayout. On Mon, May 14, 2012 at 6:59 PM, kbutte...@yahoo.com

Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-15 Thread Phillip Vector
, decreasing their usefulness.  It's not like it's that hard to delete the individual e-mails (or create a filter if you really don't want to see any of those e-mails -- but then, why not just unsubscribe from the list, since they are directly relevant to the list?) Scott On Apr 11, 2012, at 2:09

RE: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-12 Thread Christian N. Abad
...@accessiblecomputing.com -Original Message- From: Jordan Michaels [mailto:jor...@viviotech.net] Sent: Wednesday, April 11, 2012 4:30 PM To: cf-jobs-talk Subject: Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper Not that my opinion really matters here

Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-12 Thread Aaron Rouse
http://www.AccessibleComputing.com 704.900.1825 (Direct Line) li...@accessiblecomputing.com -Original Message- From: Jordan Michaels [mailto:jor...@viviotech.net] Sent: Wednesday, April 11, 2012 4:30 PM To: cf-jobs-talk Subject: Re: Can I ask why this place has been taken over

Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-12 Thread Bobby
...@viviotech.net] Sent: Wednesday, April 11, 2012 4:30 PM To: cf-jobs-talk Subject: Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper Not that my opinion really matters here, but I don't see the problem. That is a CF-Jobs list, and the posts are listing real jobs

Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-11 Thread Michael Dinowitz
The list rules were once a week for a job but once every 3 days should be ok. I'm going to email the various people who have been posting daily and put something on the site about it. Eventually I'll have a job posting form rather than allow 'free form' posts. More work but cleaner posts. On

Re: Can I ask why this place has been taken over by Brian Thornton aka CFDeveloper

2012-04-11 Thread Larry C. Lyons
Agreed. I think with Ms. Danes etc is that the positions are hard to fill. Which is unfortunate because Rochester MN is a really nice town, and the projct is a year plus working at the Mayo Clinic. On Wed, Apr 11, 2012 at 3:47 PM, Cameron Childress camer...@gmail.com wrote: If I were to make a

Java Keystore... why is it needed for valid certs?

2012-02-13 Thread Bobby Hartsfield
is expiring. It is to the point where I'm updating one certificate or another every month or two. My question is why do I have to add these certificates to the keystore at all? They validate fine in a browser (in fact, that is where I always get the x.50- certificate from... by exporting

Re: Java Keystore... why is it needed for valid certs?

2012-02-13 Thread Dave Watts
My question is why do I have to add these certificates to the keystore at all? They validate fine in a browser (in fact, that is where I always get the x.50- certificate from... by exporting it through the browser). The reason they validate fine in a browser is because browsers come

RE: Java Keystore... why is it needed for valid certs?

2012-02-13 Thread Bobby Hartsfield
-talk Subject: Re: Java Keystore... why is it needed for valid certs? My question is why do I have to add these certificates to the keystore at all? They validate fine in a browser (in fact, that is where I always get the x.50- certificate from... by exporting it through the browser). The reason

OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
Assuming the vars are correctly assigned, why would this statement: var atpos = fieldToValidate.val().indexOf('@'); var dotpos = fieldToValidate.val().lastIndexOf('.'); if ( atpos 1 || dotpos atpos + 2 || dotpos + 2 = fieldToValidate.val().length ) give me this error for the if line above

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
In JS Comparison (what you are doing) is ==, while assignment (what it's complaining about) is =. On 10/31/11 1:19 PM, Rick Faircloth wrote: Assuming the vars are correctly assigned, why would this statement: var atpos = fieldToValidate.val().indexOf('@'); var dotpos = fieldToValidate.val

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
-talk Subject: Re: OT, JS : Why am I getting this error? In JS Comparison (what you are doing) is ==, while assignment (what it's complaining about) is =. On 10/31/11 1:19 PM, Rick Faircloth wrote: Assuming the vars are correctly assigned, why would this statement: var atpos

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
: Monday, October 31, 2011 4:28 PM To: cf-talk Subject: Re: OT, JS : Why am I getting this error? In JS Comparison (what you are doing) is ==, while assignment (what it's complaining about) is =. On 10/31/11 1:19 PM, Rick Faircloth wrote: Assuming the vars are correctly assigned, why would

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
@creori.com] Sent: Monday, October 31, 2011 4:51 PM To: cf-talk Subject: Re: OT, JS : Why am I getting this error? what I'd do in this case is log each of the tests above the if. console.log(atpos); console.log(dotpos); console.log(fieldToValidate.val().length); console.log(atpos 1); console.log

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
, JS : Why am I getting this error? Well... with a refresh after the change (this stuff is AJAX'ed and sometimes changes document changes don't refresh like I think they would) the validation seems to be working correctly. Thanks for the feedback, Jonah! :o) Rick -Original Message- From

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
== fieldToValidate.val().length ) -Original Message- From: Rick Faircloth [mailto:r...@whitestonemedia.com] Sent: Monday, October 31, 2011 5:19 PM To: cf-talk Subject: RE: OT, JS : Why am I getting this error? Well... with a refresh after the change (this stuff is AJAX'ed and sometimes changes

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread Claude Schnéegans
and sometimes changes document changes don't refresh Are you using Explorer ? There is a well known bug in IE about caching Ajax requests. See http://coldfusion.tcs.de/coldfusion-ie-cache-problem-with-repeating-ajax-requests/ I've added this at the top of the called template, and it solved

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
Nope... no IE for dev. Always FF with FB. -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: Monday, October 31, 2011 5:54 PM To: cf-talk Subject: Re: OT, JS : Why

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
The console.log showed that all values were correct, but I needed to use parseInt when calculating values to avoid concatenation. -Original Message- From: .jonah [mailto:jonah@creori.com] Sent: Monday, October 31, 2011 5:49 PM To: cf-talk Subject: Re: OT, JS : Why am I getting

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread Claude Schnéegans
Nope... no IE for dev. Always FF with FB. OK, but still, use these headers, in case you have some users under IE. ~| Order the Adobe Coldfusion Anthology now!

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
Ha! Nice. We get so used to non-typed CFML. ;) On 10/31/11 3:07 PM, Rick Faircloth wrote: The console.log showed that all values were correct, but I needed to use parseInt when calculating values to avoid concatenation. ~|

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
And if you don't control the that serving template, you can add something like '?cachebuster=' + new Date().getTime() to your request URL. On 10/31/11 3:13 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: Nope... no IE for dev. Always FF with FB. OK, but still, use these headers, in case you

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
Ok... will do... -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: Monday, October 31, 2011 6:14 PM To: cf-talk Subject: Re: OT, JS : Why am I getting this error

RE: OT, JS : Why am I getting this error?

2011-10-31 Thread Rick Faircloth
as well. Thanks for the help! Rick -Original Message- From: .jonah [mailto:jonah@creori.com] Sent: Monday, October 31, 2011 6:16 PM To: cf-talk Subject: Re: OT, JS : Why am I getting this error? And if you don't control the that serving template, you can add something like

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread Claude Schnéegans
you can add something like '?cachebuster=' + new Date().getTime() to your request URL. Right, but I prefer the first method. First because my Ajax function is getting the url in a parameter, sometimes with ?values in it, sometime with none, so sometimes ?cachebuster=should be added, sometimes

Re: OT, JS : Why am I getting this error?

2011-10-31 Thread .jonah
I agree. The query param is more of a hack if you don't control the serving template. ;) On 10/31/11 6:19 PM, =?ISO-8859-1?Q?Claude_Schn=E9egans wrote: you can add something like '?cachebuster=' + new Date().getTime() to your request URL. Right, but I prefer the first method. First

RE: Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-21 Thread Nathan Chen
Dave, thank you for the help. I copied /cfide/ directory to my site directory and pointed my pages to it, and it worked. Thanks. Nathan -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Wednesday, October 19, 2011 1:59 PM To: cf-talk Subject: Re: Why cfajaximport

RE: Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-19 Thread Nathan Chen
] Sent: Friday, October 14, 2011 5:40 PM To: cf-talk Subject: Re: Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9 I have a html table that lists people's names and thea href around the name will open up a pop-up showing their bio. I use cfajaximport tags=cfwindow to make

Re: Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-19 Thread Dave Watts
Yes, Dave, that's exactly what happened after I worked with my server folks on this issue. What happened was that the site is being hosted in a third party hosting company. Our server hits their server(some kind of proxy) but that server doesn't have \cfide\ folder. I changed my around and

Re: Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-14 Thread Dave Watts
I have a html table that lists people's names and thea href around the name will open up a pop-up showing their bio. I use cfajaximport tags=cfwindow to make this happen. It works perfectly in CF 8 but won't work in CF 9. Did I miss anything? The following code is just a sample from the data

Why cfajaximport tags=cfwindow works in CF 8 , but not CF 9

2011-10-12 Thread Nathan Chen
All: I have a html table that lists people's names and thea href around the name will open up a pop-up showing their bio. I use cfajaximport tags=cfwindow to make this happen. It works perfectly in CF 8 but won't work in CF 9. Did I miss anything? The following code is just a sample from the

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Azadi Saryev
Andrew Not sure if you you solved this or not... IIRC, gmail/google apps mail also has a rate limit in addition to daily mails per account limit - if you exceed some number of emails per minute it starts rejecting mail. Some number was sometimes different in my tests, but it hovered around

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
a cheap solution for bulk email is www.sendgrid.com which solves all your worries, We are working on a CFML application that wraps around their API to create CF based bulk mailing solution. On Tue, Sep 13, 2011 at 5:50 PM, Azadi Saryev azadi.sar...@gmail.com wrote: Andrew Not sure if you you

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Thanks Azadi, I have moved this part of the system to another dedicated email server that is controlled by me now. Which now seems to be working great, but I will keep that in mind for the future. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+:

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Well that is expensive when you compare that our solution is actually free. -- Regards, Andrew Scott WebSite: http://www.andyscott.id.au/ Google+: http://plus.google.com/108193156965451149543 On Wed, Sep 14, 2011 at 2:56 AM, Russ Michaels r...@michaels.me.uk wrote: a cheap solution for

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Cameron Childress
On Tue, Sep 13, 2011 at 12:56 PM, Russ Michaels r...@michaels.me.uk wrote: a cheap solution for bulk email is www.sendgrid.com which solves all your worries, We are working on a CFML application that wraps around their API to create CF based bulk mailing solution. I has a conversation with

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
that would depend. If you are purely talking about the cost to send the email then yes. But are you taking into consideration the time you need to spend to actually provide the same service that companies like sendgrid do. setting up relationships with DNSBL lists and spam databases, all the

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Russ Michaels
indeed there are many such companies out there, different people will have different experiences, you will find varied reviews of them all on google. On Tue, Sep 13, 2011 at 6:04 PM, Cameron Childress camer...@gmail.com wrote: On Tue, Sep 13, 2011 at 12:56 PM, Russ Michaels r...@michaels.me.uk

Re: Anyone know how to fix this or why this happening?

2011-09-13 Thread Andrew Scott
Russ, I don't wish to get into a heavy debate on this, and as the campaigns that are being sent are by subscription all those issues you have pointed out become mute. Now for someone else then this might be something that they could consider. -- Regards, Andrew Scott WebSite:

Re: Anyone know how to fix this or why this happening?

2011-09-05 Thread Russ Michaels
start here http://www.wireshark.org/docs/ create a filter to watch only the SMTP traffic send some emails, until 1 fails. Then compare the traffic for the failed email to the working emails and see what the difference was. Did gmail respond in the same way, or did it in fact send a rejection

Re: Anyone know how to fix this or why this happening?

2011-09-04 Thread Andrew Scott
Ok had to install wireshark, as it started happening again. So what specifically do I need to do to see what I need to see. On Wed, Aug 31, 2011 at 9:46 PM, Russ Michaels r...@michaels.me.uk wrote: Wireshark certainly is daunting, but if you start reading the guide it will start to make

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Andrew Scott
Thanks Billy, that was my intial reaction. As I had come across that post about the SPF and mail limits etc before. Which is why I thought it might have been a relay issue to begin with, because the mail is not actually sent using accounts email address. It is sent through that account, and sort

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Billy Cravens
intial reaction. As I had come across that post about the SPF and mail limits etc before. Which is why I thought it might have been a relay issue to begin with, because the mail is not actually sent using accounts email address. It is sent through that account, and sort of made sense

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Andrew Scott
Well I went looking through the mail box, and there are emails there that have been sent. So it looks like it is being selective, but not sure why... On Wed, Aug 31, 2011 at 5:12 PM, Billy Cravens bdcrav...@gmail.com wrote: My experience has been that it automatically overwrites the from

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Russ Michaels
did you try wireshark? On Wed, Aug 31, 2011 at 8:16 AM, Andrew Scott andr...@andyscott.id.auwrote: Well I went looking through the mail box, and there are emails there that have been sent. So it looks like it is being selective, but not sure why... On Wed, Aug 31, 2011 at 5:12 PM, Billy

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Andrew Scott
...@michaels.me.uk wrote: did you try wireshark? On Wed, Aug 31, 2011 at 8:16 AM, Andrew Scott andr...@andyscott.id.au wrote: Well I went looking through the mail box, and there are emails there that have been sent. So it looks like it is being selective, but not sure why... On Wed, Aug 31

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Andrew Scott
Hey Russ, something OT do you do dedicated hosting? If so do you want to ping me offlist, have some questions regarding a dedicated server with Plesk Panel. On Wed, Aug 31, 2011 at 9:03 PM, Russ Michaels r...@michaels.me.uk wrote: did you try wireshark? -- Regards, Andrew Scott WebSite:

Re: Anyone know how to fix this or why this happening?

2011-08-31 Thread Russ Michaels
Wireshark certainly is daunting, but if you start reading the guide it will start to make sense. All you really need to do is set it monitoring, send the email from CF that gets stuck, and look at the traffic that resulted, it will show you the conversation between the 2 servers and if Google did

Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
This is a ColdFusion 8 server, and not all mail is having this problem, as it appears that any email that is sent without the from or to address contains the name of the email account it is being sent from. I am sort of think it is a relay issue, or something but can't seem to find anything that

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Scott Stewart
Make sure that the email admin is allowing relay from the cf server's ip address. On Aug 30, 2011 5:42 PM, Andrew Scott andr...@andyscott.id.au wrote: This is a ColdFusion 8 server, and not all mail is having this problem, as it appears that any email that is sent without the from or to

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
I thought I would do a test and it appears to not be a relay issue, by sending a dummy email from and to addresses that aren't the actualy smtp account they were sent and received fine. All I can find on Google is that it might be a bottleneck, but then why does some mail get through and some

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
a dummy email from and to addresses that aren't the actualy smtp account they were sent and received fine. All I can find on Google is that it might be a bottleneck, but then why does some mail get through and some don't? Btw the smtp is a gmail account on Googel Apps. -- Regards, Andrew

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Rex
, by sending a dummy email from and to addresses that aren't the actualy smtp account they were sent and received fine. All I can find on Google is that it might be a bottleneck, but then why does some mail get through and some don't? Btw the smtp is a gmail account on Googel Apps. -- Regards

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
, and I can't work out why some are being thrown in the undeliverable folder, and some are going through. Now Google searches have turned up nothing that helps, and most keep talking about a network congestion, but why is it so selective as to what goes through and what doesn't. Dragging the emails

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Rex
why some are being thrown in the undeliverable folder, and some are going through. Now Google searches have turned up nothing that helps, and most keep talking about a network congestion, but why is it so selective as to what goes through and what doesn't. Dragging the emails that can't

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
posted, and I can't work out why some are being thrown in the undeliverable folder, and some are going through. Now Google searches have turned up nothing that helps, and most keep talking about a network congestion, but why is it so selective as to what goes through and what doesn't

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Russ Michaels
how many emails are you sending per day through gmail, there are limits, and it might be blocking you if you have exceeded them. For google Apps it is 500 per day per user. -- Russ Michaels www.bluethunderinternet.com : Business hosting services solutions www.cfmldeveloper.com:

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Andrew Scott
That is still not an issue, this has been working for years. It has only just started to have these problems, and again I tried re-sending one at a time and one at a time fails. Like I said Google says that the error I pasted is a network bottle neck, as the reason is it times out waiting for a

Re: Anyone know how to fix this or why this happening?

2011-08-30 Thread Russ Michaels
you could use wireshark to confirm this is the case, it will show you the commication between coldfusion and google so you can see if cf is getting a response. On Wed, Aug 31, 2011 at 1:22 AM, Andrew Scott andr...@andyscott.id.auwrote: That is still not an issue, this has been working for

  1   2   3   4   5   6   7   8   9   10   >