Weird CF Error

2001-09-15 Thread BT

We are getting the following error on our network of sites. Running CF4 on
NT.

Date and Time : 09/15/01 14:34:04

Error Message : Error loading CFX custom tag library

Template Affected: \\VALHALLA\WEBFILES\CAROLINAS\JOBS\WELCOME.CFM

Query String :

Browser Used: Mozilla/4.0 (compatible; MSIE 5.5; Windows 98)

Error Type : UNKNOWN

HTTP Referer :

Diagnostics : Error loading CFX custom tag library Windows NT error
number 1114 occurred while attempting to load library
'D:\CFUSION\CustomTags\cfx_ad.dll'.The error occurred while processing
an element with a general identifier of (CFX_AD), occupying document
position (89:1) to (89:123) in the template file
\\VALHALLA\WEBFILES\CAROLINAS\JOBS\WELCOME.CFM.

Client IP Address is: 65.34.80.232

Server ID: www2

Generated Content:
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Weird CF Error

2001-04-12 Thread Edward Chanter

Has anyone seen these before:

~

Error Diagnostic Information
ODBC Error Code = 40001 (Serialization failure)

[Microsoft][ODBC SQL Server Driver][SQL Server]Your transaction (process ID
#15) was deadlocked with another process and has been chosen as the
deadlock victim. Rerun your transaction.

~~

I can't figure out what's causing it. Is it my dbase (SQL 7) or the CF
Server (4.01)

Any help would be most appreciated

best wishes,

  -= Ed


Problems cannot be solved at the same
level of awareness which created them.
   - Albert Einstein
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



xPost: Weird CF Error

2002-07-10 Thread Timothy Heald

Has anyone seen this error before:

bad_alloc: Out of Memory

PCodeRuntimeContextImp::write

I am running a very long query dumping into the custom tag cf_dump, and it
blows after about 10 seconds of running.

TIA

Tim Heald
ACP/CCFD :)

Application Development
www.schoollink.net

Fusebox Advisory Committee Member
www.fusebox.org

Manager Fayetteville ColdFusion User Group
www.fcfug.org

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF Error

2001-09-15 Thread Dave Watts

> We are getting the following error on our network of sites. 
> Running CF4 on NT.
> 
> ...
>
> Diagnostics : Error loading CFX custom tag library Windows NT 
> error number 1114 occurred while attempting to load library
> 'D:\CFUSION\CustomTags\cfx_ad.dll'.The error occurred 
> while processing an element with a general identifier of (CFX_AD), 
> occupying document position (89:1) to (89:123) in the template file
> \\VALHALLA\WEBFILES\CAROLINAS\JOBS\WELCOME.CFM.

Have you used this CFX_AD in the past without problems?

One thing I've had to do to diagnose problems like this in the past is to
check for dependencies within DLLs. You can use the Dependency Checker tool
that's available with the NT 4 Resource Kit for this. Just open the DLL in
question, and it'll show you what libraries that DLL uses, and whether those
libraries are available.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF Error

2001-04-12 Thread Bob Silverberg

Sounds like it's the database.  Two processes were trying to access the same
data, but one of them had the resource locked.

-Original Message-
From: Edward Chanter [mailto:[EMAIL PROTECTED]]
Sent: April 12, 2001 9:26 AM
To: CF-Talk
Subject: Weird CF Error


Has anyone seen these before:

~

Error Diagnostic Information
ODBC Error Code = 40001 (Serialization failure)

