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


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


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


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


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



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