unknown parser error

2000-11-20 Thread Martin S

I am having this error, I can't see what the problem is.  It works on my 
computer, and haven't had this problem before.  I can't see a problem in the 
code, and is I said it works on my PC, and I have set it up here, the same 
as it is on cfm-resources!!

Please help!! :-)

ERROR : Below as seen on www.unrealdomainnames.com

Error Diagnostic Information
Just in time compilation error

unknown parser error

The last successfully parsed CFML construct was the CFML template beginning 
occupying document position (1:1) to (1:1).

The specific sequence of files included or processed is:
C:\Inetpub\cfm-resources.com\web\u\UnrealDomainNamesForSale\Main.cfm


Date/Time: 11/20/00 05:41:24
Browser: Mozilla/4.0 (compatible; MSIE 5.01; Windows 98)
Remote Address: 139.134.27.67
HTTP Referer: http://www.unrealdomainnames.com/

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.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



Unknown Parser Error

2001-06-01 Thread kraybill

On a shared hosting service, we're getting a lot of (intermittent) errors 
like this:
Just in time compilation error 
unknown parser error
The error then points to the very first character of the first line of the 
template, so that seems spurious.
CF-Talk archives show numerous similar reports, but very little in the 
way of possible causes. The same code runs fine on our development 
server.
Any suggestions appreciated!
Gene Kraybill



~~
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: unknown parser error

2000-11-20 Thread Jeffry Houser


  Just a shot in the dark here..

  But I believe I was having similiar problems when the first few 
characters of my template were a ColdFusion comment: '

Repost: Unknown Parser Error

2001-06-08 Thread kraybill

No answers from my first post regarding:
-- Error --
"Just in time compilation error
unknown parser error
The last successfully parsed CFML construct was the CFML template 
beginning occupying document position (1:1) to (1:1)"
-- End of Error --

Some mysteries:

1. This error appears sporadically on SOME, but not all templates. When it 
appears on one, then it tends to appear on numerous templates until the 
CF server is restarted.

2. When this occurs, I can repeat the SAME error when I put one or two 
simple words in a .cfm file and attempt to run it. E.g., a file with just the 
words "Just testing..." throws the same error, though there's obviously no 
legitimate reason for the server to have a parser problem with a simple two-
word text file...

I found some posts here and on Allaire re. this message, but very few 
suggestions as to a cause. Can anyone shed any light at all? This is 
occurring on a shared host running CF 4.5.1 and IIS.

Gene Kraybill

~~
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



unknown parser error from UDF

2003-03-23 Thread S . Isaac Dealey
Using

CF 5
Win2K Server
IIS 5

I have the following in a template


function dbconcatenate() {
return preservesinglequotes(ArrayToList(arguments," + "));
}
request.tapi.tStor("dbconcatenate","db.concatenate");


The cfscript block contains several other functions as well, however, the
odd thing is that no matter what I comment out, unless I comment out the
_entire_ template, CF Studio (4.5) reports the unknown parser error. CF
Server on the other hand has no problem with the template as long as I
comment out the preservesinglequotes() function -- i.e. no problem with
this:

return /*preservesinglequotes(*/ArrayToList(arguments," + ")/*)*/;

Anybody have any ideas?

s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



RE: Repost: Unknown Parser Error

2001-06-08 Thread Diana Nichols

I've just (finally) solved the same issue..the direct cause is that the
server CFServer is running at 100% (and must be restarted).

There are probably other scenarios which would cause this...but here's what
my problem was:
I run SQL2000, but had created a quick Access database for testing a new
app, and ported some queries into the new app...each of which used a
variation of this:
select (fname + ' ' + lname) as username
(this works fine in SQL, and on Access on my local machine.for some
reason, though, it threw the server into a fit every single time I ran a
query with this syntax)

I still don't know why this happenedonly that it did, and I had to
re-write the queries as: select fname, lname

This may not be your problembut it's one thing to check.

Perhaps someone more knowledgeable on this list can explain the why of this
scenario.

HTH!
D

*
Diana Nichols
Webmistress
http://www.lavenderthreads.com
770.434.7374

"One man's magic is another man's engineering." ---Lazarus Long


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, June 08, 2001 5:26 PM
To: CF-Talk
Subject: Repost: Unknown Parser Error


No answers from my first post regarding:
-- Error ----------
"Just in time compilation error
unknown parser error
The last successfully parsed CFML construct was the CFML template
beginning occupying document position (1:1) to (1:1)"
-- End of Error --

Some mysteries:

1. This error appears sporadically on SOME, but not all templates. When it
appears on one, then it tends to appear on numerous templates until the
CF server is restarted.

2. When this occurs, I can repeat the SAME error when I put one or two
simple words in a .cfm file and attempt to run it. E.g., a file with just
the
words "Just testing..." throws the same error, though there's obviously no
legitimate reason for the server to have a parser problem with a simple two-
word text file...

I found some posts here and on Allaire re. this message, but very few
suggestions as to a cause. Can anyone shed any light at all? This is
occurring on a shared host running CF 4.5.1 and IIS.

Gene Kraybill
~~
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: Repost: Unknown Parser Error

2001-06-08 Thread Deb Dickerson

If you're not running at least CF 4.5.1SP2, then the problem you encountered
is most likely the one detailed in this KB:
http://www.allaire.com/Handlers/index.cfm?ID=17421&Method=Full

Deb

- Original Message -
From: "Diana Nichols" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Friday, June 08, 2001 4:30 PM
Subject: RE: Repost: Unknown Parser Error


> I've just (finally) solved the same issue..the direct cause is that the
> server CFServer is running at 100% (and must be restarted).
>
> There are probably other scenarios which would cause this...but here's
what
> my problem was:
> I run SQL2000, but had created a quick Access database for testing a new
> app, and ported some queries into the new app...each of which used a
> variation of this:
> select (fname + ' ' + lname) as username
> (this works fine in SQL, and on Access on my local machine.for some
> reason, though, it threw the server into a fit every single time I ran a
> query with this syntax)
>
> I still don't know why this happenedonly that it did, and I had to
> re-write the queries as: select fname, lname
>
> This may not be your problembut it's one thing to check.
>
> Perhaps someone more knowledgeable on this list can explain the why of
this
> scenario.
>
> HTH!
> D
>
> *
> Diana Nichols
> Webmistress
> http://www.lavenderthreads.com
> 770.434.7374
>
> "One man's magic is another man's engineering." ---Lazarus Long
>
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Friday, June 08, 2001 5:26 PM
> To: CF-Talk
> Subject: Repost: Unknown Parser Error
>
>
> No answers from my first post regarding:
> -- Error --
> "Just in time compilation error
> unknown parser error
> The last successfully parsed CFML construct was the CFML template
> beginning occupying document position (1:1) to (1:1)"
> -- End of Error --
>
> Some mysteries:
>
> 1. This error appears sporadically on SOME, but not all templates. When it
> appears on one, then it tends to appear on numerous templates until the
> CF server is restarted.
>
> 2. When this occurs, I can repeat the SAME error when I put one or two
> simple words in a .cfm file and attempt to run it. E.g., a file with just
> the
> words "Just testing..." throws the same error, though there's obviously no
> legitimate reason for the server to have a parser problem with a simple
two-
> word text file...
>
> I found some posts here and on Allaire re. this message, but very few
> suggestions as to a cause. Can anyone shed any light at all? This is
> occurring on a shared host running CF 4.5.1 and IIS.
>
> Gene Kraybill
>
~~
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: unknown parser error from UDF

2003-03-23 Thread Matthew Walker
Seems like you can only use simple variables in preserveSingleQuotes() - you
can't even use a string! See this for example (the commented out line
generates an error):






#preservesinglequotes(b)#

It would be interesting to know how this function works!

Matthew Walker
Electric Sheep Web
http://www.electricsheep.co.nz/


- Original Message -
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, March 24, 2003 7:21 AM
Subject: unknown parser error from UDF


