• 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
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

Urgent help please !!!!!!!! - Http server is not starting !!!

 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
For avoiding crstal page server error while seeing the crystal reports, ( plugin of crstal reports with Http server.).
From Segate crystal support we got the reply to add the following lines given below. But if we are adding it in the conf file and restarting the http service / the m/c itself., I am getting the error as follows.
Could not start the IBM HTTP Server service on Local Computer.
The service did not return an error. This could be an internal Windows error or an internal service error.
If the problem persists, contact your system administrator.
----------------------------------------------
Code which I added in httpd.conf file which I got from crystal support as follows.
--------------------------------------------
# The Crystal Enterprise Launchpad
<IfModule mod_alias.c>
Alias /crystal/ "C:/Program Files/Seagate Software/Web Content/"
<Directory "C:/Program Files/Seagate Software/Web Content/">
Options Indexes Multiviews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
# The Crystal Enterprise Viewers
Alias /viewer/ "C:/Program Files/Seagate Software/Viewers/"
<Directory "C:/Program Files/Seagate Software/viewers/">
Options Indexes Multiviews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</IfModule>
# Handle CE file extensions with the CGI connector
<IfModule mod_actions.c>
Action crystal-wcs /cgi-bin/wcscgi.cgi (or wcscgi.exe)
AddHandler crystal-wcs .rpt .shtx .csp .cri .cwr
</IfModule>
-----------------------------------------------
Can any one please help me to solve this please.
 
Ranch Hand
Posts: 179
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This is probably a syntax error in the Apache config file. Navigate to d:\installdir\httpserver. From the command line execute d:> apache -t. This checks the apache config file. Now run apache from the commandline. d:\installdir\httpserver\apache start. Check for error messages. Stop apache by opening up another prompt and issuing "apache stop".
 
Would you turn that thing down? I'm controlling a mind here! Look ... look at the tiny ad ...
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic