Re: 500 - Internal server error

2012-07-03 Thread Gonzo Rock

Okay... egg on my face and a huge apology to Carl Meyer. I ran into
the postParametersLimit exceeded issue today and knew EXACTLY what to
to. This list has once again saved my life and my job. Thank you to
everyone who keeps it running.

Thanks!
Gonzo


On Mon, Jul 2, 2012 at 10:32 AM, Gonzo Rock gonzor...@gmail.com wrote:
 RightOn you guys!

 Turns out that both Justin and Michael's tips were successful...
 either or both of the switches together made the the cferror routine
 that we built run properly. Yes! and Thank You!  Now as for Carl's
 parameter limit... don't know how that might be useful unless of
 course we run into this again and have a zillion parameters being
 passed to CF ;-)

 I would think we would want to pass the typical IIS errors and check
 that in the CFAdmin settings... but it is clearly not necessary.
 However we do have it checked in all our other installs... both
 Windows and Linux and all is well everywhere except with this new
 install... which is apparently fixed now. So this brings up the
 question now of what's the full purpose of the CFAdmin setting and
 it's use with the IIS setting for Details vs Custom IIS error pages?

 Thanks!
 Gonz

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351819
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-02 Thread Gonzo Rock

RightOn you guys!

Turns out that both Justin and Michael's tips were successful...
either or both of the switches together made the the cferror routine
that we built run properly. Yes! and Thank You!  Now as for Carl's
parameter limit... don't know how that might be useful unless of
course we run into this again and have a zillion parameters being
passed to CF ;-)

I would think we would want to pass the typical IIS errors and check
that in the CFAdmin settings... but it is clearly not necessary.
However we do have it checked in all our other installs... both
Windows and Linux and all is well everywhere except with this new
install... which is apparently fixed now. So this brings up the
question now of what's the full purpose of the CFAdmin setting and
it's use with the IIS setting for Details vs Custom IIS error pages?

Thanks!
Gonzo

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351794
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-02 Thread Justin Scott

 ... So this brings up the question now of what's the full
 purpose of the CFAdmin setting and it's use with the IIS
 setting for Details vs Custom IIS error pages?

Basically IIS is looking at the response codes from an application and
when it sees anything other than normal 200 (OK) code (and some
others, such as 30X redirects), it will look at the error handling
settings to see how it should respond to the user.  If the custom
errors are enabled for the visitor in question, then it will use
whatever is set in the IIS settings (e.g. display a static HTML file,
a generic error code, redirect to a page, etc.).  This is to prevent
any sensitive information from leaking out of the server in the case
of an error (such as the info that would normally come from a robust
error handling exception in ColdFusion).  IIS is helping to protect
the security of the application and handle error conditions for you.

The setting in the CF admin controls what status code is sent out when
there is an error.  Normally when CF encounters an error it will send
a 500 (Internal Server Error) code which IIS then intercepts and
handles as described above.  If you change this setting, you can have
CF send a 200 (OK) code even in the event of an error which bypasses
the IIS error handling routines and allows whatever output CF
generates (page, error page, custom error handler output, etc.) to get
through just like any other regular content.  IIS just sees it as a
normal response at that point and allows it through.


-Justin

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351795
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-02 Thread Russ Michaels

for CF sites it should be fine to simply enable errors in IIS as all your
errors are going to be returned by CF anyway.
The only exception would be if your running a mixed site with CF and other
technology.
In which case as long as you separate your technologies into different
folders, you can put a web.config into each folder with different settings.
So CF could have errors enable and asp.net disabled for example.
Or you could simply create a custom error on IIS and have
that displayed instead.

have you tried using the sitewide error template in CF, I don't think
that causes the server 500 error.


On Mon, Jul 2, 2012 at 6:56 PM, Justin Scott leviat...@darktech.org wrote:


  ... So this brings up the question now of what's the full
  purpose of the CFAdmin setting and it's use with the IIS
  setting for Details vs Custom IIS error pages?

 Basically IIS is looking at the response codes from an application and
 when it sees anything other than normal 200 (OK) code (and some
 others, such as 30X redirects), it will look at the error handling
 settings to see how it should respond to the user.  If the custom
 errors are enabled for the visitor in question, then it will use
 whatever is set in the IIS settings (e.g. display a static HTML file,
 a generic error code, redirect to a page, etc.).  This is to prevent
 any sensitive information from leaking out of the server in the case
 of an error (such as the info that would normally come from a robust
 error handling exception in ColdFusion).  IIS is helping to protect
 the security of the application and handle error conditions for you.

 The setting in the CF admin controls what status code is sent out when
 there is an error.  Normally when CF encounters an error it will send
 a 500 (Internal Server Error) code which IIS then intercepts and
 handles as described above.  If you change this setting, you can have
 CF send a 200 (OK) code even in the event of an error which bypasses
 the IIS error handling routines and allows whatever output CF
 generates (page, error page, custom error handler output, etc.) to get
 through just like any other regular content.  IIS just sees it as a
 normal response at that point and allows it through.


 -Justin

 

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351796
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


500 - Internal server error

2012-07-01 Thread Gonzo Rock

We have a new Coldfusion 10 install that is running the identical code
on many other systems but it is throwing a 500 - Internal server error
and not running the cferror routine that we have built.

For example:
Running a simple ErrorTest.cfm that holds only this one line

cfoutput#Garbage#/cfoutput

Throws this error:
500 - Internal server error.
There is a problem with the resource you are looking for, and it
cannot be displayed.

Been all over the CFAdmin thinking there is some new setting or
something but coming up empty.

Is there something about IIS7 on a Windows 2008 box that needs
something special to make all this work?  Hours online only seems to
lead me in circles. Anything you might suggest would be a welcome path
to investigate.

Thanks!

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351776
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-01 Thread Brian McCairn

Not sure about CF10 but on Railo I think you have to set Error Reporting to 
Detailed in IIS7 to get the error. 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351777
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-01 Thread Michael David

You checked on the settings page, to make sure use HTTP status codes 
was unchecked, yes?
-- 
Cheers!
Michael David


-- Original Message --
From: Gonzo Rock gonzor...@gmail.com
To: cf-talk cf-talk@houseoffusion.com
Sent: 6/30/2012 8:28:45 PM
Subject: 500 - Internal server error
We have a new Coldfusion 10 install that is running the identical code
on many other systems but it is throwing a 500 - Internal server error
and not running the cferror routine that we have built.

For example:
Running a simple ErrorTest.cfm that holds only this one line

cfoutput#Garbage#/cfoutput

Throws this error:
500 - Internal server error.
There is a problem with the resource you are looking for, and it
cannot be displayed.

Been all over the CFAdmin thinking there is some new setting or
something but coming up empty.

Is there something about IIS7 on a Windows 2008 box that needs
something special to make all this work?  Hours online only seems to
lead me in circles. Anything you might suggest would be a welcome path
to investigate.

Thanks!



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351778
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-01 Thread Justin Scott

 Not sure about CF10 but on Railo I think you have to set Error
 Reporting to Detailed in IIS7 to get the error.

In IIS 7 this setting would be in the site properties, Error Pages
under the IIS settings category, then the Edit Feature Settings...
link on the right side menu.  From there you can set it to Detailed
(for all users) or the option to show detailed to local only and
Custom to remote users (which is the default I believe) depending on
how you're set up.  IIS is essentially seeing that there was a 500
error and showing a custom error to prevent presumably sensitive
server information from leaking out.  If you're using a custom error
handler in CF then you could set this to Detailed and let that content
through.  Alternately, you could create an HTML file and configure IIS
to use a Custom error page and let it know where that HTML file lives
so it can handle displaying that for you.


-Justin

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351779
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-01 Thread Carl Meyer

I think CF10 implements a setting in ColdFusion, Post Parameter Limit. This 
limits the number of parameters in a post request. The default value is 100. If 
a post request contains more parameters as specified, server will not process 
the request and throws an exception or 500 error.

Edit file after making a copy of (by way of backup):
ColdFusion10\cfusion\lib\neo-runtime.xml

This line:
var name='postParametersLimit'number100.0/number/var

What value 300, 500? Depends do your own testing.

Restart CF10 application service.

See ColdFusion Security Hotfix APSB12-06:

http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html

HTH, Carl.


We have a new Coldfusion 10 install that is running the identical code
on many other systems but it is throwing a 500 - Internal server error
and not running the cferror routine that we have built.

Been all over the CFAdmin thinking there is some new setting or
something but coming up empty.

 Anything you might suggest would be a welcome pathto investigate.

Thanks! 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351782
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: 500 - Internal server error

2012-07-01 Thread Carl Meyer

I think CF10 implements a setting in ColdFusion, Post Parameter Limit. This 
limits the number of parameters in a post request. The default value is 100. If 
a post request contains more parameters as specified, server will not process 
the request and throws an exception or 500 error.

Edit file after making a copy of (by way of backup):
ColdFusion10\cfusion\lib\neo-runtime.xml

This line:
var name='postParametersLimit'number100.0/number/var

What value 300, 500? Depends do your own testing.

Restart CF10 application service.

See ColdFusion Security Hotfix APSB12-06:

http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html

HTH, Carl.


We have a new Coldfusion 10 install that is running the identical code
on many other systems but it is throwing a 500 - Internal server error
and not running the cferror routine that we have built.


Been all over the CFAdmin thinking there is some new setting or
something but coming up empty.

Is there something about IIS7 on a Windows 2008 box that needs
something special to make all this work?  Hours online only seems to
lead me in circles. Anything you might suggest would be a welcome path
to investigate.

Thanks! 


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351783
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner

This is an ugly one.  I think it is an Apache2 - ColdFusion 9 web server 
connector problem.

I have two Solaris Unix web servers.  Each of these servers have a dozen 
and a half Apache web sites each one connected to one of five ColdFusion 
instances.

All, but *TWO* of them are working properly.  We created two new Apache 
web sites and connected them to a new ColdFusion instance.  This worked 
fine on one of our boxes, the development one, but not on the other, 
production of course.

Whenever we try to request a cfm url from one of these sites on the 
production server we get a 500 Internal Server Error.  HTML pages serve 
up just fine, and the new instance's Administrator runs fine on its 8305 
port.  So both Apache and ColdFusion seem to be working independently, 
but they are not talking to each other.  All the other Apache sites 
connected to the other four ColdFusion instances also work properly.

This has led me to investigate the web server connectors.  They have 
always been tricky and problematic to set up on these boxes.  The built 
in tools have never worked for us on these boxes and we have always had 
to manually compile the connectors and configure the connections in the 
web sites..

But, as far as I can tell, all the connection setups are the same 
between working examples and these non-working sites.

Any insights into what else I should be checking and|or how web server 
connectors actually work (they have alwasy been mysterious black boxes 
to me) would be greatly appreciated.

TIA
Ian



~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339479
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts

 I have two Solaris Unix web servers.  Each of these servers have a dozen
 and a half Apache web sites each one connected to one of five ColdFusion
 instances.

 All, but *TWO* of them are working properly.  We created two new Apache
 web sites and connected them to a new ColdFusion instance.  This worked
 fine on one of our boxes, the development one, but not on the other,
 production of course.

 Whenever we try to request a cfm url from one of these sites on the
 production server we get a 500 Internal Server Error.  HTML pages serve
 up just fine, and the new instance's Administrator runs fine on its 8305
 port.  So both Apache and ColdFusion seem to be working independently,
 but they are not talking to each other.  All the other Apache sites
 connected to the other four ColdFusion instances also work properly.

 This has led me to investigate the web server connectors.  They have
 always been tricky and problematic to set up on these boxes.  The built
 in tools have never worked for us on these boxes and we have always had
 to manually compile the connectors and configure the connections in the
 web sites..

 But, as far as I can tell, all the connection setups are the same
 between working examples and these non-working sites.

 Any insights into what else I should be checking and|or how web server
 connectors actually work (they have alwasy been mysterious black boxes
 to me) would be greatly appreciated.

In the directory in which the connector modules are installed, there
should also be a text file. You should be able to enable the log level
from this text file.

That said, my guess would be that this is a permissions issue -
perhaps the user context of Apache (and thus the connector which runs
inline with Apache) doesn't allow execute access to the .cfm files in
those sites.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339484
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner

  On 11/23/2010 2:48 PM, Dave Watts wrote:
 In the directory in which the connector modules are installed, there
 should also be a text file. You should be able to enable the log level
 from this text file.

What text file where?  I looked into the /opt/jrun4/lib/wsconfig folder 
and each 'connector' folder under that, and I do not see any text files, 
let alone any text files that I recognize as affecting logging details.


~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339485
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts

 In the directory in which the connector modules are installed, there
 should also be a text file. You should be able to enable the log level
 from this text file.

 What text file where?  I looked into the /opt/jrun4/lib/wsconfig folder
 and each 'connector' folder under that, and I do not see any text files,
 let alone any text files that I recognize as affecting logging details.

Welll, I don't have a copy of CF in front of me. But I think it's
a dotfile in one of the subfolders of wsconfig (wsconfig/1,
wsconfig/2, etc). I'll see if I can get to a CF server and take a
look.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsite

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339486
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner

  In the mean time, I took a closer look at the logs (I wasn't looking 
in the Apache logs before).  I found this block for the last attempt to 
request a cfm page.

[Tue Nov 23 15:17:17 2010] [notice] jrApache[18177: 60758]  could not 
open serverstore /opt/jrun4/lib/wsconfig/www/jrunserver.store: No such 
file or directory[Tue Nov 23 15:17:17 2010] [notice] jrApache[18177: 
60758]  Couldn't initialize from remote server, JRun server(s) probably 
down.

What I don't understand is why could it not open that file, it is there 
and it has the same permissions as all the other web server connectors.

/opt/jrun4/lib/wsconfig/www
$ ls -al
total 166
drwxr-xr-x   2 root root 512 May 29 13:51 .
drwxr-xr-x   8 root root 512 May 29 13:51 ..
-rw-r--r--   1 root root  14 May 29 13:51 jrunservers.store
-rwxr-xr-x   1 root root   81528 May 29 13:51 mod_jrun20.so

The following is the 'calpip' connector folder that is working just fine.

/opt/jrun4/lib/wsconfig/calpip
$ ls -al
total 166
drwxr-xr-x   2 root root 512 May 29 13:51 .
drwxr-xr-x   8 root root 512 May 29 13:51 ..
-rw-r--r--   1 root root  14 May 29 13:51 jrunservers.store
-rwxr-xr-x   1 root root   81528 May 29 13:51 mod_jrun20.so

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339487
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts

  In the mean time, I took a closer look at the logs (I wasn't looking
 in the Apache logs before).  I found this block for the last attempt to
 request a cfm page.

 [Tue Nov 23 15:17:17 2010] [notice] jrApache[18177: 60758]  could not
 open serverstore /opt/jrun4/lib/wsconfig/www/jrunserver.store: No such
 file or directory[Tue Nov 23 15:17:17 2010] [notice] jrApache[18177:
 60758]  Couldn't initialize from remote server, JRun server(s) probably
 down.

 What I don't understand is why could it not open that file, it is there
 and it has the same permissions as all the other web server connectors.

 /opt/jrun4/lib/wsconfig/www
 $ ls -al
 total 166
 drwxr-xr-x   2 root     root         512 May 29 13:51 .
 drwxr-xr-x   8 root     root         512 May 29 13:51 ..
 -rw-r--r--   1 root     root          14 May 29 13:51 jrunservers.store
 -rwxr-xr-x   1 root     root       81528 May 29 13:51 mod_jrun20.so

 The following is the 'calpip' connector folder that is working just fine.

 /opt/jrun4/lib/wsconfig/calpip
 $ ls -al
 total 166
 drwxr-xr-x   2 root     root         512 May 29 13:51 .
 drwxr-xr-x   8 root     root         512 May 29 13:51 ..
 -rw-r--r--   1 root     root          14 May 29 13:51 jrunservers.store
 -rwxr-xr-x   1 root     root       81528 May 29 13:51 mod_jrun20.so

I don't think the file should be jrunservers.store. I'm not sure why
that's working in the existing directories (maybe it isn't being read
properly in those directories either, though).

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authori

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339488
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Ian Skinner

  On 11/23/2010 3:59 PM, Dave Watts wrote:
 I don't think the file should be jrunservers.store. I'm not sure why
 that's working in the existing directories (maybe it isn't being read
 properly in those directories either, though).

I would guess not either, which leads me back to why I find these web 
server connectors to be such a black box!  They just make so little 
sense to me.  Especially since each and every system I have looked at 
that file is a single, empty, proxyservers= line.

But changing those file names on the working public servers is not 
something I can do today.  If I bring down the working sites 30 minutes 
before the end of the last day before my five day holiday, might just 
ruin that holiday for me.  So I will come back to this issue on Monday 
and advise you all on what the results are then.




~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339489
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


Re: New Apache sites return 500 Internal Server Error for all CFML requests.

2010-11-23 Thread Dave Watts

 I would guess not either, which leads me back to why I find these web
 server connectors to be such a black box!  They just make so little
 sense to me.  Especially since each and every system I have looked at
 that file is a single, empty, proxyservers= line.

Yeah, they're a mystery to me too. Looking at the docs, it looks like
you can enable logging directly in Apache:

http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf363a5d-7ffb.html

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
http://training.figleaf.com/

Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on
GSA Schedule, and provides the highest caliber vendor-authorized
instruction at our training centers, online, or onsit

~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:339490
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm


500 Internal Server Error

2010-01-12 Thread Ian Skinner

Anybody care to take a guess what a HTTP/1.1 500 538 error might mean.

We have a web application that is returning an *Internal Server Error* 
with that error code in the Apache error log file.  The trouble is I 
have no idea why.  The exact same code running on a different configured 
the same ColdFusion instance is working just fine.  Just as other 
ColdFusion applications running on this instance are.  Also I have 
robust exception messages turned on, so this is more then just a bad 
piece of code as best as I can tell.

Ian


~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329589
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: 500 Internal Server Error

2010-01-12 Thread Chad Gray

Sometimes when I use IE the robust exception message does not appear you just 
get a default IE 500 page.  Switch to Firefox or dig into the CF logs to view 
the error.



 -Original Message-
 From: Ian Skinner [mailto:h...@ilsweb.com]
 Sent: Tuesday, January 12, 2010 3:44 PM
 To: cf-talk
 Subject: 500 Internal Server Error
 
 
 Anybody care to take a guess what a HTTP/1.1 500 538 error might mean.
 
 We have a web application that is returning an *Internal Server Error*
 with that error code in the Apache error log file.  The trouble is I
 have no idea why.  The exact same code running on a different configured
 the same ColdFusion instance is working just fine.  Just as other
 ColdFusion applications running on this instance are.  Also I have
 robust exception messages turned on, so this is more then just a bad
 piece of code as best as I can tell.
 
 Ian
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329590
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 500 Internal Server Error

2010-01-12 Thread Jordan Michaels

That kind of an error is a web server error. What do your web server 
logs say?

What web server are you using?

This wording is a little confusing:

The exact same code running on a different configured the same 
ColdFusion instance is working just fine.

Do you mean a different instance on the same box? Or a different 
instance on a different box that's configured the same?

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions


Ian Skinner wrote:
 Anybody care to take a guess what a HTTP/1.1 500 538 error might mean.
 
 We have a web application that is returning an *Internal Server Error* 
 with that error code in the Apache error log file.  The trouble is I 
 have no idea why.  The exact same code running on a different configured 
 the same ColdFusion instance is working just fine.  Just as other 
 ColdFusion applications running on this instance are.  Also I have 
 robust exception messages turned on, so this is more then just a bad 
 piece of code as best as I can tell.
 
 Ian
 
 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329592
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 500 Internal Server Error

2010-01-12 Thread Jordan Michaels

Note to self: need more coffee. :)

Not sure how I missed Apache in your note. My fault.

What does your error log say exactly?

Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Open BlueDragon Steering Committee
Railo Community Distributions


Jordan Michaels wrote:
 That kind of an error is a web server error. What do your web server 
 logs say?
 
 What web server are you using?
 
 This wording is a little confusing:
 
 The exact same code running on a different configured the same 
 ColdFusion instance is working just fine.
 
 Do you mean a different instance on the same box? Or a different 
 instance on a different box that's configured the same?
 
 Warm regards,
 Jordan Michaels
 Vivio Technologies
 http://www.viviotech.net/
 Open BlueDragon Steering Committee
 Railo Community Distributions
 
 
 Ian Skinner wrote:
 Anybody care to take a guess what a HTTP/1.1 500 538 error might mean.

 We have a web application that is returning an *Internal Server Error* 
 with that error code in the Apache error log file.  The trouble is I 
 have no idea why.  The exact same code running on a different configured 
 the same ColdFusion instance is working just fine.  Just as other 
 ColdFusion applications running on this instance are.  Also I have 
 robust exception messages turned on, so this is more then just a bad 
 piece of code as best as I can tell.

 Ian



 
 

~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329593
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: 500 Internal Server Error

2010-01-12 Thread Ian Skinner

On 1/12/2010 12:57 PM, Jordan Michaels wrote:
 Note to self: need more coffee. :)

 Not sure how I missed Apache in your note. My fault.

 What does your error log say exactly?


 From the access log
