Re: Error please site is down for a month now moms site

2014-06-14 Thread Matthew Smith
cffunction access=public name=qry_unlock_items_for_paypal output=no returntype=void hint=Unlocks items for paypal. cfargument name=app_user_id type=numeric required=no default=0 cfargument name=cfuserid type=string required=no default= cfif arguments.app_user_id neq 0 cfquery

Re: Error please site is down for a month now moms site

2014-06-14 Thread M.A. Kruger
Matthew, the /cfcomponent tag at the end of the code should be removed OR a cfcomponent tag should be added to the top of the file. the two tags serve as bookends and work together. one cannot exist without the other. Sent from my iPhone On Jun 14, 2014, at 8:14 AM, Matthew Smith

Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
The web site you are accessing has experienced an unexpected error. Please contact the website administrator. The following information is meant for the website developer for debugging purposes. Error Occurred While Processing Request Context validation error for tag cfcomponent. The end tag

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
This seems pretty clear... The end tag /cfcomponent encountered on line 1380 at column 3 requires a matching start tag. On Fri, Jun 13, 2014 at 4:11 PM, Matthew Smith chedders...@gmail.com wrote: The web site you are accessing has experienced an unexpected error. Please contact the

Re: Error please site is down for a month now moms site

2014-06-13 Thread M.A. Kruger
are you a ColdFusion programmer? this is a syntax error. it's fixable and it is probably NOT mysterious :) Sent from my iPhone On Jun 13, 2014, at 6:11 PM, Matthew Smith chedders...@gmail.com wrote: The web site you are accessing has experienced an unexpected error. Please contact the

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
As a side note, you should probably turn off verbose debugging as well on a live site. :) On Fri, Jun 13, 2014 at 4:19 PM, M.A. Kruger mkru...@cfwebtools.com wrote: are you a ColdFusion programmer? this is a syntax error. it's fixable and it is probably NOT mysterious :) Sent from my

Re: Error please site is down for a month now moms site

2014-06-13 Thread richpaul7 .
Or at least limit it to your IP On Fri, Jun 13, 2014 at 4:24 PM, Phillip Vector vec...@mostdeadlygame.com wrote: As a side note, you should probably turn off verbose debugging as well on a live site. :) ~| Order the Adobe

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
It has it though. On Jun 13, 2014, at 19:13, Phillip Vector vec...@mostdeadlygame.com wrote: This seems pretty clear... The end tag /cfcomponent encountered on line 1380 at column 3 requires a matching start tag. On Fri, Jun 13, 2014 at 4:11 PM, Matthew Smith chedders...@gmail.com

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
It has it. Been doing this 15 years. On Jun 13, 2014, at 19:19, M.A. Kruger mkru...@cfwebtools.com wrote: are you a ColdFusion programmer? this is a syntax error. it's fixable and it is probably NOT mysterious :) Sent from my iPhone On Jun 13, 2014, at 6:11 PM, Matthew Smith

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
I highly doubt that. But you should know then that we need to see the whole code in order to see if what you are saying is correct. So copy the full file code here and let's take a look. On Fri, Jun 13, 2014 at 4:48 PM, Matthew Smith chedders...@gmail.com wrote: It has it. Been doing this 15

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
cffunction access=public name=f_qry_ordersGet output=no returntype=query cfargument name=orderKeyList type=string required=no default= cfargument name=personKeyList type=string required=no default= cftry cfquery name=f_qry_ordersGet datasource=#variables.datasource# SELECT o.tablePK

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
*sigh* This is the code for the function. Please show the full code including the following lines.. 240 : /cffunction 241 : cffunction name=f_unlock_items_15_ minutes access=public returntype=void 242 : cfobject component= /cfcs/qry-todatabase name=qry / 243 : cfset

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
/cffunction cffunction name=unlock_items access=public returntype=void cfargument name=app_user_id type=numeric required=no default=0 cfargument name=cfuserid type=string required=no default= cfobject component=#request.cfcpath#qrystodatabase name=qry / cfset qry_unlock_items_for_paypal =

Re: Error please site is down for a month now moms site

2014-06-13 Thread Bryan Stevenson
Matt...post all code from the opening CFCOMPONENT tag to the closing CFCOMPONENT tag All the stuff you have posted so far should be BETWEEN those tags *Bryan Stevenson*B.Comm. President CEO Electric Edge Systems Group Inc. - makers of FACTS^(TM) phone: 250.480.0642 cell: 250.920.8830 e-mail:

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
That is some of it.. Not all of it. If you aren't willing to help us, then I don't see any way to help you. On Fri, Jun 13, 2014 at 5:23 PM, Matthew Smith chedders...@gmail.com wrote: /cffunction cffunction name=unlock_items access=public returntype=void cfargument name=app_user_id

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
cffunction name=unlock_items access=public returntype=void cfargument name=app_user_id type=numeric required=no default=0 cfargument name=cfuserid type=string required=no default= cfobject component=#request.cfcpath#qrystodatabase name=qry / cfset qry_unlock_items_for_paypal =

Re: Error please site is down for a month now moms site

2014-06-13 Thread Matthew Smith
cffunction access=public name=qry_unlock_items_for_paypal output=no returntype=void hint=Unlocks items for paypal. cfargument name=app_user_id type=numeric required=no default=0 cfargument name=cfuserid type=string required=no default= cfif arguments.app_user_id neq 0 cfquery

Re: Error please site is down for a month now moms site

2014-06-13 Thread Phillip Vector
I see the problem.. You don't have a cfcomponent... You want to put one in. :) On Fri, Jun 13, 2014 at 5:40 PM, Matthew Smith chedders...@gmail.com wrote: cffunction name=unlock_items access=public returntype=void cfargument name=app_user_id type=numeric required=no default=0

Re: Error please site is down for a month now moms site

2014-06-13 Thread M.A. Kruger
Matthew, cfcomponent came along with CF6. that was more like 12 or 13 years ago. Sent from my iPhone On Jun 13, 2014, at 6:51 PM, Phillip Vector vec...@mostdeadlygame.com wrote: I highly doubt that. But you should know then that we need to see the whole code in order to see if what you

Vivio Down?

2013-06-20 Thread Josh Nathanson
Anyone here host on Viviotech? My site's down and their main website isn't responding. -- Josh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion

Re: Vivio Down?

2013-06-20 Thread Wil Genovese
site's down and their main website isn't responding. -- Josh ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http

Re: Vivio Down?

2013-06-20 Thread Josh Nathanson
...@trunkful.com www.trunkful.com On Jun 20, 2013, at 3:35 PM, Josh Nathanson joshnathan...@gmail.com wrote: Anyone here host on Viviotech? My site's down and their main website isn't responding. -- Josh ~| Order

Re: Vivio Down?

2013-06-20 Thread Bryan Stevenson
www.trunkful.com On Jun 20, 2013, at 3:35 PM, Josh Nathanson joshnathan...@gmail.com wrote: Anyone here host on Viviotech? My site's down and their main website isn't responding. -- Josh ~| Order the Adobe Coldfusion Anthology

Re: Vivio Down?

2013-06-20 Thread Wil Genovese
, 2013, at 3:35 PM, Josh Nathanson joshnathan...@gmail.com wrote: Anyone here host on Viviotech? My site's down and their main website isn't responding. -- Josh ~| Order the Adobe Coldfusion Anthology now

RE: Vivio Down?

2013-06-20 Thread Eric Bourland
I'm on Vivio and my sites are still online. I'm able to remote in to my Windows server. Eric -Original Message- From: Wil Genovese [mailto:jugg...@trunkful.com] Sent: Thursday, June 20, 2013 4:37 PM To: cf-talk Subject: Re: Vivio Down? Yes - I just lost a few client sites too Wil

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-17 Thread Scott Brady
anything about the drop down menus vs calendar selection. This is more of a UI/UX preference from someone that isn't a customer. Visually I think the calendar is prettier, functionally I think it's more of a PITA for customers. We allow you search preset date ranges as well (last month

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-17 Thread Matt Blatchley
something less useful. (my opinion obviously). Start Date to End Date: using a drop down for each Month/Day/Year to Month/Day/Year (with validation and CFC's to re-populate the Day based on Number of days in the month) seems more functional than using a visual calendar where the user has to click back

Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread Matt Blatchley
to go with drop down menus with my own Ajax/CFC driven version instead. Now the question has come back to me about adding the Calendar selection instead because I've been told it's more user friendly. When I first started writing it, I implemented the calendar selection and found many issues

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread Maureen
selectors used in setting the date ranges, I decided to go with drop down menus with my own Ajax/CFC driven version instead. Now the question has come back to me about adding the Calendar selection instead because I've been told it's more user friendly. ...snip... With a custom created set

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread .jonah
based on selected date ranges and filtered campaigns. After looking into multiple types of jQuery based calendar selectors used in setting the date ranges, I decided to go with drop down menus with my own Ajax/CFC driven version instead. Now the question has come back to me about adding

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread Matt Blatchley
etc. Never heard anyone say anything about the drop down menus vs calendar selection. This is more of a UI/UX preference from someone that isn't a customer. Visually I think the calendar is prettier, functionally I think it's more of a PITA for customers. We allow you search preset date ranges

Re: Date Ranges: Drop Down Menus vs Calendar Based

2013-04-16 Thread Matt Blatchley
etc. Never heard anyone say anything about the drop down menus vs calendar selection. This is more of a UI/UX preference from someone that isn't a customer. Visually I think the calendar is prettier, functionally I think it's more of a PITA for customers. We allow you search preset date ranges

AW: CF breaks down with error 500 (GC)

2012-06-12 Thread Helwig, Till Helge
, which I deep responsible. A loop over a query contains a set of new cfquery tags. I assume that at some point either the processing in CF or the database gets bored of this and breaks down. ;) I only wonder why the whole server doesn't work anymore afterwards. From the error message it looks like

CF breaks down with error 500 (GC)

2012-06-11 Thread Helwig, Till Helge
Hi guys, I got another problem that I can't figure out by myself unfortunately. Somewhere inside of the huge CF application I'm in charge of an error occurs. Not the standard error you might expect but instead an error 500 that tells me Java threw an exception with the message GC overhead

RE: CF breaks down with error 500 (GC)

2012-06-11 Thread Edward Chanter
To: cf-talk Subject: CF breaks down with error 500 (GC) Hi guys, I got another problem that I can't figure out by myself unfortunately. Somewhere inside of the huge CF application I'm in charge of an error occurs. Not the standard error you might expect but instead an error 500 that tells

Re: CF breaks down with error 500 (GC)

2012-06-11 Thread Russ Michaels
...@saxsys.de] Sent: 11 June 2012 15:44 To: cf-talk Subject: CF breaks down with error 500 (GC) Hi guys, I got another problem that I can't figure out by myself unfortunately. Somewhere inside of the huge CF application I'm in charge of an error occurs. Not the standard error you

Re: hostek - server down?

2012-06-01 Thread Byron Mann
Lead Engineer and Architect Hostmysite.com On Jun 1, 2012 6:48 AM, Kelly Matthews webd...@gmail.com wrote: Odd that they say it's a switch. My site's HTML pages come up fine, the Coldfusion pages are dead. Yet a switch is down? On May 31, 2012, at 8:53 PM, Mike Little wrote: thanks guys

hostek - server down?

2012-05-31 Thread Mike Little
hey guys, anyone else experiencing outage with sites at hostek. they are not replying to any support emails, and cannot get through on phone. mike ~| Order the Adobe Coldfusion Anthology now!

RE: hostek - server down?

2012-05-31 Thread Rick Eidson
They have had a switch problem and were in the middle migrating some servers too... Should be coming back up now... Rick -Original Message- From: Mike Little [mailto:m...@nzsolutions.co.nz] Sent: Thursday, May 31, 2012 7:42 PM To: cf-talk Subject: hostek - server down? hey guys

Re: hostek - server down?

2012-05-31 Thread Mike Little
oh thanks rick. very frustrating getting no response from them all morning. They have had a switch problem and were in the middle migrating some servers too... Should be coming back up now... Rick hey guys, anyone else experiencing outage with sites at hostek. they are not replying to any

Re: hostek - server down?

2012-05-31 Thread Scott Slone
FYI: from the Hostek status page at http://hostek.com/serverstatus.asp Server Update: Servers experiencing issues http://hostek.com/serverstatus.asp?id=238Thursday, May 31, 2012 7:37:26 PM CST We are experiencing some issues with one of our network switches. We are working on getting

Re: hostek - server down?

2012-05-31 Thread Mike Little
thanks guys! FYI: from the Hostek status page at http://hostek.com/serverstatus.asp Server Update: Servers experiencing issues http://hostek.com/serverstatus.asp?id=238Thursday, May 31, 2012 7:37:26 PM CST We are experiencing some issues with one of our network switches. We are working

Re: hostek - server down?

2012-05-31 Thread Kelly Matthews
Yep I have 2 sites down as well. On May 31, 2012, at 8:41 PM, Mike Little wrote: hey guys, anyone else experiencing outage with sites at hostek. they are not replying to any support emails, and cannot get through on phone. mike

Re: hostek - server down?

2012-05-31 Thread Kelly Matthews
Odd that they say it's a switch. My site's HTML pages come up fine, the Coldfusion pages are dead. Yet a switch is down? On May 31, 2012, at 8:53 PM, Mike Little wrote: thanks guys! FYI: from the Hostek status page at http://hostek.com/serverstatus.asp Server Update: Servers

RE: hostek - server down?

2012-05-31 Thread Eric Roberts
My sites are up...not sure if they ever went down as I have been out all day. -Original Message- From: Mike Little [mailto:m...@nzsolutions.co.nz] Sent: Thursday, May 31, 2012 7:53 PM To: cf-talk Subject: Re: hostek - server down? thanks guys! FYI: from the Hostek status page

Re: hostek - server down?

2012-05-31 Thread Kelly
Nevermind. I didn't see the further update saying the switch was replaced. :-) On Thursday, May 31, 2012, Kelly Matthews wrote: Odd that they say it's a switch. My site's HTML pages come up fine, the Coldfusion pages are dead. Yet a switch is down? On May 31, 2012, at 8:53 PM, Mike Little

Re: hostek - server down?

2012-05-31 Thread Kelly
Mine is back up. On Thursday, May 31, 2012, Eric Roberts wrote: My sites are up...not sure if they ever went down as I have been out all day. -Original Message- From: Mike Little [mailto:m...@nzsolutions.co.nz javascript:;] Sent: Thursday, May 31, 2012 7:53 PM To: cf-talk

MS SQL and cfqueryparam slow-down

2012-04-25 Thread Christopher Watson
We've been profiling our MS SQL traffic, and we're seeing the occasional spike in execution times related directly to the operations that CF perform in relation to the cfqueryparam tag in getting table column details. The problem crops up only on cfquery tags where cfqueryparam is used for

Re: MS SQL and cfqueryparam slow-down

2012-04-25 Thread Mike Stemle
It could be that you are not indexing the columns you're using variable data to search on. ~ Mike Stemle, jr. On Apr 25, 2012, at 12:18, Christopher Watson skyg...@gmail.com wrote: We've been profiling our MS SQL traffic, and we're seeing the occasional spike in execution times related

Re: MS SQL and cfqueryparam slow-down

2012-04-25 Thread Christopher Watson
Actually, the prolonged execution times are for simple tables where the proper indexing has been in place. For assessment purposes, we have removed the cfqueryparam tags from that set of queries in our processes that manipulate the tables on which we are seeing the degradation in the

Re: MS SQL and cfqueryparam slow-down

2012-04-25 Thread Russ Michaels
Cfqueryparam has 2 purposes, to paramatise the params which adds your injection security and to create a prepared statement for better execution plan. It seems the execution plan is where u need to look for problems. But a workaround would be to use cfparam outside the cfquery instead if

Re: MS SQL and cfqueryparam slow-down

2012-04-25 Thread Brian Thornton
What is the ODBC driver in play here? On Wed, Apr 25, 2012 at 4:21 PM, Russ Michaels r...@michaels.me.uk wrote: Cfqueryparam has 2 purposes, to paramatise the params which adds your injection security and to create a prepared statement for better execution plan. It seems the execution plan

HouseOfFusion is down (was: CF8 cftextarea richtext is stealing form focus, and being referred to by the form

2011-11-02 Thread Sean Corfield
On Wed, Nov 2, 2011 at 11:21 AM, Monique Boea moniqueb...@gmail.com wrote: is houseoffusion.com down? Yes, but luckily the mailing list is handled by a different server so anyone using regular email is still able to send/reply to the list. -- Sean A Corfield -- (904) 302-SEAN An Architect's

Re: HouseOfFusion is down (was: CF8 cftextarea richtext is stealing form focus, and being referred to by the form

2011-11-02 Thread Matthew Williams
Eh, websites are SO overrated. ;) I don't think I've ended up on HoF site for a long time The only reason is when directed there by a google search for an issue. -- Matthew Williams Geodesic GraFX www.geodesicgrafx.com/blog twitter.com/ophbalance

RE: HouseOfFusion is down (was: CF8 cftextarea richtext is stealing form focus, and being referred to by the form

2011-11-02 Thread Bobby Hartsfield
Corfield [mailto:seancorfi...@gmail.com] Sent: Wednesday, November 02, 2011 2:38 PM To: cf-talk Subject: HouseOfFusion is down (was: CF8 cftextarea richtext is stealing form focus, and being referred to by the form On Wed, Nov 2, 2011 at 11:21 AM, Monique Boea moniqueb...@gmail.com wrote

Determining if multiple Sites are Up/Down?

2011-10-13 Thread Che Vilnonis
I have a niche directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can programmatically make a site active or inactive? I was thinking of just creating a scheduled task and using cfhttp and looking for a status code

Re: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Russ Michaels
directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can programmatically make a site active or inactive? I was thinking of just creating a scheduled task and using cfhttp and looking for a status code of 200. Are there any

Re: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Raymond Camden
Have you look at the System Probes feature in the CF Admin? On Thu, Oct 13, 2011 at 8:38 AM, Che Vilnonis ch...@asitv.com wrote: I have a niche directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can

RE: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Che Vilnonis
/Down? Have you look at the System Probes feature in the CF Admin? On Thu, Oct 13, 2011 at 8:38 AM, Che Vilnonis ch...@asitv.com wrote: I have a niche directory website that lists dozens of other related sites. What would be the best way to determine if a web site is up/down so I can

Re: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Dominic Watson
. One reason to trust monitoring to an external site is that by having only a single server pinging your site(s) you have the following risks (which may be perfectly acceptable): 1. The monitoring server could go down 2. Problems with the server's connection or route to your site can lead to false

RE: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Rick Faircloth
/Down? This can be fine. However, depending on your needs, you might want to use an external service for site monitoring. I've used siteuptime.com for a while and it's proved very useful and easy to use. I've not used it, but they have an API that may let you perform actions when sites drop out

Re: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Russ Michaels
informed, even on the go. -Original Message- From: Dominic Watson [mailto:watson.domi...@googlemail.com] Sent: Thursday, October 13, 2011 9:59 AM To: cf-talk Subject: Re: Determining if multiple Sites are Up/Down? This can be fine. However, depending on your needs, you might want

Re: Determining if multiple Sites are Up/Down?

2011-10-13 Thread Matthew Williams
Call me old school, but I just run Nagios + NagiosQL on one of my VPS's to monitor my various machines. It's a real pain in the arse to setup, to be sure, but it gets the job done. To help with the setup, I have a VM locally that runs Groundworks locally. After that's configured, I export

Re: Error handler or database bringing down server?

2011-10-11 Thread Jon F
Install a full JDK and use jstack to generate a thread dump when this happens again. Then you can see what is going on and fix it. Thanks for your help on this issue. It was able to assist in finding the issue. The problem was due to the timeout setting in CF Administrator and the number of

Error handler or database bringing down server?

2011-10-05 Thread Jon F
I have a situation where the web server became unresponsive and have been unable to pinpoint the exact issue as to why. System: Win 2008 vmware server running IIS 7.5 and CF 9 Situation: A database server on another system went down and a popular page on the site makes 2 calls

Re: Error handler or database bringing down server?

2011-10-05 Thread Jochem van Dieten
On Wed, Oct 5, 2011 at 2:05 PM, Jon F wrote: I have a situation where the web server became unresponsive and have been unable to pinpoint the exact issue as to why. Question: Is it the error handler or the database timeouts locking up threads that played havoc on the server or a

Re: cfquickdocs.com down?

2011-09-28 Thread Pete Freitag
On Tue, Sep 27, 2011 at 9:58 PM, Larry Lyons larrycly...@gmail.com wrote: Bookmarked already Peter. It looks very nice. A couple of comments though. I looked at a random set of tags and one thing that made things a bit difficult what the lack of differentiation in the attributes tables. How

Re: ColdFusion Peformance Blog Down

2011-09-28 Thread David McGuigan
Down again. http://www.cfwhisperer.com/post.cfm/good-practices-for-scaling-coldfusion-applications On Fri, Aug 26, 2011 at 1:42 PM, David McGuigan davidmcgui...@gmail.comwrote: This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold

Re: ColdFusion Peformance Blog Down

2011-09-28 Thread Wil Genovese
PM, David McGuigan wrote: Down again. http://www.cfwhisperer.com/post.cfm/good-practices-for-scaling-coldfusion-applications On Fri, Aug 26, 2011 at 1:42 PM, David McGuigan davidmcgui...@gmail.comwrote: This has been down for the last few days: http://www.cfwhisperer.com/ Anyone

Re: cfquickdocs.com down?

2011-09-27 Thread Pete Freitag
wrote: http://cfquickdocs.com/ seems to be down (since yesterday) I believe. Anybody know who maintained this/can reach out to them? Has proved to be really useful for looking things up. Thanks -- Kumar Shah http://www.coldfusion-ria.com/Blog

Re: cfquickdocs.com down?

2011-09-27 Thread Larry Lyons
Bookmarked already Peter. It looks very nice. A couple of comments though. I looked at a random set of tags and one thing that made things a bit difficult what the lack of differentiation in the attributes tables. How about adding some striping there if possible, or at least use a border.

cfquickdocs.com down?

2011-09-26 Thread Kumar Shah
http://cfquickdocs.com/ seems to be down (since yesterday) I believe. Anybody know who maintained this/can reach out to them? Has proved to be really useful for looking things up. Thanks -- Kumar Shah http://www.coldfusion-ria.com/Blog

Re: cfquickdocs.com down?

2011-09-26 Thread Josh Nathanson
Through some digging I was able to connect it to Jacob Munson, who I believe is on this list, or at least was at one time. Jake you out there?? We need CFQuickDocs! -- Josh On Mon, Sep 26, 2011 at 11:36 AM, Kumar Shah shahku...@gmail.com wrote: http://cfquickdocs.com/ seems to be down

Re: cfquickdocs.com down?

2011-09-26 Thread Alan Rother
is on this list, or at least was at one time. Jake you out there?? We need CFQuickDocs! -- Josh On Mon, Sep 26, 2011 at 11:36 AM, Kumar Shah shahku...@gmail.com wrote: http://cfquickdocs.com/ seems to be down (since yesterday) I believe. Anybody know who maintained this/can reach out

ColdFusion Peformance Blog Down

2011-08-26 Thread David McGuigan
This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold of Mike? ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp

Re: ColdFusion Peformance Blog Down

2011-08-26 Thread Raymond Camden
I pinged him. On Fri, Aug 26, 2011 at 2:42 PM, David McGuigan davidmcgui...@gmail.com wrote: This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold of Mike

Re: ColdFusion Peformance Blog Down

2011-08-26 Thread Roger Austin
On 8/26/2011 3:42 PM, David McGuigan wrote: This has been down for the last few days: http://www.cfwhisperer.com/ Anyone have a quick way of getting ahold of Mike? @cfwhisperer on Twitter -- LinkedIn: http://www.linkedin.com/pub/8/a4/60 Twitter: http://twitter.com/RogerTheGeek Google

Re: ColdFusion Peformance Blog Down

2011-08-26 Thread David McGuigan
Thanks. Trying to get to one of his posts! On Fri, Aug 26, 2011 at 2:08 PM, Raymond Camden raymondcam...@gmail.comwrote: I pinged him. On Fri, Aug 26, 2011 at 2:42 PM, David McGuigan davidmcgui...@gmail.com wrote: This has been down for the last few days: http://www.cfwhisperer.com

Re: HouseOfFusion.com down?

2011-05-27 Thread Al Musella, DPM
He knows the IP address of the offender.. why not set up a firewall to block all traffic from that entire subnet? If there is no firewall, windows server can also block ip ranges Michael has said (repeatedly!) that he won't bring the site back online until he's sure the loopholes are closed

Re: HouseOfFusion.com down?

2011-05-27 Thread Michael Dinowitz
Multiple IPs out of China. The sites will be going live today as soon as I get back from a meeting. I'll write up a description of what I did for a code review after Clark's wedding. A few regex to find form uploads, cffile write/uploads, etc. On Fri, May 27, 2011 at 10:45 AM, Al Musella, DPM

Re: FuseGuard (was: down?)

2011-05-27 Thread Pete Freitag
Hi Folks, Just thought I'd chime in about FuseGuard (my company makes it). The execution time depends on your server hardware and configuration if you have a more verbose configuration it will take a bit longer to execute but you can typically expect it to be below 100ms. The best way to know

Re: down?

2011-05-27 Thread Pete Freitag
On Wed, May 25, 2011 at 5:49 PM, Michael Dinowitz mdino...@houseoffusion.com wrote: I'm going to ask about a license soon but I still want to do some code checking. Better safe than sorry. Michael I'd be happy to donate some FuseGuard licenses for HOF, as well as a HackMyCF paid

Re: FuseGuard (was: down?)

2011-05-27 Thread Ken Hammond
Any chance for a HOF list member discount? :-) -Original Message- From: Pete Freitag p...@foundeo.com To: cf-talk cf-talk@houseoffusion.com Date: Fri, 27 May 2011 11:18:04 -0400 Subject: Re: FuseGuard (was: down?) Hi Folks, Just thought I'd chime in about FuseGuard (my company makes

Re: FuseGuard (was: down?)

2011-05-27 Thread Pete Freitag
On Fri, May 27, 2011 at 11:26 AM, Ken Hammond khamm...@saleminc.com wrote: Any chance for a HOF list member discount? :-) You got it Ken -- 15% discount code for FuseGuard or any Foundeo product is: hofrocks (expires July 4th 2011) -- Pete Freitag - Adobe Community Professional

Re: FuseGuard (was: down?)

2011-05-27 Thread Ken Hammond
Well after reading through all the info, you now have a new customer. I'll be purchasing today. -Original Message- From: Pete Freitag p...@foundeo.com To: cf-talk cf-talk@houseoffusion.com Date: Fri, 27 May 2011 11:54:55 -0400 Subject: Re: FuseGuard (was: down?) On Fri, May 27

Re: FuseGuard (was: down?)

2011-05-27 Thread Ken Hammond
I went ahead and bought the spell checker for good measure LOL -Original Message- From: Pete Freitag p...@foundeo.com To: cf-talk cf-talk@houseoffusion.com Date: Fri, 27 May 2011 11:54:55 -0400 Subject: Re: FuseGuard (was: down?) On Fri, May 27, 2011 at 11:26 AM, Ken Hammond khamm

Re: FuseGuard (was: down?)

2011-05-27 Thread Pete Freitag
went ahead and bought the spell checker for good measure LOL -Original Message- From: Pete Freitag p...@foundeo.com To: cf-talk cf-talk@houseoffusion.com Date: Fri, 27 May 2011 11:54:55 -0400 Subject: Re: FuseGuard (was: down?) On Fri, May 27, 2011 at 11:26 AM, Ken Hammond khamm

Re: FuseGuard (was: down?)

2011-05-27 Thread Ken Hammond
It says I should get the security checklist for free with purchase, where do I find that? -Original Message- From: Pete Freitag p...@foundeo.com To: cf-talk cf-talk@houseoffusion.com Date: Fri, 27 May 2011 13:46:11 -0400 Subject: Re: FuseGuard (was: down?) Thanks Ken, you rock

Re: FuseGuard (was: down?)

2011-05-27 Thread Pete Freitag
On Fri, May 27, 2011 at 3:56 PM, Ken Hammond khamm...@saleminc.com wrote: It says I should get the security checklist for free with purchase, where do I find that? You should be able to download it from https://foundeo.com/customer/ feel free to email me offlist if you have any problem

Re: down?

2011-05-26 Thread Rick Root
http://www.thewebsiteisdown.com/ the web site is down! I only freak out when I'm trying to find stuff in the archive cuz I usually read the list via email. and I was just trying to find stuff in the archive! *freaks out* Rick

HouseOfFusion.com down?

2011-05-26 Thread Rick Faircloth
I know this was discussed yesterday... ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

Re: HouseOfFusion.com down?

2011-05-26 Thread Sean Corfield
Michael has said (repeatedly!) that he won't bring the site back online until he's sure the loopholes are closed and the Chinese hacker can't wreck things again... On Thu, May 26, 2011 at 10:43 AM, Rick Faircloth r...@whitestonemedia.com wrote: I know this was discussed yesterday...

down?

2011-05-25 Thread Michael Muller
Is the website down? MM Michael Muller cell (413) 320-5336 http://MontagueWebWorks.com ** Powered by ROCKETFUSION ** Information is not knowledge Knowledge is not wisdom Eschew Obfuscation ~| Order the Adobe

Re: down?

2011-05-25 Thread Jason Durham
How many people just freaked out because they thought one of *their own* websites were down? Jason Durham On Wed, May 25, 2011 at 2:27 PM, Michael Muller mich...@mullertech.comwrote: Is the website down? MM Michael Muller cell (413) 320-5336 http://MontagueWebWorks.com

RE: down?

2011-05-25 Thread Paul Giesenhagen
+ 1 -Original Message- From: Jason Durham [mailto:jqdur...@gmail.com] Sent: Wednesday, May 25, 2011 2:34 PM To: cf-talk Subject: Re: down? How many people just freaked out because they thought one of *their own* websites were down? Jason Durham On Wed, May 25, 2011 at 2:27 PM

Re: down?

2011-05-25 Thread Kelly
Not I, since I filter all my CFTalk messages into a CFTalk folder. Otherwise I probably would have! LOL On 5/25/2011 3:34 PM, Jason Durham wrote: How many people just freaked out because they thought one of *their own* websites were down? Jason Durham On Wed, May 25, 2011 at 2:27 PM

Re: down?

2011-05-25 Thread Brian Cain
2:34 PM To: cf-talk Subject: Re: down? How many people just freaked out because they thought one of *their own* websites were down? Jason Durham On Wed, May 25, 2011 at 2:27 PM, Michael Muller mich...@mullertech.com wrote: Is the website down? MM Michael Muller

Re: down?

2011-05-25 Thread Michael Dinowitz
I'm holding off turning the site back on until I finish a code review. I want to make sure that there are no unexpected holes. On Wed, May 25, 2011 at 3:27 PM, Michael Muller mich...@mullertech.comwrote: Is the website down? MM Michael Muller cell (413) 320-5336 http

Re: down?

2011-05-25 Thread Tony Weeg
oh I did! Sent from my iPhone... Don't hate. On May 25, 2011, at 3:34 PM, Jason Durham jqdur...@gmail.com wrote: How many people just freaked out because they thought one of *their own* websites were down? Jason Durham On Wed, May 25, 2011 at 2:27 PM, Michael Muller mich

Re: down?

2011-05-25 Thread Jordan Michaels
want to make sure that there are no unexpected holes. On Wed, May 25, 2011 at 3:27 PM, Michael Mullermich...@mullertech.comwrote: Is the website down? MM Michael Muller cell (413) 320-5336 http://MontagueWebWorks.com ** Powered by ROCKETFUSION ** Information

  1   2   3   4   5   6   7   8   9   10   >