• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Problem while configuring Custom error messages in Apache

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I am trying to configure custom error messages in Apache web server v1.3 of Websphere App server v3.5
I have already set the following configuration in httpd.conf file:
LanguagePriority en fr de
Alias /errordocs "D:/IBM/IBM HTTP Server/htdocs/errordocs"
<Directory "D:/IBM/IBM HTTP Server/htdocs/errordocs">
AllowOverride none
Options MultiViews IncludesNoExec FollowSymLinks
AddType text/html .shtml
AddHandler server-parsed .shtml
</Directory>
# "500 Internal Server Error"
ErrorDocument 500 /errordocs/500
Also, i have created the 500.shtml.en file and placed in the htdocs/errordocs directory
but still i am getting "Page cannot be displayed" error for Http Server Error 500
Am i missing something??
Appreciate if someone can help!!
 
Ranch Hand
Posts: 906
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is an Apache forum where you should better post your question (if you want to have an answer )
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic