cfdirectory issue

2014-06-13 Thread Tim Do
I have some code that's been working for years, but recently starting to act strange. Simple cfdirectory looking in a particular folder and listing out some files. Users are saying there are files in there and when I go in and check, there are! Cfdirectory returns me 0, no errors and

Re: cfdirectory issue

2014-06-13 Thread Russ Michaels
Is the path you are reading from cached in application scope maybe or another cache method. In which case trying dumping out thr path when its broke and see if it is correct. Russ Michaels www.michaels.me.uk cfmldeveloper.com cflive.net cfsearch.com On 13 Jun 2014 23:39, Tim Do t...@wng.com

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

Re: cfdirectory issue

2014-06-13 Thread Byron Mann
First I would check the obvious and verify permissions, you just never know. Is this anything like a directory on a file share? Could just be an availability thing then. Anything new outside of code changes? Patches? Other new software installed on the server? Any other software or process