[Microsoft][ODBC SQL Server Driver][SQL Server]Your transaction (process ID
#15) was deadlocked with another process and has been chosen as the
deadlock victim. Rerun your transaction.

~~

I can't figure out what's causing it. Is it my dbase (SQL 7) or the CF
Server (4.01)

Any help would be most appreciated

best wishes,

  -= Ed


Problems cannot be solved at the same
level of awareness which created them.
   - Albert Einstein
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF Error

2001-04-12 Thread Dave f

Can occur with compound queries. You are waiting to access a record/row
which another user/process has locked. That other user/process is waiting
for  something that you have locked.

D

- Original Message -
From: "Edward Chanter" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, April 12, 2001 9:25 AM
Subject: Weird CF Error


> Has anyone seen these before:
>
> ~
>
> Error Diagnostic Information
> ODBC Error Code = 40001 (Serialization failure)
>
> [Microsoft][ODBC SQL Server Driver][SQL Server]Your transaction (process
ID
> #15) was deadlocked with another process and has been chosen as the
> deadlock victim. Rerun your transaction.
>
> ~~
>
> I can't figure out what's causing it. Is it my dbase (SQL 7) or the CF
> Server (4.01)
>
> Any help would be most appreciated
>
> best wishes,
>
>   -= Ed
>
>
> Problems cannot be solved at the same
> level of awareness which created them.
>- Albert Einstein
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF Error

2001-04-12 Thread Hayes, David

As the error message suggests, it's a SQL Server error.  Look up "deadlock"
in SQL help.

-Original Message-
From: Edward Chanter [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 12, 2001 8:26 AM
To: CF-Talk
Subject: Weird CF Error


Has anyone seen these before:

~

Error Diagnostic Information
ODBC Error Code = 40001 (Serialization failure)

[Microsoft][ODBC SQL Server Driver][SQL Server]Your transaction (process ID
#15) was deadlocked with another process and has been chosen as the
deadlock victim. Rerun your transaction.

~~

I can't figure out what's causing it. Is it my dbase (SQL 7) or the CF
Server (4.01)

Any help would be most appreciated

best wishes,

  -= Ed


Problems cannot be solved at the same
level of awareness which created them.
   - Albert Einstein
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF Error

2001-04-12 Thread Edward Chanter

Interesting. the lock is not an intentional thing do you know any
way of changing it?




best wishes,

  -= Ed


Problems cannot be solved at the same
level of awareness which created them.
   - Albert Einstein
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF Error

2001-04-12 Thread Edward Chanter

Very interesting thanks!




best wishes,

  -= Ed


Problems cannot be solved at the same
level of awareness which created them.
   - Albert Einstein
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF Error

2001-04-12 Thread David E. Crawford

Check the physical memory available and the disk space available. If you are
uploading "Large" files, they have to be read into memory before being
written to disk. Rule of thumb is that you need at least 2.5 times the size
of the file free on disk or in memory to insure that the upload will work.
I would check diskspace first.

DC

- Original Message -
From: "Hayes, David" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, April 12, 2001 10:15
Subject: RE: Weird CF Error


> As the error message suggests, it's a SQL Server error.  Look up
"deadlock"
> in SQL help.
>
> -Original Message-
> From: Edward Chanter [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, April 12, 2001 8:26 AM
> To: CF-Talk
> Subject: Weird CF Error
>
>
> Has anyone seen these before:
>
> ~
>
> Error Diagnostic Information
> ODBC Error Code = 40001 (Serialization failure)
>
> [Microsoft][ODBC SQL Server Driver][SQL Server]Your transaction (process
ID
> #15) was deadlocked with another process and has been chosen as the
> deadlock victim. Rerun your transaction.
>
> ~~
>
> I can't figure out what's causing it. Is it my dbase (SQL 7) or the CF
> Server (4.01)
>
> Any help would be most appreciated
>
> best wishes,
>
>   -= Ed
>
>
> Problems cannot be solved at the same
> level of awareness which created them.
>- Albert Einstein
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Weird CF error that is only on Mac machines?

2001-05-24 Thread Marc J. Mataya

Anyone know of any form issues with Macs?

I have a data editing form page that keeps breaking on Mac machines only
when they submit the form to save.  It happens on the server with my saving
code that does CFUPDATE.  For some reason, my CFIF that looks for
saveForm=Edit is coming back as something other than Edit, so that my code
tries to Add that record instead.

Stumped!


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF error that is only on Mac machines?

2001-05-24 Thread Zac

Marc J. Mataya wrote:

> Anyone know of any form issues with Macs?

What browser? There is, I believe, an issue with the new IE 5 browser for
the Mac that re-introduces a form bug

-- 

If all else fails, immortality can always be assured by spectacular error.

John Kenneth Galbraith



email: [EMAIL PROTECTED]
web: http://www.pixelgeek.com/


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Weird CF error that is only on Mac machines?

2001-05-24 Thread Sean McCarthy

im a mac user i find table sizing issues frequently in i-5 what is the error

-Sean McCarthy
---
HealthObjects
410-895-0379


-Original Message-
From: Zac [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 24, 2001 3:00 PM
To: CF-Talk
Subject: Re: Weird CF error that is only on Mac machines?


Marc J. Mataya wrote:

> Anyone know of any form issues with Macs?

What browser? There is, I believe, an issue with the new IE 5 browser for
the Mac that re-introduces a form bug

-- 

If all else fails, immortality can always be assured by spectacular error.

John Kenneth Galbraith



email: [EMAIL PROTECTED]
web: http://www.pixelgeek.com/
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF error that is only on Mac machines?

2001-05-24 Thread Marc J. Mataya

MSIE 5.0!  What's the scoop on that error?
I have a hidden form field (saveForm) that tells the action page what to do.
For some reason, my code is failing on  code and is
falling through to my INSERT code incorrectly.

Thanks!


- Original Message -
From: "Zac" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Thursday, May 24, 2001 2:59 PM
Subject: Re: Weird CF error that is only on Mac machines?


> Marc J. Mataya wrote:
>
> > Anyone know of any form issues with Macs?
>
> What browser? There is, I believe, an issue with the new IE 5 browser for
> the Mac that re-introduces a form bug
>
> --
>
> If all else fails, immortality can always be assured by spectacular error.
>
> John Kenneth Galbraith
>
>
>
> email: [EMAIL PROTECTED]
> web: http://www.pixelgeek.com/
>
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF error that is only on Mac machines?

2001-05-24 Thread Zac

Marc J. Mataya wrote:

> MSIE 5.0!  What's the scoop on that error?

Not totally sure to be honest. It was discussed on the list a few weeks ago
which is why I even knew about it.

Perhaps one of the original posters from that thread can repost any links to
any solutions. 

--

   Don't blame me.
   I voted for Kodos.


   email: [EMAIL PROTECTED]
   WWW: http://www.pixelgeek.com/


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Weird CF error that is only on Mac machines?

2001-05-25 Thread Bud

On 5/24/01, Marc J. Mataya penned:
>Anyone know of any form issues with Macs?
>
>I have a data editing form page that keeps breaking on Mac machines only
>when they submit the form to save.  It happens on the server with my saving
>code that does CFUPDATE.  For some reason, my CFIF that looks for
>saveForm=Edit is coming back as something other than Edit, so that my code
>tries to Add that record instead.
>
>Stumped!

The only issue I know of with Macs is IE 5 will not repost form 
variables (that really sucks). It also occasionally reloads the page 
when you hit your back button, which sucks if there were form 
variables passed to that page as now they are gone.

Does this happen all the time, or occasionally? I really like the IE 
5 interface for Macs, it's the best of all browsers across all 
platforms, but I don't use it for this very reason. It's impossible 
to develop with. If I submit a form and there is an error, I can't 
simply change the code and refresh because the form variables don't 
get reposted. And when I go back to submit the form again, if the 
page was cleared from the cache and I had submitted form variables to 
that page, I can't just refresh that page.
-- 

Bud Schneehagen - Tropical Web Creations

_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/
ColdFusion Solutions / eCommerce Development
[EMAIL PROTECTED]
http://www.twcreations.com/
954.721.3452

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



weird CF error or not weird but i have never seen it.

2000-04-17 Thread Shawn Regan

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--_=_NextPart_001_01BFA8B9.E4AB2F60
Content-Type: text/plain;
charset="iso-8859-1"

I have two queries on the same page, both are pulling info by an client_id
and one other field but on one of the queries i keep getting this error.

Expression result cannot be converted to a string

Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must
evaluate to a value that can be converted to a string for output or dynamic
text accumulation purposes. Complex objects, such as queries, arrays, and
COM/DCOM objects, cannot be represented as strings.

The error occurred while processing an element with a general identifier of
(#project#), occupying document position (16:10) to (16:18).

The first query has no problem with #project# but the second one does.

Anyone seen this? Its a Eval version of CF server I'm going to install the
single user server today.

Shawn Regan

--_=_NextPart_001_01BFA8B9.E4AB2F60
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable






weird CF error or not weird but i have never seen it.



I have two queries on the same page, both are pulling =
info by an client_id and one other field but on one of the queries i =
keep getting this error.

Expression result cannot be converted to a =
string


Expressions used inside tags like CFOUTPUT, CFQUERY, =
CFMAIL, etc. must evaluate to a value that can be converted to a string =
for output or dynamic text accumulation purposes. Complex objects, such =
as queries, arrays, and COM/DCOM objects, cannot be represented as =
strings.

The error occurred while processing an element with a =
general identifier of (#project#), occupying document position (16:10) =
to (16:18).

The first query has no problem with #project# but the =
second one does.


Anyone seen this? Its a Eval version of CF server I'm =
going to install the single user server today.


Shawn Regan




--_=_NextPart_001_01BFA8B9.E4AB2F60--
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: weird CF error or not weird but i have never seen it.

2000-04-17 Thread Seth Petry-Johnson

>I have two queries on the same page, both are pulling info by an client_id
>and one other field but on one of the queries i keep getting this error.


Without seeing your code the only advice I can give is to fully scope your
variables.  For example, instead of using #project# use #qryName.project#
(where qryName is the name of a query) or #form.project# or whatever.  You
may have variables named "project" in multiple scopes, and CF may be
inadvertently reading the wrong scope. If you fully scope the variable when
you reference it then CF has less quess work to do, which means less chance
of errors (and it will run faster too).

Post your code if you still have problems.  A piece of advice, however:
change your mail client to send in PLAIN TEXT format to this list.  The list
server doesn't seem to be accepting HTML formatted messages.  It botches the
MIME encoding and any code you include will come through all botched up.
This makes reading the post difficult, which in turn means less chance of
you getting an answer.

Regards,
Seth Petry-Johnson
Argo Enterprise and Associates

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: weird CF error or not weird but i have never seen it.

2000-04-18 Thread Sean Daniels

I saw this once. It happened when the name of the first query was the same
as the variable name. Is the name of your first query "project" by any
chance? If so, you are overwriting the variable with the query structure.


- Sean


Sean Daniels
Manager, Engineering
DealStream.com
[EMAIL PROTECTED]
http://www.dealstream.com

tel: 207.439.6030
cel: 978.764.0779


> -Original Message-
> From: Shawn Regan [mailto:[EMAIL PROTECTED]]
> Sent: Monday, April 17, 2000 6:12 PM
> To: '[EMAIL PROTECTED]'
> Subject: weird CF error or not weird but i have never seen it.
>
>
>
> This message is in MIME format. Since your mail reader does not understand
> this format, some or all of this message may not be legible.
>
> --_=_NextPart_001_01BFA8B9.E4AB2F60
> Content-Type: text/plain;
>   charset="iso-8859-1"
>
> I have two queries on the same page, both are pulling info by an client_id
> and one other field but on one of the queries i keep getting this error.
>
> Expression result cannot be converted to a string
>
> Expressions used inside tags like CFOUTPUT, CFQUERY, CFMAIL, etc. must
> evaluate to a value that can be converted to a string for output
> or dynamic
> text accumulation purposes. Complex objects, such as queries, arrays, and
> COM/DCOM objects, cannot be represented as strings.
>
> The error occurred while processing an element with a general
> identifier of
> (#project#), occupying document position (16:10) to (16:18).
>
> The first query has no problem with #project# but the second one does.
>
> Anyone seen this? Its a Eval version of CF server I'm going to install the
> single user server today.
>
> Shawn Regan
>
> --_=_NextPart_001_01BFA8B9.E4AB2F60
> Content-Type: text/html;
>   charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
> 
>  charset=3Diso-8859-1">
>  5.5.2650.12">
> weird CF error or not weird but i have never seen it.
> 
> 
>
> I have two queries on the same page, both are pulling =
> info by an client_id and one other field but on one of the queries i =
> keep getting this error.
>
> Expression result cannot be converted to a =
> string
> 
>
> Expressions used inside tags like CFOUTPUT, CFQUERY, =
> CFMAIL, etc. must evaluate to a value that can be converted to a string =
> for output or dynamic text accumulation purposes. Complex objects, such =
> as queries, arrays, and COM/DCOM objects, cannot be represented as =
> strings.
>
> The error occurred while processing an element with a =
> general identifier of (#project#), occupying document position (16:10) =
> to (16:18).
>
> The first query has no problem with #project# but the =
> second one does.
> 
>
> Anyone seen this? Its a Eval version of CF server I'm =
> going to install the single user server today.
> 
>
> Shawn Regan
> 
>
> 
> 
> --_=_NextPart_001_01BFA8B9.E4AB2F60--
> --
> 
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf
_talk or send a message to [EMAIL PROTECTED] with
'unsubscribe' in the body.

--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.