> Using
>
> CF 5
> Win2K Server
> IIS 5
>
> I have the following in a template
>
> 
> function dbconcatenate() {
> return preservesinglequotes(ArrayToList(arguments," + "));
> }
> request.tapi.tStor("dbconcatenate","db.concatenate");
> 
>
> The cfscript block contains several other functions as well, however, the
> odd thing is that no matter what I comment out, unless I comment out the
> _entire_ template, CF Studio (4.5) reports the unknown parser error. CF
> Server on the other hand has no problem with the template as long as I
> comment out the preservesinglequotes() function -- i.e. no problem with
> this:
>
> return /*preservesinglequotes(*/ArrayToList(arguments," + ")/*)*/;
>
> Anybody have any ideas?
>
> s. isaac dealey954-776-0046
>
> new epoch  http://www.turnkey.to
>
> lead architect, tapestry cms   http://products.turnkey.to
>
> tapestry api is opensource http://www.turnkey.to/tapi
>
> certified advanced coldfusion 5 developer
> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: unknown parser error from UDF

2003-03-23 Thread Matthew Walker
Do you think preservesinglequotes() is actually meaningful outside a
cfquery? If you inspect the result of the function I think you'll see the
same thing with or without

- Original Message -
From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Monday, March 24, 2003 7:21 AM
Subject: unknown parser error from UDF


> Using
>
> CF 5
> Win2K Server
> IIS 5
>
> I have the following in a template
>
> 
> function dbconcatenate() {
> return preservesinglequotes(ArrayToList(arguments," + "));
> }
> request.tapi.tStor("dbconcatenate","db.concatenate");
> 
>
> The cfscript block contains several other functions as well, however, the
> odd thing is that no matter what I comment out, unless I comment out the
> _entire_ template, CF Studio (4.5) reports the unknown parser error. CF
> Server on the other hand has no problem with the template as long as I
> comment out the preservesinglequotes() function -- i.e. no problem with
> this:
>
> return /*preservesinglequotes(*/ArrayToList(arguments," + ")/*)*/;
>
> Anybody have any ideas?
>
> s. isaac dealey954-776-0046
>
> new epoch  http://www.turnkey.to
>
> lead architect, tapestry cms   http://products.turnkey.to
>
> tapestry api is opensource http://www.turnkey.to/tapi
>
> certified advanced coldfusion 5 developer
> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: unknown parser error from UDF

2003-03-23 Thread S . Isaac Dealey
No I haven't found any use for it outside of cfquery -- it was after all
specifically designed to short-circuit the default cfquery behavior... This
particular function is intended only to be used in cfqueries...

#request.tapi.db.concatenate("blah","blah2","yadda")#

This is an attempt at building some (not comprehensive) db-platform
independant code for Tapestry to allow multiple db's on a single codebase.
Most of it comes about as a result of differences between MS SQL Server and
Oracle -- in particular this function for concatenation because SQL Server
uses + and Oracle uses || for concatenation (which I find just confusing
because || in C/C++/Java/JavaScript means "or", although I suspect some
other language(s) use it for concatenation, I'm just not familiar with
them).

Interresting results from your previous message tho. I guess I have to set a
function local variable prior to using preservesinglequotes() ... It's
really odd I have to wonder why the function doesn't just see the string
output from the arraytolist() function.

> Do you think preservesinglequotes() is actually meaningful
> outside a
> cfquery? If you inspect the result of the function I think
> you'll see the
> same thing with or without

> - Original Message -
> From: "S. Isaac Dealey" <[EMAIL PROTECTED]>
> To: "CF-Talk" <[EMAIL PROTECTED]>
> Sent: Monday, March 24, 2003 7:21 AM
> Subject: unknown parser error from UDF