10.104.97.39 - - [12/Jan/2010:12:21:19 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.39 - - [12/Jan/2010:12:22:40 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.39 - - [12/Jan/2010:12:22:42 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.39 - - [12/Jan/2010:12:22:45 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.39 - - [12/Jan/2010:12:24:21 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.39 - - [12/Jan/2010:12:24:22 -0800] GET /calpiq/index.cfm 
HTTP/1.1 500 538
10.104.97.22 - - [12/Jan/2010:12:27:15 -0800] GET /calpiq HTTP/1.1 500 538


 From the error log.
[Tue Jan 12 12:21:19 2010] [alert] [client 10.104.97.39] 
/export/home/devuser/site/htdocs/calpiq/.htaccess: order not allowed here
[Tue Jan 12 12:22:40 2010] [alert] [client 10.104.97.39] 
/export/home/devuser/site/htdocs/calpiq/.htaccess: order not allowed here
[Tue Jan 12 12:22:42 2010] [alert] [client 10.104.97.39] 
/export/home/devuser/site/htdocs/calpiq/.htaccess: order not allowed here
[Tue Jan 12 12:22:45 2010] [alert] [client 10.104.97.39] 
/export/home/devuser/site/htdocs/calpiq/.htaccess: order not allowed here


Thanks that pointed me to the rogue .htaccess file that had illegal, and 
unnecessary allow deny directives in it.



~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:329598
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: IIS 500 - Internal Server Error

2006-09-08 Thread Robertson-Ravo, Neil (RX)
Isn't the theoretical limit supposed to be 2GB with the actual limit
somewhere in the region of 1.8? I know I have seen a JVM start with at least
1.5GB - could have been more, I can't remember.







This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake
To: CF-Talk
Sent: Thu Sep 07 21:13:07 2006
Subject: RE: IIS 500 - Internal Server Error

Not forgetting that if this is a windows 32bit machine, you can only give
JVM 1GB ish of that 4gb
And if your running with the default settings then CF only has 512mb to play
with.

Russ 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED] 
Sent: 07 September 2006 20:33
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin,

No so unusual The JVM is controlled by the heap size and java.args in
your jvm.config file - NOT by the physical amount of memory on the machine..

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up

RE: IIS 500 - Internal Server Error

2006-09-08 Thread Snake
I have generally read that you can't set it much over 1gb, maybe 1.2 or 1.3
Obviously this requires tweaks elsewhere as I have tried using values
greater than 1GB and JRUN will not start 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 08 September 2006 07:16
To: CF-Talk
Subject: Re: IIS 500 - Internal Server Error

Isn't the theoretical limit supposed to be 2GB with the actual limit
somewhere in the region of 1.8? I know I have seen a JVM start with at least
1.5GB - could have been more, I can't remember.







This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake
To: CF-Talk
Sent: Thu Sep 07 21:13:07 2006
Subject: RE: IIS 500 - Internal Server Error

Not forgetting that if this is a windows 32bit machine, you can only give
JVM 1GB ish of that 4gb And if your running with the default settings then
CF only has 512mb to play with.

Russ 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 20:33
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin,

No so unusual The JVM is controlled by the heap size and java.args in
your jvm.config file - NOT by the physical amount of memory on the machine..

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out

RE: IIS 500 - Internal Server Error

2006-09-08 Thread David Low
I'd go along with that - the maximum I've been able to start the service
with, was 1.3.  It depends on other settings as well.

 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED]
 Sent: 08 September 2006 09:35
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 I have generally read that you can't set it much over 1gb, maybe 1.2
or
 1.3
 Obviously this requires tweaks elsewhere as I have tried using values
 greater than 1GB and JRUN will not start
 
 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]
 Sent: 08 September 2006 07:16
 To: CF-Talk
 Subject: Re: IIS 500 - Internal Server Error
 
 Isn't the theoretical limit supposed to be 2GB with the actual limit
 somewhere in the region of 1.8? I know I have seen a JVM start with at
 least
 1.5GB - could have been more, I can't remember.
 
 
 
 
 
 
 
 This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
 Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed
Business,
 Registered in England, Number 678540.  It contains information which
is
 confidential and may also be privileged.  It is for the exclusive use
of
 the
 intended recipient(s).  If you are not the intended recipient(s)
please
 note
 that any form of distribution, copying or use of this communication or
the
 information in it is strictly prohibited and may be unlawful.  If you
have
 received this communication in error please return it to the sender or
 call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within
 this
 communication are not necessarily those expressed by Reed
Exhibitions.
 Visit our website at http://www.reedexpo.com
 
 -Original Message-
 From: Snake
 To: CF-Talk
 Sent: Thu Sep 07 21:13:07 2006
 Subject: RE: IIS 500 - Internal Server Error
 
 Not forgetting that if this is a windows 32bit machine, you can only
give
 JVM 1GB ish of that 4gb And if your running with the default settings
then
 CF only has 512mb to play with.
 
 Russ
 
 -Original Message-
 From: Mark A Kruger [mailto:[EMAIL PROTECTED]
 Sent: 07 September 2006 20:33
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 Kevin,
 
 No so unusual The JVM is controlled by the heap size and java.args
in
 your jvm.config file - NOT by the physical amount of memory on the
 machine..
 
 -Mark
 
 
 -Original Message-
 From: Kevin Aebig [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 1:54 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 java.lang.OutOfMemoryError after some string cleaning.
 
 Which is kind of funny on a PowerEdge Quad with 4GB of RAM...?
 
 !k
 
 -Original Message-
 From: Ben Nadel [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 12:12 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 Kevin,
 
 What I would starting doing is putting
 
 cfdump var=HERE /
 cfabort /
 
 Right after your application tag.. If that works (you see HERE on the
 browser page), then cut it out and move it farther down the page
 processing.
 
 
 Keep doing this until you no longer see HERE, but in fact see the 500
 error.
 Now you know that whatever is causeing the error is between the
current
 CFDUmp and wherever the last CFDUMP was.
 
 
 Ben Nadel
 www.bennadel.com
 Certified Advanced ColdFusion Developer
 
 Need Help?
 www.bennadel.com/ask-ben/
 
 
 -Original Message-
 From: Kevin Aebig [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 2:06 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 I looked through your posts and tried flushing the output to no avail.
 
 I'm going to look over the page and the data for the 400th time, but
I'm
 not
 to optimistic at this point.
 
 !k
 
 -Original Message-
 From: Ben Nadel [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 11:47 AM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 Just in case it is a 500 null error, here are some issues that I have
had
 to
 address:
 

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm
 

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm
 
 These are all COLDFUSION errors ... Well actually MY errors in
ColdFusion
 to
 be fair :)
 
 ..
 Ben Nadel
 www.bennadel.com
 Certified Advanced ColdFusion Developer
 
 Need Help?
 www.bennadel.com/ask-ben/
 
 
 
 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 1:35 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 I was having the same thing this week.
 A developer working off my dev server, kept getting  the internal
server
 error for one specific page, yet it worked fine for me all the time.
 
 
 -Original Message-
 From: Ben Nadel [mailto:[EMAIL PROTECTED]
 Sent: 07 September 2006 18:14
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error
 
 Does the error say 500 null

RE: IIS 500 - Internal Server Error

2006-09-08 Thread Robertson-Ravo, Neil (RX)
I just started a JVM with a value of 1.5GB started fine.  I think the limit
is more like 1.8 according to the Adobe Technote.

http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19359






-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: 08 September 2006 09:35
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I have generally read that you can't set it much over 1gb, maybe 1.2 or 1.3
Obviously this requires tweaks elsewhere as I have tried using values
greater than 1GB and JRUN will not start 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: 08 September 2006 07:16
To: CF-Talk
Subject: Re: IIS 500 - Internal Server Error

Isn't the theoretical limit supposed to be 2GB with the actual limit
somewhere in the region of 1.8? I know I have seen a JVM start with at least
1.5GB - could have been more, I can't remember.







This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
Registered in England, Number 678540.  It contains information which is
confidential and may also be privileged.  It is for the exclusive use of the
intended recipient(s).  If you are not the intended recipient(s) please note
that any form of distribution, copying or use of this communication or the
information in it is strictly prohibited and may be unlawful.  If you have
received this communication in error please return it to the sender or call
our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
communication are not necessarily those expressed by Reed Exhibitions. 
Visit our website at http://www.reedexpo.com

-Original Message-
From: Snake
To: CF-Talk
Sent: Thu Sep 07 21:13:07 2006
Subject: RE: IIS 500 - Internal Server Error

Not forgetting that if this is a windows 32bit machine, you can only give
JVM 1GB ish of that 4gb And if your running with the default settings then
CF only has 512mb to play with.

Russ 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 20:33
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin,

No so unusual The JVM is controlled by the heap size and java.args in
your jvm.config file - NOT by the physical amount of memory on the machine..

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you

Re: IIS 500 - Internal Server Error

2006-09-08 Thread Andy Allan
The maximum size is 1.8 but the actual value, as David says, does
depend on other factors.

On 08/09/06, Robertson-Ravo, Neil (RX)
[EMAIL PROTECTED] wrote:
 I just started a JVM with a value of 1.5GB started fine.  I think the limit
 is more like 1.8 according to the Adobe Technote.

 http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19359






 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED]
 Sent: 08 September 2006 09:35
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 I have generally read that you can't set it much over 1gb, maybe 1.2 or 1.3
 Obviously this requires tweaks elsewhere as I have tried using values
 greater than 1GB and JRUN will not start

 -Original Message-
 From: Robertson-Ravo, Neil (RX)
 [mailto:[EMAIL PROTECTED]
 Sent: 08 September 2006 07:16
 To: CF-Talk
 Subject: Re: IIS 500 - Internal Server Error

 Isn't the theoretical limit supposed to be 2GB with the actual limit
 somewhere in the region of 1.8? I know I have seen a JVM start with at least
 1.5GB - could have been more, I can't remember.







 This e-mail is from Reed Exhibitions (Oriel House, 26 The Quadrant,
 Richmond, Surrey, TW9 1DL, United Kingdom), a division of Reed Business,
 Registered in England, Number 678540.  It contains information which is
 confidential and may also be privileged.  It is for the exclusive use of the
 intended recipient(s).  If you are not the intended recipient(s) please note
 that any form of distribution, copying or use of this communication or the
 information in it is strictly prohibited and may be unlawful.  If you have
 received this communication in error please return it to the sender or call
 our switchboard on +44 (0) 20 89107910.  The opinions expressed within this
 communication are not necessarily those expressed by Reed Exhibitions.
 Visit our website at http://www.reedexpo.com

 -Original Message-
 From: Snake
 To: CF-Talk
 Sent: Thu Sep 07 21:13:07 2006
 Subject: RE: IIS 500 - Internal Server Error

 Not forgetting that if this is a windows 32bit machine, you can only give
 JVM 1GB ish of that 4gb And if your running with the default settings then
 CF only has 512mb to play with.

 Russ

 -Original Message-
 From: Mark A Kruger [mailto:[EMAIL PROTECTED]
 Sent: 07 September 2006 20:33
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 Kevin,

 No so unusual The JVM is controlled by the heap size and java.args in
 your jvm.config file - NOT by the physical amount of memory on the machine..

 -Mark


 -Original Message-
 From: Kevin Aebig [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 1:54 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 java.lang.OutOfMemoryError after some string cleaning.

 Which is kind of funny on a PowerEdge Quad with 4GB of RAM...?

 !k

 -Original Message-
 From: Ben Nadel [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 12:12 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 Kevin,

 What I would starting doing is putting

 cfdump var=HERE /
 cfabort /

 Right after your application tag.. If that works (you see HERE on the
 browser page), then cut it out and move it farther down the page processing.


 Keep doing this until you no longer see HERE, but in fact see the 500 error.
 Now you know that whatever is causeing the error is between the current
 CFDUmp and wherever the last CFDUMP was.

 .
 Ben Nadel
 www.bennadel.com
 Certified Advanced ColdFusion Developer

 Need Help?
 www.bennadel.com/ask-ben/


 -Original Message-
 From: Kevin Aebig [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 2:06 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 I looked through your posts and tried flushing the output to no avail.

 I'm going to look over the page and the data for the 400th time, but I'm not
 to optimistic at this point.

 !k

 -Original Message-
 From: Ben Nadel [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 11:47 AM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 Just in case it is a 500 null error, here are some issues that I have had to
 address:

 http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

 http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

 These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
 be fair :)

 ...
 Ben Nadel
 www.bennadel.com
 Certified Advanced ColdFusion Developer

 Need Help?
 www.bennadel.com/ask-ben/



 -Original Message-
 From: Snake [mailto:[EMAIL PROTECTED]
 Sent: Thursday, September 07, 2006 1:35 PM
 To: CF-Talk
 Subject: RE: IIS 500 - Internal Server Error

 I was having the same thing this week.
 A developer working off my dev server, kept getting  the internal server
 error for one specific page, yet it worked fine for me all the time.


 -Original Message

IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k




~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252366
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Mark A Kruger
I would start with domain resolution stuff. IT may be that they are
accessing your site in a way that you have not anticipated (like
mydomain.com instead of www.mydomain.com) and some redirect or forward or
invokation code is choking... This 500 error usually means something screwy
between IIS and CF - neither one of them can figure out what it is :)
Helpful I know

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 11:56 AM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252367
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Ben Nadel
Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

...
Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252368
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Dave Watts
 I just found out today that a specific piece of an application we
 provide is throwing an internal server error for a specific client. 
 We've tested this same area with other clients and it seems to be 
 working fine. Because we run as an ASP, the fact that this error is 
 tossed for only one client is boggling me. We've check the data for 
 this client and everything is on the up and up.
 
 Can anyone think of a reason why this page would choke out and CF 
 would have nothing to say about it?

Are you sure CF doesn't have anything to say about it?

By default with CFMX, if you have any CF error, the web server will return
the appropriate HTTP error code - 500. If you're using Internet Explorer, it
will suppress details of the error message, if there are any. To disable
this, uncheck the Show friendly HTTP error messages option within the
Advanced tab of IE options.

You may also need to enable CF's robust exception display option to see
the full details.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!

~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252372
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Snake
I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k








~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252373
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
I'm pretty sure CF has something to do with it. Considering that it's a
localized issue, than either the data, or CF is causing this and I don't
believe it's the data.

The only thing it brings up is JRUN Servlet Error -- 500 null. And the logs
for CF are spitting out:

CF :: The specific sequence of files included or processed is:
F:\domains\[...]\mypage.cfm  

!k

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 11:29 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

 I just found out today that a specific piece of an application we
 provide is throwing an internal server error for a specific client. 
 We've tested this same area with other clients and it seems to be 
 working fine. Because we run as an ASP, the fact that this error is 
 tossed for only one client is boggling me. We've check the data for 
 this client and everything is on the up and up.
 
 Can anyone think of a reason why this page would choke out and CF 
 would have nothing to say about it?

Are you sure CF doesn't have anything to say about it?

By default with CFMX, if you have any CF error, the web server will return
the appropriate HTTP error code - 500. If you're using Internet Explorer, it
will suppress details of the error message, if there are any. To disable
this, uncheck the Show friendly HTTP error messages option within the
Advanced tab of IE options.

You may also need to enable CF's robust exception display option to see
the full details.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/

Fig Leaf Software provides the highest caliber vendor-authorized
instruction at our training centers in Washington DC, Atlanta,
Chicago, Baltimore, Northern Virginia, or on-site at your location.
Visit http://training.figleaf.com/ for more information!



~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252379
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Ben Nadel
Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

...
Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k










~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252374
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE / 
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.


Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k
















~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252392
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)


Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k












~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252380
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Ben Nadel
Kevin, 

What I would starting doing is putting

cfdump var=HERE / 
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

...
Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k














~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252381
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Mark A Kruger
Kevin,

No so unusual The JVM is controlled by the heap size and java.args in
your jvm.config file - NOT by the physical amount of memory on the machine..

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 1:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k


















~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252411
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Snake
Not forgetting that if this is a windows 32bit machine, you can only give
JVM 1GB ish of that 4gb
And if your running with the default settings then CF only has 512mb to play
with.

Russ 

-Original Message-
From: Mark A Kruger [mailto:[EMAIL PROTECTED] 
Sent: 07 September 2006 20:33
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin,

No so unusual The JVM is controlled by the heap size and java.args in
your jvm.config file - NOT by the physical amount of memory on the machine..

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k




















~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252429
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
SOLVED -- Some very old string cleaning was eating up processing time and
forcing a timeout. Thanks a lot for all the help and suggestions.

Thanks,

!k

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 12:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE / 
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

.
Ben Nadel 
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)

...
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

.
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k


















~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252431
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Mark A Kruger
One other thing occurred to me on this (and I know this is solved :) ... If
you are doing work inside of a CFC with the output parameter set to no
(cfcomponent output=no...)  you can sometimes see this behavior.

-Mark
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 3:24 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

SOLVED -- Some very old string cleaning was eating up processing time and
forcing a timeout. Thanks a lot for all the help and suggestions.

Thanks,

!k

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:54 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

java.lang.OutOfMemoryError after some string cleaning.

Which is kind of funny on a PowerEdge Quad with 4GB of RAM...? 

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:12 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Kevin, 

What I would starting doing is putting

cfdump var=HERE /
cfabort /

Right after your application tag.. If that works (you see HERE on the
browser page), then cut it out and move it farther down the page processing.


Keep doing this until you no longer see HERE, but in fact see the 500 error.
Now you know that whatever is causeing the error is between the current
CFDUmp and wherever the last CFDUMP was.

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 2:06 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I looked through your posts and tried flushing the output to no avail. 

I'm going to look over the page and the data for the 400th time, but I'm not
to optimistic at this point.

!k

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 11:47 AM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Just in case it is a 500 null error, here are some issues that I have had to
address:

http://www.bennadel.com/blog/139-ColdFusion-500-Null-Error-Revisited.htm

http://www.bennadel.com/blog/84-500-null-Mysterious-ColdFusion-Error.htm

These are all COLDFUSION errors ... Well actually MY errors in ColdFusion to
be fair :)


Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/



-Original Message-
From: Snake [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 1:35 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

I was having the same thing this week.
A developer working off my dev server, kept getting  the internal server
error for one specific page, yet it worked fine for me all the time.
 

-Original Message-
From: Ben Nadel [mailto:[EMAIL PROTECTED]
Sent: 07 September 2006 18:14
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Does the error say 500 null by any chance... If that is the case, it would
be an error in ColdFusion and I can direct you to some stuff. 

..
Ben Nadel
www.bennadel.com
Certified Advanced ColdFusion Developer

Need Help?
www.bennadel.com/ask-ben/


-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED]
Sent: Thursday, September 07, 2006 12:56 PM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k




















~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252435
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Andrew Scott
Coldfusion can and does throw a IIS 500 internal server error.

The problem is that if there is not output to the screen, and an error
occurs from CF this is what gets displayed in the browser IIS 500:-)

The only way around this is to do a cftry catch and dump the cfcatch to the
screen, forcing CF to display information about the error.
 
 
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Friday, 8 September 2006 2:56 AM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k






~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252471
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


RE: IIS 500 - Internal Server Error

2006-09-07 Thread Kevin Aebig
Actually I did that. I wrapped the whole page in a try / catch for any
exceptions and it still didn't catch it. 

The error was occurring with a custom tag, so that could be why it didn't
catch it...

!k

-Original Message-
From: Andrew Scott [mailto:[EMAIL PROTECTED] 
Sent: Thursday, September 07, 2006 6:58 PM
To: CF-Talk
Subject: RE: IIS 500 - Internal Server Error

Coldfusion can and does throw a IIS 500 internal server error.

The problem is that if there is not output to the screen, and an error
occurs from CF this is what gets displayed in the browser IIS 500:-)

The only way around this is to do a cftry catch and dump the cfcatch to the
screen, forcing CF to display information about the error.
 
 
Senior Coldfusion Developer
Aegeon Pty. Ltd.
www.aegeon.com.au
Phone: +613  8676 4223
Mobile: 0404 998 273
 

-Original Message-
From: Kevin Aebig [mailto:[EMAIL PROTECTED] 
Sent: Friday, 8 September 2006 2:56 AM
To: CF-Talk
Subject: IIS 500 - Internal Server Error

Hey all,

 

I just found out today that a specific piece of an application we provide is
throwing an internal server error for a specific client. We've tested this
same area with other clients and it seems to be working fine. Because we run
as an ASP, the fact that this error is tossed for only one client is
boggling me. We've check the data for this client and everything is on the
up and up.

 

Can anyone think of a reason why this page would choke out and CF would have
nothing to say about it?

 

!k








~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:252483
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4


500 Internal Server Error

2005-02-04 Thread Michael T. Tangorre
Every now and again I will get a 500 Internal Server Error. This happens
when I submit a CF template for processing (i.e. forms). I am developing
locally: CFMX 6.1, WinXP Pro / IIS, IE 6. Has anyone encountered this and if
so, did you find out what was causing it? My first thought is that it is not
CF related, but I have only experienced it when attempting to process CF
pages. Any insight is much appreciated.
 
Thanks,
 
Mike.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193066
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Internal Server Error (Update)

2005-02-04 Thread Michael T. Tangorre
 From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
 Every now and again I will get a 500 Internal Server Error. 
 This happens when I submit a CF template for processing (i.e. 
 forms). I am developing
 locally: CFMX 6.1, WinXP Pro / IIS, IE 6. Has anyone 
 encountered this and if so, did you find out what was causing 
 it? My first thought is that it is not CF related, but I have 
 only experienced it when attempting to process CF pages. Any 
 insight is much appreciated.

Seems to happen when certain errors are encountered on the page (stepped
through the page). The sitewide error handler is not catching them... Not
good.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193067
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 500 Internal Server Error (Update)

2005-02-04 Thread Rick Root
Michael T. Tangorre wrote:
 
 Seems to happen when certain errors are encountered on the page (stepped
 through the page). The sitewide error handler is not catching them... Not
 good.

I've experienced this as well on CFMX 6.1 Updater 1... makes code 
debugging extremely difficult.  very annoying.

  - rick


~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193068
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Internal Server Error (Update)

2005-02-04 Thread Micha Schopman
I have the same issues, and they occur only when I really have put a bug
somewhere. But it is a pain in the ass to debug, because you haven't got
an idea where to look especially with OO frameworks with a lot of
references.

Micha Schopman
Software Engineer

Modern Media, Databankweg 12 M, 3821 AL  Amersfoort
Tel 033-4535377, Fax 033-4535388
KvK Amersfoort 39081679, Rabo 39.48.05.380



-
Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren
de interactie met uw doelgroep. 
Wilt u meer omzet, lagere kosten of een beter service niveau? Voor meer
informatie zie www.modernmedia.nl 


-


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193069
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Internal Server Error (Update)

2005-02-04 Thread Michael T. Tangorre
 From: Micha Schopman [mailto:[EMAIL PROTECTED] 
 I have the same issues, and they occur only when I really 
 have put a bug somewhere. But it is a pain in the ass to 
 debug, because you haven't got an idea where to look 
 especially with OO frameworks with a lot of references.

Yeah, PITA is right. I noticed it happens most when the error/exception is
database related... This time it was a typo calling a stored procedure. 




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193071
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Internal Server Error (Update)

2005-02-04 Thread James Holmes
When a page generates very little content, IE decides to show the 500 error
instead of the actual CF error code.

Try the same page in FireFox to see if this is the problem. If so, add a
block of dummy HTML output to make IE render the error page while you are
developing. 

-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Friday, 4 February 2005 10:39 
To: CF-Talk
Subject: RE: 500 Internal Server Error (Update)

 From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Every now and 
 again I will get a 500 Internal Server Error.
 This happens when I submit a CF template for processing (i.e. 
 forms). I am developing
 locally: CFMX 6.1, WinXP Pro / IIS, IE 6. Has anyone encountered this 
 and if so, did you find out what was causing it? My first thought is 
 that it is not CF related, but I have only experienced it when 
 attempting to process CF pages. Any insight is much appreciated.

Seems to happen when certain errors are encountered on the page (stepped
through the page). The sitewide error handler is not catching them... Not
good.






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193072
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 500 Internal Server Error (Update)

2005-02-04 Thread Bert Dawson
Have you tried going to CF admin and unchecking the Enable HTTP
status codes on the settings page?

Bert 


On Fri, 4 Feb 2005 09:47:54 -0500, Michael T. Tangorre
[EMAIL PROTECTED] wrote:
  From: Micha Schopman [mailto:[EMAIL PROTECTED]
  I have the same issues, and they occur only when I really
  have put a bug somewhere. But it is a pain in the ass to
  debug, because you haven't got an idea where to look
  especially with OO frameworks with a lot of references.
 
 Yeah, PITA is right. I noticed it happens most when the error/exception is
 database related... This time it was a typo calling a stored procedure.
 
 
 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193073
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 Internal Server Error

2005-02-04 Thread Pat Wenke
Do you have Enable HTTP status codes turned off in CF Admin?  We had
the same problem until I saw a post from Ben Forta regarding the
setting.  Ever since I turned it off, we haven't had a problem.



-Original Message-
From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 04, 2005 8:33 AM
To: CF-Talk
Subject: 500 Internal Server Error

Every now and again I will get a 500 Internal Server Error. This
happens
when I submit a CF template for processing (i.e. forms). I am developing
locally: CFMX 6.1, WinXP Pro / IIS, IE 6. Has anyone encountered this
and if
so, did you find out what was causing it? My first thought is that it is
not
CF related, but I have only experienced it when attempting to process CF
pages. Any insight is much appreciated.
 
Thanks,
 
Mike.






~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:193074
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 - Internal Server Error

2004-12-30 Thread Duane Boudreau
Thanks Ben. That did the trick. It was driving me nuts trying to track down
bugs!

Duane



-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 29, 2004 4:48 PM
To: CF-Talk
Subject: RE: 500 - Internal Server Error

Duane, go to the CF Admin and turn of HTTP status codes, then you'll see the
real error (instead of the generic 500).

--- Ben
 

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 29, 2004 4:44 PM
To: CF-Talk
Subject: 500 - Internal Server Error

Hi All,

 

On my dev laptop lately I am getting 500 - Internal Server Error when ever
I

display a page with a ColdFusion error on it. I am running CFMX, WinXP Pro

and the Dot Net framework. Any ideas why this might be happening and how to

fix?

 

Thanks,

Duane







~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188993
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 500 - Internal Server Error

2004-12-30 Thread Mark Drew
This has been one of those Gotchas for me sometimes on different
servers where everything else *should* have been the same

MD


On Thu, 30 Dec 2004 09:53:18 -0500, Duane Boudreau [EMAIL PROTECTED] wrote:
 Thanks Ben. That did the trick. It was driving me nuts trying to track down
 bugs!
 
 Duane
 
 
 -Original Message-
 From: Ben Forta [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 29, 2004 4:48 PM
 To: CF-Talk
 Subject: RE: 500 - Internal Server Error
 
 Duane, go to the CF Admin and turn of HTTP status codes, then you'll see the
 real error (instead of the generic 500).
 
 --- Ben
 
 -Original Message-
 From: Duane Boudreau [mailto:[EMAIL PROTECTED]
 Sent: Wednesday, December 29, 2004 4:44 PM
 To: CF-Talk
 Subject: 500 - Internal Server Error
 
 Hi All,
 
 On my dev laptop lately I am getting 500 - Internal Server Error when ever
 I
 
 display a page with a ColdFusion error on it. I am running CFMX, WinXP Pro
 
 and the Dot Net framework. Any ideas why this might be happening and how to
 
 fix?
 
 Thanks,
 
 Duane
 
 

~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188996
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 - Internal Server Error

2004-12-30 Thread Ben Forta
I know, that one bugs me, I've always thought that it should be off by
default. Anyway, glad that did it.

--- Ben
 

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 30, 2004 9:53 AM
To: CF-Talk
Subject: RE: 500 - Internal Server Error

Thanks Ben. That did the trick. It was driving me nuts trying to track down
bugs!

Duane



-Original Message-
From: Ben Forta [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 29, 2004 4:48 PM
To: CF-Talk
Subject: RE: 500 - Internal Server Error

Duane, go to the CF Admin and turn of HTTP status codes, then you'll see the
real error (instead of the generic 500).

--- Ben
 

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED]
Sent: Wednesday, December 29, 2004 4:44 PM
To: CF-Talk
Subject: 500 - Internal Server Error

Hi All,

 

On my dev laptop lately I am getting 500 - Internal Server Error when ever
I

display a page with a ColdFusion error on it. I am running CFMX, WinXP Pro

and the Dot Net framework. Any ideas why this might be happening and how to

fix?

 

Thanks,

Duane









~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188997
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


500 - Internal Server Error

2004-12-29 Thread Duane Boudreau
Hi All,

 

On my dev laptop lately I am getting 500 - Internal Server Error when ever
I

display a page with a ColdFusion error on it. I am running CFMX, WinXP Pro

and the Dot Net framework. Any ideas why this might be happening and how to

fix?

 

Thanks,

Duane



~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188961
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 - Internal Server Error

2004-12-29 Thread Ben Forta
Duane, go to the CF Admin and turn of HTTP status codes, then you'll see the
real error (instead of the generic 500).

--- Ben
 

-Original Message-
From: Duane Boudreau [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, December 29, 2004 4:44 PM
To: CF-Talk
Subject: 500 - Internal Server Error

Hi All,

 

On my dev laptop lately I am getting 500 - Internal Server Error when ever
I

display a page with a ColdFusion error on it. I am running CFMX, WinXP Pro

and the Dot Net framework. Any ideas why this might be happening and how to

fix?

 

Thanks,

Duane





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188962
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


RE: 500 - Internal Server Error

2004-12-29 Thread Dave Watts
 On my dev laptop lately I am getting 500 - Internal Server 
 Error when ever I
 
 display a page with a ColdFusion error on it. I am running 
 CFMX, WinXP Pro
 
 and the Dot Net framework. Any ideas why this might be 
 happening and how to fix?

I have no idea why it's happening, but you should see if you can get a more
detailed error message than that. If you're using Internet Explorer, go into
the settings and disable the Show friendly HTTP error messages option. You
might also take a look at your CF error logs.

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
phone: 202-797-5496
fax: 202-797-5444


~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188963
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Intermittent 500 Internal Server Error

2002-11-14 Thread Seth Petry-Johnson
I just removed and re-installed IIS and CFMX on a Win2k Professional
development box.  Everything seems to work fine, EXCEPT that certain files
will intermittently throw up the HTTP 500 Internal Server Error message when
I access them through the browser.  I have a file called _actions_cart.cfm
that processes all of my shopping cart actions, this page seems to have the
most problems.  Sometimes it works, but most of the time it throws up the
error.  (Interestingly enough, I removed and re-installed everything because
I started getting this error every single time on all of my pages)

I haven't yet been able to determine if there is a relationship between the
amount of form data or querystring params and the chance of getting the
error.

Anyone have any suggestions?

Thanks in advance,
Seth Petry-Johnson

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=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.



RE: 500 Internal Server Error

2002-08-09 Thread Bryan F. Hogan

Here is the action page. Very simple just loops the the query records.

cfquery name=GetCompanies datasource=#DSN#
SELECT  *
FROMtbl_Members
WHERE   CategoryID=#FORM.CategoryID# AND DeActivate = 0 AND FirstName 
'Administrator'
ORDER BY BusinessName
/cfquery

-Original Message-
From: mark brinkworth [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 08, 2002 9:06 PM
To: CF-Talk
Subject: Re: 500 Internal Server Error


Nothing obvious here. It would be helpful if you could indicate, or give
some code, indicating what happens of the action page.

I have a select list, a user chooses what category they want to view and
click submit. The submit is a input type img.

Most of the selects work as desired, but a few when selected and the form
is
submitted get a 500 internal server error.

An example is below.
form name=Category_Search method=post
action=/categorysearch/index.cfm
select name=Category
   option value=1Category 1/option
   option value=2Category 2/option
/select
input type=img src=/assets/images/gobutton.gif
/form

Category 1 will work correctly, but category 2 will show 500 internal
server
error.

??

P.S. This is not my actual code but setup basically the same without the
variables, loop, tables, etc.




__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: 500 Internal Server Error

2002-08-09 Thread John Beynon

Are you using IE? If you turn off friendly error messages you might get more
of a clue as to the root of the problem,

Jb.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] 
Sent: 09 August 2002 14:22
To: CF-Talk
Subject: RE: 500 Internal Server Error


Here is the action page. Very simple just loops the the query records.

cfquery name=GetCompanies datasource=#DSN#
SELECT  *
FROMtbl_Members
WHERE   CategoryID=#FORM.CategoryID# AND DeActivate = 0 AND
FirstName 
'Administrator'
ORDER BY BusinessName
/cfquery

-Original Message-
From: mark brinkworth [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 08, 2002 9:06 PM
To: CF-Talk
Subject: Re: 500 Internal Server Error


Nothing obvious here. It would be helpful if you could indicate, or give
some code, indicating what happens of the action page.

I have a select list, a user chooses what category they want to view 
and click submit. The submit is a input type img.

Most of the selects work as desired, but a few when selected and the 
form is submitted get a 500 internal server error.

An example is below.
form name=Category_Search method=post 
action=/categorysearch/index.cfm
select name=Category
   option value=1Category 1/option
   option value=2Category 2/option
/select
input type=img src=/assets/images/gobutton.gif
/form

Category 1 will work correctly, but category 2 will show 500 internal 
server error.

??

P.S. This is not my actual code but setup basically the same without 
the variables, loop, tables, etc.





__
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: 500 Internal Server Error

2002-08-09 Thread Bryan F. Hogan

IE yes, error return is An error has been logged. did not find anything in
the event viewer. Don't know where else to look. But what is funny is that
it only happens on some of the select options.

-Original Message-
From: John Beynon [mailto:[EMAIL PROTECTED]]
Sent: Friday, August 09, 2002 9:27 AM
To: CF-Talk
Subject: RE: 500 Internal Server Error


Are you using IE? If you turn off friendly error messages you might get more
of a clue as to the root of the problem,

Jb.

-Original Message-
From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]]
Sent: 09 August 2002 14:22
To: CF-Talk
Subject: RE: 500 Internal Server Error


Here is the action page. Very simple just loops the the query records.

cfquery name=GetCompanies datasource=#DSN#
SELECT  *
FROMtbl_Members
WHERE   CategoryID=#FORM.CategoryID# AND DeActivate = 0 AND
FirstName 
'Administrator'
ORDER BY BusinessName
/cfquery

-Original Message-
From: mark brinkworth [mailto:[EMAIL PROTECTED]]
Sent: Thursday, August 08, 2002 9:06 PM
To: CF-Talk
Subject: Re: 500 Internal Server Error


Nothing obvious here. It would be helpful if you could indicate, or give
some code, indicating what happens of the action page.

I have a select list, a user chooses what category they want to view
and click submit. The submit is a input type img.

Most of the selects work as desired, but a few when selected and the
form is submitted get a 500 internal server error.

An example is below.
form name=Category_Search method=post
action=/categorysearch/index.cfm
select name=Category
   option value=1Category 1/option
   option value=2Category 2/option
/select
input type=img src=/assets/images/gobutton.gif
/form

Category 1 will work correctly, but category 2 will show 500 internal
server error.

??

P.S. This is not my actual code but setup basically the same without
the variables, loop, tables, etc.






__
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



500 Internal Server Error

2002-08-08 Thread Bryan F. Hogan

I have a select list, a user chooses what category they want to view and
click submit. The submit is a input type img.

Most of the selects work as desired, but a few when selected and the form is
submitted get a 500 internal server error.

An example is below.
form name=Category_Search method=post
action=/categorysearch/index.cfm
select name=Category
option value=1Category 1/option
option value=2Category 2/option
/select
input type=img src=/assets/images/gobutton.gif
/form

Category 1 will work correctly, but category 2 will show 500 internal server
error.

??

P.S. This is not my actual code but setup basically the same without the
variables, loop, tables, etc.

Bryan

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: 500 Internal Server Error

2002-08-08 Thread mark brinkworth

Nothing obvious here. It would be helpful if you could indicate, or give 
some code, indicating what happens of the action page.

I have a select list, a user chooses what category they want to view and
click submit. The submit is a input type img.

Most of the selects work as desired, but a few when selected and the form 
is
submitted get a 500 internal server error.

An example is below.
form name=Category_Search method=post
action=/categorysearch/index.cfm
select name=Category
   option value=1Category 1/option
   option value=2Category 2/option
/select
input type=img src=/assets/images/gobutton.gif
/form

Category 1 will work correctly, but category 2 will show 500 internal 
server
error.

??

P.S. This is not my actual code but setup basically the same without the
variables, loop, tables, etc.



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: HTTP 500 - Internal Server Error (URGENT)

2002-07-22 Thread Matt Robertson

I've heard the explanation before on this list, but frankly I don't
recall it. ;D  Just parroting back the advice I got and have seen
elsewhere.

I, too had a server that worked just fine with everything set to Medium.
Then after a reinstall I got 500's everywhere, and learned of the need
for Low.  Never did figure out how it worked for me on Medium.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: Douglas Brown [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, July 21, 2002 10:51 PM
To: CF-Talk
Subject: Re: HTTP 500 - Internal Server Error (URGENT)


Why would that happen? All sites on my server are set to (pooled) and
all work fine.




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: JAIME HOI [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, July 21, 2002 10:36 PM
Subject: RE: HTTP 500 - Internal Server Error (URGENT)


 thank you s much!! it works like magic! But why is that so , if u 
 dun mind explaining



 -Original Message-
 From: Matt Robertson [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 22, 2002 12:12 PM
 To: CF-Talk
 Subject: RE: HTTP 500 - Internal Server Error (URGENT)


 Go into IIS Manager.  Click the Home Directory tab for the affected 
 web site.  The Application Protection setting should be at Low (IIS 
 Process).

 Leaving it at the default of Medium (Pooled) will give you a 500 
 error.

 --Matt Robertson--
 MSB Designs, Inc.
 http://mysecretbase.com



 -Original Message-
 From: JAIME HOI [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, July 21, 2002 6:31 PM
 To: CF-Talk
 Subject: HTTP 500 - Internal Server Error (URGENT)


 Hi
I am using the Windows 2000 Professional on my workstation. However

 my coldfusion files cannot be displayed. And i dun think the problem 
 lies with Coldfusion server as i get this error code HTTP 500- 
 Internal Server Error. Does anyone knows how i can resolve this 
 error?

 Thanks!



 

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



HTTP 500 - Internal Server Error (URGENT)

2002-07-21 Thread JAIME HOI

Hi 
   I am using the Windows 2000 Professional on my workstation. However my
coldfusion files cannot be displayed. And i dun think the problem lies with
Coldfusion server as i get this error code HTTP 500- Internal Server
Error. Does anyone knows how i can resolve this error? 

Thanks!

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: HTTP 500 - Internal Server Error (URGENT)

2002-07-21 Thread Matt Robertson

Go into IIS Manager.  Click the Home Directory tab for the affected web
site.  The Application Protection setting should be at Low (IIS
Process).

Leaving it at the default of Medium (Pooled) will give you a 500 error.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: JAIME HOI [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, July 21, 2002 6:31 PM
To: CF-Talk
Subject: HTTP 500 - Internal Server Error (URGENT)


Hi 
   I am using the Windows 2000 Professional on my workstation. However
my coldfusion files cannot be displayed. And i dun think the problem
lies with Coldfusion server as i get this error code HTTP 500- Internal
Server Error. Does anyone knows how i can resolve this error? 

Thanks!


__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: HTTP 500 - Internal Server Error (URGENT)

2002-07-21 Thread JAIME HOI

thank you s much!! it works like magic! But why is that so , if u dun
mind explaining



-Original Message-
From: Matt Robertson [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 22, 2002 12:12 PM
To: CF-Talk
Subject: RE: HTTP 500 - Internal Server Error (URGENT)


Go into IIS Manager.  Click the Home Directory tab for the affected web
site.  The Application Protection setting should be at Low (IIS
Process).

Leaving it at the default of Medium (Pooled) will give you a 500 error.

--Matt Robertson--
MSB Designs, Inc.
http://mysecretbase.com



-Original Message-
From: JAIME HOI [mailto:[EMAIL PROTECTED]] 
Sent: Sunday, July 21, 2002 6:31 PM
To: CF-Talk
Subject: HTTP 500 - Internal Server Error (URGENT)


Hi 
   I am using the Windows 2000 Professional on my workstation. However
my coldfusion files cannot be displayed. And i dun think the problem
lies with Coldfusion server as i get this error code HTTP 500- Internal
Server Error. Does anyone knows how i can resolve this error? 

Thanks!



__
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
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: HTTP 500 - Internal Server Error (URGENT)

2002-07-21 Thread Douglas Brown

Why would that happen? All sites on my server are set to (pooled) and all work
fine.




Douglas Brown
Email: [EMAIL PROTECTED]
- Original Message -
From: JAIME HOI [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, July 21, 2002 10:36 PM
Subject: RE: HTTP 500 - Internal Server Error (URGENT)


 thank you s much!! it works like magic! But why is that so , if u dun
 mind explaining



 -Original Message-
 From: Matt Robertson [mailto:[EMAIL PROTECTED]]
 Sent: Monday, July 22, 2002 12:12 PM
 To: CF-Talk
 Subject: RE: HTTP 500 - Internal Server Error (URGENT)


 Go into IIS Manager.  Click the Home Directory tab for the affected web
 site.  The Application Protection setting should be at Low (IIS
 Process).

 Leaving it at the default of Medium (Pooled) will give you a 500 error.

 --Matt Robertson--
 MSB Designs, Inc.
 http://mysecretbase.com



 -Original Message-
 From: JAIME HOI [mailto:[EMAIL PROTECTED]]
 Sent: Sunday, July 21, 2002 6:31 PM
 To: CF-Talk
 Subject: HTTP 500 - Internal Server Error (URGENT)


 Hi
I am using the Windows 2000 Professional on my workstation. However
 my coldfusion files cannot be displayed. And i dun think the problem
 lies with Coldfusion server as i get this error code HTTP 500- Internal
 Server Error. Does anyone knows how i can resolve this error?

 Thanks!



 
__
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: Scheduler Problem : 500 Internal Server Error (IGNORE PREV M AIL)

2002-07-05 Thread JAIME HOI

Sorry please ignore. Its ok now. There was some mislinks that's why
scheduler cannot run. 


-Original Message-
From: JAIME HOI [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 05, 2002 4:45 PM
To: CF-Talk
Subject: Scheduler Problem : 500 Internal Server Error


hi all 
i'm trying to run a scheduled job on CF Server. However it keep
giving this error  Status Code is 500 Internal Server Error from the
schduler.log. I have tried to run this file direct from the browser and it
works. So i really have no idea why when i pass it to the scheduler it
doesn't work. 


__
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: HTTP 500 - Internal server error

2002-05-02 Thread Christopher Olive

is it a form result page?  check to see if the action page is an actual extant page.

christopher olive
cto, vp of web development, vp it security
atnet solutions, inc.
410.931.4092
http://www.atnetsolutions.com


-Original Message-
From: Louis Klepner [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, May 01, 2002 9:46 PM
To: CF-Talk
Subject: HTTP 500 - Internal server error


Well... I was plugging away, working on a project-
When all of a sudden I got an HTTP 500 - Internal server error on one
particular page...

It's not a CF error msg, but an IIS error msg - Any ideas what I might have
done wrong? The file APPEARS to be fine, I can open it, edit it, etc.

TIA!

-Lou


__
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
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: HTTP 500 - Internal server error

2002-05-02 Thread Frank Mamone

Not sure what you mean by extant page, but the problem was resolved. I ran
an ASP page to see if that worked. It asked me to login and the  ASP stuff
came in. I then tried CF again and it started working.

Not sure what happenned there.


- Original Message -
From: Christopher Olive [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, May 02, 2002 12:14 PM
Subject: RE: HTTP 500 - Internal server error


 is it a form result page?  check to see if the action page is an actual
extant page.

 christopher olive
 cto, vp of web development, vp it security
 atnet solutions, inc.
 410.931.4092
 http://www.atnetsolutions.com


 -Original Message-
 From: Louis Klepner [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, May 01, 2002 9:46 PM
 To: CF-Talk
 Subject: HTTP 500 - Internal server error


 Well... I was plugging away, working on a project-
 When all of a sudden I got an HTTP 500 - Internal server error on one
 particular page...

 It's not a CF error msg, but an IIS error msg - Any ideas what I might
have
 done wrong? The file APPEARS to be fine, I can open it, edit it, etc.

 TIA!

 -Lou


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



HTTP 500 - Internal server error

2002-05-01 Thread Louis Klepner

Well... I was plugging away, working on a project-
When all of a sudden I got an HTTP 500 - Internal server error on one
particular page...

It's not a CF error msg, but an IIS error msg - Any ideas what I might have
done wrong? The file APPEARS to be fine, I can open it, edit it, etc.

TIA!

-Lou

__
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



Ignore: HTTP 500 - Internal server error

2002-05-01 Thread Louis Klepner

Whatever it was, it's resolved itself... 
(which makes me wonder...??)

-Lou
__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
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: 500 internal server error wap coldfusion

2002-03-26 Thread Dave Watts

 anyone know why I keep getting a 500 internal server 
 error when trying to use wap with CF. I have the 
 cfcontent tag at the top of the page. This is annoying 
 me. if anyone has gotten wap and cf to work together, 
 plwase help.

Lots of people have successfully done this, myself included. It might be
helpful for you to provide more information. If you're using the Openwave
(phone.com) WAP/WML emulator, what's showing up in the debug window? If
you're not using the emulator, you should try doing so - it has a useful
debug window! What does your code look like?

Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444

__
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



500 internal server error wap coldfusion

2002-03-25 Thread Tony_Petruzzi

anyone know why I keep getting a 500 internal server error when trying to
use wap with CF. I have the cfcontent tag at the top of the page. This is
annoying me. if anyone has gotten wap and cf to work together, plwase help.
__
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: http 500 Internal Server Error and CF installation

2001-04-19 Thread Stephenie Hamilton

true, but i always try that first. no need to rebuild the engine if your
only out of gas grin


--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 5:43 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


that depends.  i've always had to (per instructions provided by Dave Watts)
reinstall CF.  however, the "500 error" is pretty generic.  your way will
fix 90% of the problems.  however, if he just did an install, he may also be
seeing these problems.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 4:19 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


no need to reinstall, go into IIS, application settings, remove and recreate
the app...should fix it fine

--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 3:00 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


you need to reinstall Win2K.  it comes bundled with MDAC 2.5, and when
installing CF over it, it breaks.  just "upgrade" to Win2K FROM win2K and
it'll be fine.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 1:14 PM
To: CF-Talk
Subject: http 500 Internal Server Error and CF installation



I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
html pages to display but not the cfm pages, when for example, going to the
cf administrator page. I get an http 500 Internal Server Error. I have
followed all the instructions in the knowledge base article 7671 and the
problem persists.

There has to be a simple fix for this but I can't figure it out.

Thanks,
Sebastian

--


There is a problem with the page you are trying
to reach and it cannot be displayed.




Please try the following:

Open the 127.0.0.1 home page, and then look for links to the information you
want.
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet.
You can also see a list of related sites.


HTTP 500 - Internal server error
Internet Explorer
~~
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: http 500 Internal Server Error and CF installation

2001-04-19 Thread Christopher Olive, CIO

roger.  for some reason i assumed that he had just installed all that mess.
rebuilding the engine is something i ALWAYS do the first time around. :)

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]]
Sent: Thursday, April 19, 2001 9:13 AM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


true, but i always try that first. no need to rebuild the engine if your
only out of gas grin


--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 5:43 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


that depends.  i've always had to (per instructions provided by Dave Watts)
reinstall CF.  however, the "500 error" is pretty generic.  your way will
fix 90% of the problems.  however, if he just did an install, he may also be
seeing these problems.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 4:19 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


no need to reinstall, go into IIS, application settings, remove and recreate
the app...should fix it fine

--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 3:00 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


you need to reinstall Win2K.  it comes bundled with MDAC 2.5, and when
installing CF over it, it breaks.  just "upgrade" to Win2K FROM win2K and
it'll be fine.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 1:14 PM
To: CF-Talk
Subject: http 500 Internal Server Error and CF installation



I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
html pages to display but not the cfm pages, when for example, going to the
cf administrator page. I get an http 500 Internal Server Error. I have
followed all the instructions in the knowledge base article 7671 and the
problem persists.

There has to be a simple fix for this but I can't figure it out.

Thanks,
Sebastian

--


There is a problem with the page you are trying
to reach and it cannot be displayed.




Please try the following:

Open the 127.0.0.1 home page, and then look for links to the information you
want.
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet.
You can also see a list of related sites.


HTTP 500 - Internal server error
Internet Explorer
~~
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



http 500 Internal Server Error and CF installation

2001-04-18 Thread sebastian palmigiani


I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
html pages to display but not the cfm pages, when for example, going to the
cf administrator page. I get an http 500 Internal Server Error. I have
followed all the instructions in the knowledge base article 7671 and the
problem persists.

There has to be a simple fix for this but I can't figure it out.

Thanks,
Sebastian

--


There is a problem with the page you are trying
to reach and it cannot be displayed.




Please try the following:

Open the 127.0.0.1 home page, and then look for links to the information you
want. 
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet.
You can also see a list of related sites.


HTTP 500 - Internal server error
Internet Explorer  



~~
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: http 500 Internal Server Error and CF installation

2001-04-18 Thread Stephenie Hamilton

no need to reinstall, go into IIS, application settings, remove and recreate
the app...should fix it fine

--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 3:00 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


you need to reinstall Win2K.  it comes bundled with MDAC 2.5, and when
installing CF over it, it breaks.  just "upgrade" to Win2K FROM win2K and
it'll be fine.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 1:14 PM
To: CF-Talk
Subject: http 500 Internal Server Error and CF installation



I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
html pages to display but not the cfm pages, when for example, going to the
cf administrator page. I get an http 500 Internal Server Error. I have
followed all the instructions in the knowledge base article 7671 and the
problem persists.

There has to be a simple fix for this but I can't figure it out.

Thanks,
Sebastian

--


There is a problem with the page you are trying
to reach and it cannot be displayed.




Please try the following:

Open the 127.0.0.1 home page, and then look for links to the information you
want.
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet.
You can also see a list of related sites.


HTTP 500 - Internal server error
Internet Explorer
~~
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: http 500 Internal Server Error and CF installation

2001-04-18 Thread Christopher Olive, CIO

that depends.  i've always had to (per instructions provided by Dave Watts)
reinstall CF.  however, the "500 error" is pretty generic.  your way will
fix 90% of the problems.  however, if he just did an install, he may also be
seeing these problems.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: Stephenie Hamilton [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 4:19 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


no need to reinstall, go into IIS, application settings, remove and recreate
the app...should fix it fine

--
Stephenie Hamilton
Senior ColdFusion Administrator
Express Technologies, Inc.
want CF_Freedom?
try CFXHosting.com



-Original Message-
From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 3:00 PM
To: CF-Talk
Subject: RE: http 500 Internal Server Error and CF installation


you need to reinstall Win2K.  it comes bundled with MDAC 2.5, and when
installing CF over it, it breaks.  just "upgrade" to Win2K FROM win2K and
it'll be fine.

chris olive, cio
cresco technologies
[EMAIL PROTECTED]
http://www.crescotech.com



-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 18, 2001 1:14 PM
To: CF-Talk
Subject: http 500 Internal Server Error and CF installation



I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
html pages to display but not the cfm pages, when for example, going to the
cf administrator page. I get an http 500 Internal Server Error. I have
followed all the instructions in the knowledge base article 7671 and the
problem persists.

There has to be a simple fix for this but I can't figure it out.

Thanks,
Sebastian

--


There is a problem with the page you are trying
to reach and it cannot be displayed.




Please try the following:

Open the 127.0.0.1 home page, and then look for links to the information you
want.
Click the  Refresh button, or try again later.

Click  Search to look for information on the Internet.
You can also see a list of related sites.


HTTP 500 - Internal server error
Internet Explorer
~~
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: http 500 Internal Server Error and CF installation

2001-04-18 Thread sebastian palmigiani


I found out what the problem was. Under properties of the default web site
there is 'Application Protection' which was set to 'Medium Pooled' and when
I changed it to 'Low IIS Process' I was able to get the administrator page
and cfm pages displayed.


What a day. I started at 6:30 this morning and just now solved it.

Sebastian


on 4/18/01 3:18 PM, Stephenie Hamilton at [EMAIL PROTECTED] wrote:

 no need to reinstall, go into IIS, application settings, remove and recreate
 the app...should fix it fine
 
 --
 Stephenie Hamilton
 Senior ColdFusion Administrator
 Express Technologies, Inc.
 want CF_Freedom?
 try CFXHosting.com
 
 
 
 -Original Message-
 From: Christopher Olive, CIO [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 18, 2001 3:00 PM
 To: CF-Talk
 Subject: RE: http 500 Internal Server Error and CF installation
 
 
 you need to reinstall Win2K.  it comes bundled with MDAC 2.5, and when
 installing CF over it, it breaks.  just "upgrade" to Win2K FROM win2K and
 it'll be fine.
 
 chris olive, cio
 cresco technologies
 [EMAIL PROTECTED]
 http://www.crescotech.com
 
 
 
 -Original Message-
 From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, April 18, 2001 1:14 PM
 To: CF-Talk
 Subject: http 500 Internal Server Error and CF installation
 
 
 
 I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the
 html pages to display but not the cfm pages, when for example, going to the
 cf administrator page. I get an http 500 Internal Server Error. I have
 followed all the instructions in the knowledge base article 7671 and the
 problem persists.
 
 There has to be a simple fix for this but I can't figure it out.
 
 Thanks,
 Sebastian
 
 --
 
 
 There is a problem with the page you are trying
 to reach and it cannot be displayed.
 
 
 
 
 Please try the following:
 
 Open the 127.0.0.1 home page, and then look for links to the information you
 want.
 Click the  Refresh button, or try again later.
 
 Click  Search to look for information on the Internet.
 You can also see a list of related sites.
 
 
 HTTP 500 - Internal server error
 Internet Explorer

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