Re: CF11 mail issue

2014-12-16 Thread Gonzo Rock
Pressing on I coded up a simple template to send a simple email using wrote: > > Good idea... yes... both machines can initiate a telnet connection in that > it gets to the opening prompt, Welcome to Road Runner... and waits for > instructions. I type QUIT and the session terminates. > > On Tue,

Re: CF11 mail issue

2014-12-16 Thread Gonzo Rock
Good idea... yes... both machines can initiate a telnet connection in that it gets to the opening prompt, Welcome to Road Runner... and waits for instructions. I type QUIT and the session terminates. On Tue, Dec 16, 2014 at 5:10 PM, Russ Michaels wrote: > > > can you telnet into the mail server

Re: CF11 mail issue

2014-12-16 Thread Russ Michaels
can you telnet into the mail server on port 25 from the cf11 machine ? On Wed, Dec 17, 2014 at 12:11 AM, Gonzo Rock wrote: > > > I am setting up a new CF11 server on my network. Have a CF7 running > currently too. I am having trouble getting the CF11 server to verify a mail > server connection.

Re: cfmail causing problems for our server

2014-12-16 Thread Will Swain
Mandrill is excellent. We've used it for a while. Just whack their smtp server into the cf admin and off you go. It's more customisable than that of course, but the base function of running your mail through their servers should do the job. On 10 December 2014 at 23:35, Russ Michaels wrote: > >

Re: Work Around for SSLv3 Vulnerability?

2014-12-15 Thread Michael Grant
Well thank you for writing this. Hopefully it helps others. On Saturday, December 13, 2014, Wil Genovese wrote: > > Well you question was one of the reasons I did the research. We had > several clients at CF Webtools and a few at other hosting companies that > needed to know for sure how CFHTTP

Re: Work Around for SSLv3 Vulnerability?

2014-12-13 Thread Wil Genovese
Well you question was one of the reasons I did the research. We had several clients at CF Webtools and a few at other hosting companies that needed to know for sure how CFHTTP and SSL was working. Regards, Wil Sent from a hand held device that autocorrects my typos in a mist humorous fash

Re: Work Around for SSLv3 Vulnerability?

2014-12-13 Thread Michael Grant
Wow I could've used this four weeks ago! Haha. Good article. On Monday, December 8, 2014, Wil Genovese wrote: > > I just published blog posts today on how to prevent ColdFusion from > falling back to SSLv3 with CFHTTP. > > > > http://www.trunkful.com/index.cfm/2014/12/8/Preventing-SSLv3-Fallbac

Re: SQLServer JDBC Driver - maximum number of connections

2014-12-12 Thread Byron Mann
One thing maybe to check is the DSN is set to the "maintain connection", could be the upgrade did not bring this over which might account to a large number of sql connections being made. The only times I have seen a similar error were with session limits on a firewall and a windows OS reaching ou

Re: postParametersLimit in CF11

2014-12-12 Thread Russ Michaels
well you can put it in perspective, the default asp.net setting is 5000, which is obviously a lot higher than CF's 100 you are probably going to be safe putting it up higher, but you should tell your client to make sure they have something in place to stop that form being abused and DOS'ed On Fri

Re: postParametersLimit in CF11

2014-12-12 Thread Chris
Nathan, Russ, thanks for the comments. The application with all the post parameters definitely needs a rewrite. Our involvement is only in hosting it. The current owners want it to run ... and we have to justify why the settings should or should not be modified . best regards, Chris On Thu, De

Re: postParametersLimit in CF11

2014-12-11 Thread Russ Michaels
Also you need to consider why this limit exits. What would happen if your form with 2000 fields was dos attacked for example, have you tested it under load? If I wanted to take someone's site down, a form like That would be an easy target. On Thu, Dec 11, 2014 at 18:36 PM, Nathan Strutz wrote:

Re: postParametersLimit in CF11

2014-12-11 Thread Nathan Strutz
I'm sorry that I don't have an answer to your question or a solution to your problem, but I just have to ask, is it possible that your application just needs to adapt to what is a fairly standard security practice across the industry? It sounds like one of those jokes that ends in "just because yo

RE: Creating columns that aren't included in a query result

2014-12-11 Thread William Seiter
to 'row result values (possibly numeric?)'. -- William Seiter -Original Message- From: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Thursday, December 11, 2014 5:42 AM To: cf-talk Subject: Re: Creating columns that aren't included in a query result William, your s

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Ah! Thanks That did it. Here is the final output http://2.bp.blogspot.com/-oKsNq87XFTA/VInEGGQsv1I/DzE/wY-FE_hTcIg/s1600/finalOutput.png Thanks so much to all of you! > Since you’re handling all of the the counts in the case statements, > you don’t need to sele

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Since you’re handling all of the the counts in the case statements, you don’t need to select the increasedKnowlege column value, order or group by it anymore. Your SQL should be: SELECT Sum(case increasedKnowledge WHEN 'agree' then 1 else 0 end) as 'agree', Sum(case inc

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Good idea. I saved an image here: http://4.bp.blogspot.com/-dGtVwwkzAvc/VIm9VwuYORI/Dy0/PDbajG1LnEU/s1600/output.png So what I need to do is get the values in the appropriate cells on the table. When I loop or output with a query, I get too many cells. >there are many browser plugins

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Steve Milburn
Start by showing us the code your using to display the results of your query. On Thu, Dec 11, 2014 at 10:13 AM, Torrent Girl wrote: > > > Steve now my output is off. How do I handle that? > > (I wish I could attach images to my posts) > > > > > >Your task shouldn't be to handle values that were

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Russ Michaels
there are many browser plugins where you can take screenshots and post online and send a link. Why not use one of those ? On Thu, Dec 11, 2014 at 3:13 PM, Torrent Girl wrote: > > Steve now my output is off. How do I handle that? > > (I wish I could attach images to my posts) > > > > > >Your ta

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Steve now my output is off. How do I handle that? (I wish I could attach images to my posts) >Your task shouldn't be to handle values that were not returned from the >query. You need to think of a way to make sure they are returned. You >should be able to accomplish that by using case statem

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Thanks Steve! Here is my final query that worked: select increasedKnowledge, Sum(case increasedKnowledge WHEN 'agree' then 1 else 0 end) as 'agree', Sum(case increasedKnowledge WHEN 'disagree' then 1 else 0 end) as 'disagree', Sum(case increasedKnowledge WHEN 'Neither Agree nor Disagree' then

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Oh sorry I missed that :) > Please see my last response. In your situation you should use Steve’s > example. My SQL example was just that - an example. It doesn’t > reflect your actual column names. > > Jon > > > On Dec 11, 2014, at 8:50 AM, Torrent Girl > wrote: > ~~

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Jon Clausen
Please see my last response. In your situation you should use Steve’s example. My SQL example was just that - an example. It doesn’t reflect your actual column names. Jon On Dec 11, 2014, at 8:50 AM, Torrent Girl wrote: > > I get the following error on Jon's example: > > Msg 207, Level

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
I get the following error on Jon's example: Msg 207, Level 16, State 1, Line 2 Invalid column name 'disagree'. Disagree is not a column. It's the value. > Yes, using Steve’s example query as a foundation. I assumed you were > using a relational model with separate questions/answer tables bu

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
William, your suggestion is what I went with it initially: Here is my code: #getimprovedCompetence.TOTALIMPROVEDCOMPETENCE# 0 The problem is for the cells that are supposed to have a value, it puts ALL of the values in these cells. This is where I got stuck. >It seems illogical t

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
Jon, there is only one table. There isn't one table for the responses and one for the questions. > I could be wrong, but it seems like you might be making it harder than > it needs to be from the query side, if you are looking for totals of > responses by question. You might be able to just

Re: Creating columns that aren't included in a query result

2014-12-11 Thread Torrent Girl
>If you implement the query syntax I sent earlier you will have a 0 in the >disagree column. > > > >> Ok thanks I will try that. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
Yes, using Steve’s example query as a foundation. I assumed you were using a relational model with separate questions/answer tables but that is not the case. You won’t need joins or conversions. Steve’s "Sum(case response = 'agree' then 1 else 0 end) as agree”… query is what you are looking

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Steve Milburn
If you implement the query syntax I sent earlier you will have a 0 in the disagree column. On Wednesday, December 10, 2014, Torrent Girl wrote: > > I am looking for how many people answered "disagree" etc. > > BUT, if no one answered "disagree" I want to be able to put a 0 in the > disagree

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
I am looking for how many people answered "disagree" etc. BUT, if no one answered "disagree" I want to be able to put a 0 in the disagree column. The problem is if no one answered "disgree" I have to fake it which is where I am stuck. ~

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
>can you show us the actualy query, as a query shouldn't return nothing, it >should return 0 if the count is 0 >The only instance where you should get nothing is if there are no rows of >data returned > >On Thu, Dec 11, 2014 at 12:23 AM, Torrent Girl >wrote: > >> Here is my query: select overA

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Jon can I do this even though "disagree", etc. are columns but actual values? > I could be wrong, but it seems like you might be making it harder than > it needs to be from the query side, if you are looking for totals of > responses by question. You might be able to just use a GROUP BY > cl

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Steve Milburn
Your task shouldn't be to handle values that were not returned from the query. You need to think of a way to make sure they are returned. You should be able to accomplish that by using case statements in your query. Syntax may vary depending on your database, but should be something like this (ass

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Russ Michaels
can you show us the actualy query, as a query shouldn't return nothing, it should return 0 if the count is 0 The only instance where you should get nothing is if there are no rows of data returned On Thu, Dec 11, 2014 at 12:23 AM, Torrent Girl wrote: > > Not quite. The value returned in a COUNT

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
Are you looking for a count of responses, or the actual value, though? In my test I used a bit datatype on the column so count() is all I needed for my example. If you’ve got a text value of ‘YES’ or something else, though, you could use a sub-function or a conditional inside count to conver

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
disagree is not an actual column it is a value. I could be wrong, but it seems like you might be making it harder than > it needs to be from the query side, if you are looking for totals of > responses by question. You might be able to just use a GROUP BY > clause to handle it. > > SELECT

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Jon Clausen
I could be wrong, but it seems like you might be making it harder than it needs to be from the query side, if you are looking for totals of responses by question. You might be able to just use a GROUP BY clause to handle it. SELECT questions.id,questions.question, count(r.disa

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
: Torrent Girl [mailto:moniqueb...@gmail.com] Sent: Wednesday, December 10, 2014 4:29 PM To: cf-talk Subject: Re: Creating columns that aren't included in a query result Russ there is only one loop. It's a very simple table with a static first row with headers and a simple query loop to a

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Sorry let me try that again...what I meant was Not quite. The value returned is a COUNT of the number of each response (sorry I should have said that earlier. So, if no one answered "disagree" it is not returned, but in the loop I want it represented as 0. :) > > > > >If I understa

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Torrent Girl
Not quite. The value returned in a COUNT of the number of each response (sorry I should have said that earlier. So, it no one answered "disagree" it is not returned, but in the loop I want it represented as 0. >If I understand correctly > >Select response1 from [table] > >The resulting Quer

RE: Creating columns that aren't included in a query result

2014-12-10 Thread William Seiter
If I understand correctly Select response1 from [table] The resulting Query can equal 'response1' == 'Agree' or 'Disagree' or 'Neither Agree nor Disagree' or 'Strongly Agree' or 'Strongly Disagree' Then you loop over the results from the query and (I am guessing here) you want to place an 'X' i

Re: Creating columns that aren't included in a query result

2014-12-10 Thread Russ Michaels
why do you need the 2nd loop rather than simply outputting the value of the query column from the main loop? On Thu, Dec 11, 2014 at 12:02 AM, Torrent Girl wrote: > > I am hoping I can explain this correctly. > > I have a table which houses responses to a survey. > > The columns can have any of

Re: CF 11 Admin Panel

2014-12-10 Thread Russ Michaels
site Railo compatible too. 5. On Wed, Dec 10, 2014 at 3:30 PM, Steve LaBadie wrote: > > Thanks for the link Russ > > After I did the install I went ahead and did the updates and it crash CF. > I had to uninstall and re-install. Any ideas or advice? > > Steve L

Re: cfmail causing problems for our server

2014-12-10 Thread Russ Michaels
if it is just bulk SMTP you need then www.mandrill.com allows 12,000 per month for free. For something more advanced try www.sendgrid.com, they also offer an API which allows you to send emails without using CFMAIL or SMTP which has its benefits. If you want an actual mailing list manager then ma

Re: Sending SMS

2014-12-10 Thread richpaul7 .
you're welcome. Yea this has been working well for us for years, to send out alerts to our registered users. On Wed, Dec 10, 2014 at 3:09 PM, UXB Internet wrote: > >> Verizon: vtext.com >> Nextel: messaging.nextel.com >> Sprint: messaging.sprintpcs.com >> Cingular: cingularme.com >>

RE: Sending SMS

2014-12-10 Thread UXB Internet
> Verizon: vtext.com > Nextel: messaging.nextel.com > Sprint: messaging.sprintpcs.com > Cingular: cingularme.com > Virgin Mobile: vmobl.com > T-Mobile: tmomail.net Thanks this was helpful. Dennis Powers UXB Internet - A website Design and Hosting Company P.O. Box 6028, Wolcott

Re: bypassing the site-wide error handler

2014-12-10 Thread Chris
Thanks Dave, Rodney. That really helped. It turned out our issue was the same cfscript in the application's header and the sitewide error handler's header. When the second instance of cfscript tried to run, it broke the error handler, thus presenting the raw error to the user. best, Chris On M

RE: cfmail causing problems for our server

2014-12-10 Thread Dave Long
Thanks, everyone. I'll check them out. -Original Message- From: Rob Voyle [mailto:robvo...@voyle.com] Sent: Wednesday, December 10, 2014 12:42 PM To: cf-talk Subject: RE: cfmail causing problems for our server I use and like mail chimp Rob Sent from my Verizon Wireless 4

RE: cfmail causing problems for our server

2014-12-10 Thread Rob Voyle
I use and like mail chimp Rob Sent from my Verizon Wireless 4G LTE smartphone Original message From: Dave Long Date:12/10/2014 12:23 PM (GMT-06:00) To: cf-talk Subject: cfmail causing problems for our server My customer's site allows interested visitors to subscribe to

Re: cfmail causing problems for our server

2014-12-10 Thread Jon Clausen
). Then you can also ensure CAN-SPAM compliance as well. If you’re using a CMS to send the mail through, then you might need to create a module to hook in to the main mailing list feature, but the long-term result would be better. Jon On Dec 10, 2014, at 1:23 PM, Dave Long wrote: > &

Re: cfmail causing problems for our server

2014-12-10 Thread Steve Milburn
Amazon SES was made for just this type of scenario. On Wed, Dec 10, 2014 at 1:23 PM, Dave Long wrote: > > My customer's site allows interested visitors to subscribe to intermittent > e-mail notifications regarding his annual event. My hosting provider tells > me that use of cfmail to contact hi

RE: cfmail causing problems for our server

2014-12-10 Thread Robert Harrison
Use a mail relay like STMP.com. Just change the smtp server for your mail blast to send through the relay. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: Dave Long [mailt

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
[mailto:jon_clau...@silowebworks.com] Sent: Wednesday, December 10, 2014 10:05 AM To: cf-talk Subject: Re: Eliminating CFM extensions in IIS 7 You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your requests for that path, your rule would look something

RE: CF 11 Admin Panel

2014-12-10 Thread Steve LaBadie
Thanks for the link Russ After I did the install I went ahead and did the updates and it crash CF. I had to uninstall and re-install. Any ideas or advice? Steve LaBadie, Web Manager East Stroudsburg University 570-422-3999 slaba...@esu.edu -Original Message- From: Russ Michaels

RE: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Robert Harrison
-Original Message- From: Jon Clausen [mailto:jon_clau...@silowebworks.com] Sent: Wednesday, December 10, 2014 10:05 AM To: cf-talk Subject: Re: Eliminating CFM extensions in IIS 7 You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your

Re: Eliminating CFM extensions in IIS 7

2014-12-10 Thread Jon Clausen
You need to specify a rewrite handler for everything in the /news/ path. Assuming /news.cfm handles all of your requests for that path, your rule would look something like this: If you a

Re: Problem returning JSON from CFCS

2014-12-09 Thread Steve Durette
Ok now I feel really stupid. Weeks ago I decided that I needed an empty Aplication.cfc in the directory with the CFCs. I was in the command line so I decided to do a ECHO. > Application.cfc and that would have given a file with a blank line. However I missed the period right after echo and the

RE: test

2014-12-09 Thread robert
Test from address 1 -Original Message- From: "Robert Harrison" Sent: Tuesday, December 9, 2014 5:10pm To: "cf-talk" Subject: RE: test Test from address2. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direc

RE: test

2014-12-09 Thread Robert Harrison
Test from address2. Robert Harrison Full Stack Developer AIMG rharri...@aimg.com Main Office: 704-321-1234 ext.121 Direct Line: 516-302-4345 www.aimg.com -Original Message- From: rob...@creativecyberspace.com [mailto:rob...@creativecyberspace.com] Sent: Tuesday, December 09, 2014 5:10

Re: Problem returning JSON from CFCS

2014-12-09 Thread Byron Mann
So the http response actually has "Echo is on"? Maybe there is just some additional output occurring in the CFC or Application.cfc that is outputting that string prior to the JSON response. On Tue, Dec 9, 2014 at 4:48 PM, Steve Durette wrote: > > Hi all, > I'm having a problem returning JSON f

Re: GC overhead limit exceeded

2014-12-09 Thread Byron Mann
Could this maybe be a difference in the jvm.config upon upgrade? I have not upgraded anything to CF11, but previous versions were basically a new install. So the memory limits in your prior version may have been tuned more appropriately to your application.

Re: CF 11 Admin Panel

2014-12-09 Thread Russ Michaels
http://www.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/cf11-lockdown-guide.pdf On Tue, Dec 9, 2014 at 1:24 PM, Steve LaBadie wrote: > > We have just come out of the dark ages from a Window 2003 server with CF > MX7 to Windows 2012 R2 with CF11 standard. I just completed the in

Re: bypassing the site-wide error handler

2014-12-08 Thread Rodney Enke
The site wide error handler will not run if there is a local error handler, such as CFTRY/CFCATCH or CFERROR, unless the CFTRY/CFCATCH block rethrows the error. - Rodney On Mon, Dec 8, 2014 at 8:52 PM, Dave Watts wrote: > > > Hi, when can an application bypass the CF v9 site-wide error handle

Re: bypassing the site-wide error handler

2014-12-08 Thread Dave Watts
> Hi, when can an application bypass the CF v9 site-wide error handler? > > We host an app, that uses cftry/catch, but that appears to not handle the > errors correctly. The errors do not trigger the site-wide error handler, and > the errors are displayed to the users. > > The site-wide error ha

Re: Work Around for SSLv3 Vulnerability?

2014-12-08 Thread Wil Genovese
I just published blog posts today on how to prevent ColdFusion from falling back to SSLv3 with CFHTTP. http://www.trunkful.com/index.cfm/2014/12/8/Preventing-SSLv3-Fallback-in-ColdFusion http://www.coldfusionmuse.com/index.cfm/2014/12/8/colfusion-jvm-versions-sslv3-tls Enjoy! Wil Wil Ge

Re: GC overhead limit exceeded

2014-12-08 Thread Don
I created another page ( that is not accessing the DB ) under the root directory and was able to access this fine on the domain whilst the site was still down.. It wasn't until I ran the application which is accessing the DB that we are experiencing that site blowing up ( massive lag ). So C

RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
al Message- From: Don [mailto:danfar...@hotmail.com] Sent: Monday, December 08, 2014 1:12 PM To: cf-talk Subject: Re: GC overhead limit exceeded >Dan, > >I was just reading this post by CF Gurur Mike B. It has some cf10 specific >tips that might be applicable to you si

Re: GC overhead limit exceeded

2014-12-08 Thread Don
>Dan, > >I was just reading this post by CF Gurur Mike B. It has some cf10 specific >tips that might be applicable to you since your problem is OOM. > >http://www.cfwhisperer.com/post.cfm/coldfusion-10-enhanced-performance-setti >ngs > >-mark Cheers Mark. We are also looking at the database ( MS

RE: GC overhead limit exceeded

2014-12-08 Thread Mark A Kruger
www.coldfusionmuse.com O: 402.932.3318 E: mkru...@cfwebtools.com Skype: markakruger -Original Message- From: Don [mailto:danfar...@hotmail.com] Sent: Saturday, December 06, 2014 4:12 PM To: cf-talk Subject: Re: GC overhead limit exceeded I guess this application ran fine under previous Coldfusion

Re: GC overhead limit exceeded

2014-12-06 Thread Don
I guess this application ran fine under previous Coldfusion incarnations. It was only after the upgrade to CF 11 that the problems started. ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Ant

Re: Eclipse & CFEclipse

2014-12-04 Thread Matt Quackenbush
On Thu, Dec 4, 2014 at 10:59 AM, Phillip Vector wrote: > > Just to point out... > > On Dec 6, 2007 6:29 AM, "Tom Chiverton" > wrote: > > Yeah.. He did. > > On Thu, Dec 4, 2014 at 8:57 AM, Matt Quackenbush > wrote: > > > > >1. Nathan didn't reply to a 7-yr-old message. > Seriously? Just to

Re: Eclipse & CFEclipse

2014-12-04 Thread Phillip Vector
Just to point out... On Dec 6, 2007 6:29 AM, "Tom Chiverton" wrote: Yeah.. He did. On Thu, Dec 4, 2014 at 8:57 AM, Matt Quackenbush wrote: > >1. Nathan didn't reply to a 7-yr-old message. >2. Gmail != Google Inbox > > http://www.google.com/inbox/ > > On Thu, Dec 4, 2014 at 10:41 AM,

Re: Eclipse & CFEclipse

2014-12-04 Thread Matt Quackenbush
1. Nathan didn't reply to a 7-yr-old message. 2. Gmail != Google Inbox http://www.google.com/inbox/ On Thu, Dec 4, 2014 at 10:41 AM, <> wrote: > > >>BTW, I have invites to anyone who wants to try Google Inbox. Yes, you > too > can have the opportunity to reply to seven year old threads.

Re: Eclipse & CFEclipse

2014-12-04 Thread Claude Schnéegans
>>BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. This one also is at least 7 years old ;-) Any one can get a Gmail address, no invite is necessary ;-) ~~~

Re: Eclipse & CFEclipse

2014-12-04 Thread Nathan Strutz
Yeah, you've got to hit the sweep button as soon as you get Inbox to clear out all your old stuff. BTW, I have invites to anyone who wants to try Google Inbox. Yes, you too can have the opportunity to reply to seven year old threads. Nathan Strutz On Thu Dec 04 2014 at 8:57:53 AM Matt Quackenbu

Re: Eclipse & CFEclipse

2014-12-04 Thread Matt Quackenbush
Lol. That's awesome. :-) On Dec 4, 2014 7:55 AM, "Casey Dougall" wrote: > > Omg, this is what I get for archiving mail... > > I'm totally not going to do that anymore. > > Stupid inbox.google.com made it so easy to archive we hen I switched back > to gmail unread messages from eons ago made the

Re: Eclipse & CFEclipse

2014-12-04 Thread Casey Dougall
Omg, this is what I get for archiving mail... I'm totally not going to do that anymore. Stupid inbox.google.com made it so easy to archive we hen I switched back to gmail unread messages from eons ago made there way to the top, front and center On Thu, Dec 4, 2014, 8:50 AM Matt Quackenbush wro

Re: Eclipse & CFEclipse

2014-12-04 Thread Matt Quackenbush
You realize that this thread is over 7 YEARS old, right? Lol On Dec 4, 2014 7:38 AM, "Casey Dougall" wrote: > > We've gone down this road many a time, and I was a hard convert when > coldfusion builder 1.0 came out myself but it really didn't take long to > get use to. > Today I switch between C

Re: Eclipse & CFEclipse

2014-12-04 Thread Casey Dougall
We've gone down this road many a time, and I was a hard convert when coldfusion builder 1.0 came out myself but it really didn't take long to get use to. Today I switch between CB3 and sublimetext depending on what I'm working on. Svn is best when you tie it into continuous integration where your

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
I run a financial service site that has very complex pathways running through it. This has saved me an enormous amount of time trying to figure out how a series of user actions could uncover some sort of hole in the code. This thread got me tinkering and I did some tweaking. For starters when I

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
>No I don't. It all sits in memory unused. But if an error occurs this >info gets dumped out via my error handler where it can be used >post-mortem. Generally my error handler loops over a pre-defined list of >scopes and dumps them all out. Depending on the setting I've made, the >dump is eith

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
No I don't. It all sits in memory unused. But if an error occurs this info gets dumped out via my error handler where it can be used post-mortem. Generally my error handler loops over a pre-defined list of scopes and dumps them all out. Depending on the setting I've made, the dump is either to

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
Great! And these sessions structures, do you write the data to the DB onSessionEnd ? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
ond 2. cfid+"_"+cftoken values 3. The complete url including query string (built for another purpose and re-used here). 4. the form variables struct created above 5. The cgi variables struct created above. Lastly I arrayAppend the 1D array created above to the 2d session-scop

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Maureen
If I had to diagnose this, I would start with making sure that none of the function calls or cfinvokes are endlessly recursing. Then I would make sure none of the database queries are hanging. On Thu, Nov 27, 2014 at 9:03 PM, Don wrote: > > Got this custom e-commerce app that is basically going

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Russ Michaels
FR is indeed meant to run on a production server, and I was not saying otherwise. But you can also install it on dev to help you with the debugging and load testing as well. I think you are incorrectly assuming that FusionReactor is a debugging and load testing tool, which is not the case. FR is

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Maureen
Sounds like they need a new host. Is that an option? On Tue, Dec 2, 2014 at 4:33 PM, Don wrote: > >> Sounds like it's time to move on. >> >> On 12/2/14, 1:11 PM, Don wrote: >> > I'm not recieving much in the way of information from the host >> anymore. Seems they might not like me poking around

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
> Sounds like it's time to move on. > > On 12/2/14, 1:11 PM, Don wrote: > > I'm not recieving much in the way of information from the host > anymore. Seems they might not like me poking around too much I > dont know. lol, well that's exactly what the developer of their e-commerce software

Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
Sounds like it's time to move on. On 12/2/14, 1:11 PM, Don wrote: > I'm not recieving much in the way of information from the host anymore. Seems > they might not like me poking around too much I dont know. ~| Order the A

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
>You can also configure CF to log slow pages and if you have enterprise, >server monitor can log/alert you to slow/hung requests. > > > >On 12/2/14, 10:52 AM, Money Pit wrote: Another good suggestion. But I'm not recieving much in the way of information from the host anymore. Seems they might n

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
>A breadcrumb array kept in the session scope has been key. Stores everything >the >does and gets dumped to the error file. Am curious as to what you did there. Would you mind sharing how you did that? ( I dont need code ) just your idea(s) explained with some more detail. ~

Re: how to diagnose a potential bottleneck

2014-12-02 Thread .jonah
You can also configure CF to log slow pages and if you have enterprise, server monitor can log/alert you to slow/hung requests. On 12/2/14, 10:52 AM, Money Pit wrote: > Russ Michaels wrote: >> doing debugging and load testing on a live production server is generally > a >> bad idea. > On gener

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
If you want code samples on the error dumping stuff let me know. I worked something up for an article years ago but its grown up since. A breadcrumb array kept in the session scope has been key. Stores everything the user does and gets dumped to the error file. --m@-- ~~~

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
>Russ Michaels wrote: >> doing debugging and load testing on a live production server is generally >a >> bad idea. > >On general principles, sure... although I'd say that a diagnostic reporter >like F-R belongs first and foremost on a production box. > >To the OP... it sounds like you are stuck, s

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Money Pit
Russ Michaels wrote: > doing debugging and load testing on a live production server is generally a > bad idea. On general principles, sure... although I'd say that a diagnostic reporter like F-R belongs first and foremost on a production box. To the OP... it sounds like you are stuck, so how goo

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
>This does not necessarily mean anything Don. It could simply mean migration >from eden to persistent memory where GC recovers in due course. It's the >overall pattern of GC recovery that means the most when talking about gross >numbers. You should see a saw tooth pattern over time with steep dro

RE: how to diagnose a potential bottleneck

2014-12-02 Thread Mark A Kruger
tmail.com] Sent: Tuesday, December 02, 2014 9:36 AM To: cf-talk Subject: Re: how to diagnose a potential bottleneck Doesnt seem anyone noticed my reply so I'll post this again... I noticed a sharp drop in JVM memory during this process ( it all happened in about one minute ) Say from the a

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Don
Doesnt seem anyone noticed my reply so I'll post this again... I noticed a sharp drop in JVM memory during this process ( it all happened in about one minute ) Say from the average JVM Freememory of : 255 Megs Dropping to around : 30 Megs Any thoughts or ideas? It did come back up to normal le

Re: how to diagnose a potential bottleneck

2014-12-02 Thread Russ Michaels
no, you install FR onto your Railo or CF server, and it integrates with it by installing an FR JAR file. If you follow the manual installation instructions you will get a better idea how it works, On Tue, Dec 2, 2014 at 5:25 AM, Don wrote: > > >There is absolutely no restrictions whatsoever on

Re: how to diagnose a potential bottleneck

2014-12-01 Thread .jonah
He means you can install it on your production, testing, or dev server or whatever. On 12/1/14, 9:25 PM, Don wrote: >> There is absolutely no restrictions whatsoever on where FR can be >> installed, it would be pretty useless if that was the case, you can install >> it on any supported OS, FR do

Re: how to diagnose a potential bottleneck

2014-12-01 Thread Don
>There is absolutely no restrictions whatsoever on where FR can be >installed, it would be pretty useless if that was the case, you can install >it on any supported OS, FR does not know or care what you are using that >machine for. So how does that work then? You point FR to a domain? i thought i

<    1   2   3   4   5   6   7   8   9   10   >