>> Using
>>
>> CF 5
>> Win2K Server
>> IIS 5
>>
>> I have the following in a template
>>
>> 
>> function dbconcatenate() {
>> return preservesinglequotes(ArrayToList(arguments," +
>> "));
>> }
>> request.tapi.tStor("dbconcatenate","db.concatenate");
>> 
>>
>> The cfscript block contains several other functions as
>> well, however, the
>> odd thing is that no matter what I comment out, unless I
>> comment out the
>> _entire_ template, CF Studio (4.5) reports the unknown
>> parser error. CF
>> Server on the other hand has no problem with the template
>> as long as I
>> comment out the preservesinglequotes() function -- i.e.
>> no problem with
>> this:
>>
>> return /*preservesinglequotes(*/ArrayToList(arguments," +
>> ")/*)*/;
>>
>> Anybody have any ideas?
>>
>> s. isaac dealey954-776-0046
>>
>> new epoch  http://www.turnkey.to
>>
>> lead architect, tapestry cms   http://products.turnkey.to
>>
>> tapestry api is opensource http://www.turnkey.to/tapi
>>
>> certified advanced coldfusion 5 developer
>> http://www.macromedia.com/v1/handlers/index.cfm?ID=21816
>>
>>
> ~~
> ~~~|
> Archives:
> http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
> Subscription: http://www.houseoffusion.com/cf_lists/index.
> cfm?method=subscribe&forumid=4
> FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
> Signup for the Fusion Authority news alert and keep up
> with the latest news in ColdFusion and related topics.
> http://www.fusionauthority.com/signup.cfm

>   Unsubscribe: http://www.houseoffusion.com/cf_lists/uns
>   ubscribe.cfm?user=633.558.4



s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: unknown parser error from UDF

2003-03-23 Thread Matthew Walker
> #request.tapi.db.concatenate("blah","blah2","yadda")#

Interesting! Our cms has a variable: request.thrive.dbms.concatenate() which
does almost the same thing! My version just inserts the symbol, so it takes
no parameters. ;-)

Matthew Walker
Electric Sheep Web
http://www.electricsheep.co.nz/


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: unknown parser error from UDF

2003-03-23 Thread S . Isaac Dealey
>> #request.tapi.db.concatenate("blah","blah2","yadda")#

> Interesting! Our cms has a variable:
> request.thrive.dbms.concatenate() which
> does almost the same thing! My version just inserts the
> symbol, so it takes no parameters. ;-)

You and I seem to have a lot in common when it comes to coding. :)

I thought having it just return the concat string and decided to do it this
way because I figured it'd be less typing / fewer lines of code...

select col1 #request.tapi.db.concatenate()# col2
#request.tapi.db.concatenate()# '/samsonite/'
#request.tapi.db.concatenate()# col4 as blah

vs.

select #request.tapi.db.concatenate("col1","col2","'/samsonite/'","col4")#
as blah

though most concatenation for Tapestry is done in views and stored proc's,
so I'm not even certain the function will get used -- just planning for
contingencies. :)

I should probably actually rewrite it so that it can be used with or without
arguments, that way I can probably leave out the preservesinglequotes and be
good, like:

select #request.tapi.db.concatenate("col1","col2"," ")# '/samsonite/'
#request.tapi.db.concatenate()# col4

more typing, but maybe more reliable... (the whitespace argument above
forces the function to add the concat string to the right of col2 since it's
only going to delimit the list in the middle and an empty string "" would be
removed from the list).

I suppose I could have used listchangedelims() and just passed a whole
string, but then if you want to have a quoted value in the middle and it
contains any of the delimiter characters (col1 + '+' + col2) there's a
problem.


s. isaac dealey954-776-0046

new epoch  http://www.turnkey.to

lead architect, tapestry cms   http://products.turnkey.to

tapestry api is opensource http://www.turnkey.to/tapi

certified advanced coldfusion 5 developer
http://www.macromedia.com/v1/handlers/index.cfm?ID=21816

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Unknown Parser Error on Shared NT Server

2001-04-04 Thread C. Hatton Humphrey

HELP!

I've got a site that is hosted on a shared server that has started getting a
situation where *selected* pages have started getting the following error:

Error Diagnostic Information
Just in time compilation error

unknown parser error

The last successfully parsed CFML construct was the CFML template beginning
occupying document position (1:1) to (1:1).

The specific sequence of files included or processed is:
E:\WEB\CONNECTTEXOMA\INDEX.CFM
  E:\WEB\CONNECTTEXOMA\TEMPLATE\APP_LAYOUT1.CFM  CFInclude
E:\WEB\CONNECTTEXOMA\TEMPLATE\..\AUTO\DSP_AMINTRO.CFM  CFInclude

The error occurred while processing an element with a general identifier of
(CFINCLUDE), occupying document position (37:1) to (37:32).


Date/Time: 04/04/01 14:08:57
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
Remote Address: 207.19.132.222
HTTP Referer: http://www.connecttexoma.com/
Query String: Fuseaction=AMINTRO

In speaking with the tech, his monitor is showing that the CF Server is
running.  It's weird because the main page is loading fine.  While on the
phone with the tech I downloaded the files in a directory that is throwing
the error and then re-uploaded them.  The error changed where it is
appearing.  I did not change any of the files, I simply downloaded them to
my local machine and re-uploaded them.

Does anyone know why this would be happening?

TIA!
Hatton Humphrey



~~
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: Unknown Parser Error on Shared NT Server

2001-04-04 Thread Garza, Jeff

I've had this happen to me when I had a Verity Index fail while indexing.
Had to restart the CFAS to get things working again. 

HTH

Jeff Garza
Web Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] 
Sent: Wednesday, April 04, 2001 11:11 AM
To: CF-Talk
Subject: Unknown Parser Error on Shared NT Server


HELP!

I've got a site that is hosted on a shared server that has started getting a
situation where *selected* pages have started getting the following error:

Error Diagnostic Information
Just in time compilation error

unknown parser error

The last successfully parsed CFML construct was the CFML template beginning
occupying document position (1:1) to (1:1).

The specific sequence of files included or processed is:
E:\WEB\CONNECTTEXOMA\INDEX.CFM
  E:\WEB\CONNECTTEXOMA\TEMPLATE\APP_LAYOUT1.CFM  CFInclude
E:\WEB\CONNECTTEXOMA\TEMPLATE\..\AUTO\DSP_AMINTRO.CFM  CFInclude

The error occurred while processing an element with a general identifier of
(CFINCLUDE), occupying document position (37:1) to (37:32).


Date/Time: 04/04/01 14:08:57
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
Remote Address: 207.19.132.222
HTTP Referer: http://www.connecttexoma.com/
Query String: Fuseaction=AMINTRO

In speaking with the tech, his monitor is showing that the CF Server is
running.  It's weird because the main page is loading fine.  While on the
phone with the tech I downloaded the files in a directory that is throwing
the error and then re-uploaded them.  The error changed where it is
appearing.  I did not change any of the files, I simply downloaded them to
my local machine and re-uploaded them.

Does anyone know why this would be happening?

TIA!
Hatton Humphrey
~~
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: Unknown Parser Error on Shared NT Server

2001-04-04 Thread C. Hatton Humphrey

Jeff,

Thanks for the reply.  I know how to fix the problem... so far in the last
30 days the CFAS has been restarted approx. 20 times.

What I'm wondering is how to prevent the problem from happening again... or
tracking down the cause of it.  Any error must have a cause, and what I'm
wondering is what might be causing this one!

Thanks agian!
Hatton

-Original Message-
From: Garza, Jeff [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 3:05 PM
To: CF-Talk
Subject: RE: Unknown Parser Error on Shared NT Server


I've had this happen to me when I had a Verity Index fail while indexing.
Had to restart the CFAS to get things working again.

HTH

Jeff Garza
Web Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 11:11 AM
To: CF-Talk
Subject: Unknown Parser Error on Shared NT Server


HELP!

I've got a site that is hosted on a shared server that has started getting a
situation where *selected* pages have started getting the following error:

Error Diagnostic Information
Just in time compilation error

unknown parser error

The last successfully parsed CFML construct was the CFML template beginning
occupying document position (1:1) to (1:1).

The specific sequence of files included or processed is:
E:\WEB\CONNECTTEXOMA\INDEX.CFM
  E:\WEB\CONNECTTEXOMA\TEMPLATE\APP_LAYOUT1.CFM  CFInclude
E:\WEB\CONNECTTEXOMA\TEMPLATE\..\AUTO\DSP_AMINTRO.CFM  CFInclude

The error occurred while processing an element with a general identifier of
(CFINCLUDE), occupying document position (37:1) to (37:32).


Date/Time: 04/04/01 14:08:57
Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)
Remote Address: 207.19.132.222
HTTP Referer: http://www.connecttexoma.com/
Query String: Fuseaction=AMINTRO

In speaking with the tech, his monitor is showing that the CF Server is
running.  It's weird because the main page is loading fine.  While on the
phone with the tech I downloaded the files in a directory that is throwing
the error and then re-uploaded them.  The error changed where it is
appearing.  I did not change any of the files, I simply downloaded them to
my local machine and re-uploaded them.

Does anyone know why this would be happening?

TIA!
Hatton Humphrey
~~
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