Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

Installed apache for Bugzilla, can't see interface

Options
  • 31-03-2008 2:43pm
    #1
    Moderators, Arts Moderators Posts: 35,474 Mod ✭✭✭✭


    Hope this is the right sub-forum...

    I set up bugzilla on my work PC (Windows) as a test environment using the guide here.

    When setting up Apache I got an error message to the effect that port 80 was in use by IIS, so I used 8080 instead. When I reached the end of the configuration stage I ran checksetup.pl to create the dbase, admin user and password. Now, when I go to http://localhost I get a blank page and on http://localhost:8080 I get an internal server error. I don't have access to the company router to forward ports incoming to my machine, but I thought it should work alright on localhost. Unfortunately, I don't know which part of the setup I've not done correctly or why I'm getting blank pages/server errors.

    Any ideas?


Comments

  • Closed Accounts Posts: 17,208 ✭✭✭✭aidan_walsh


    Whats the internal server error you're getting? It could be Apache grumbling at you.


  • Moderators, Arts Moderators Posts: 35,474 Mod ✭✭✭✭pickarooney


    The server encountered an internal error or misconfiguration and was unable to complete your request.
    
    Please contact the server administrator, XXXX and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    
    More information about this error may be available in the server error log.
    

    This is when I put Listen 8080 in httpd.conf in the Apache folder. If I put Listen localhost:8080 I get a "this webpage cannot be displayed error".


  • Registered Users Posts: 3,886 ✭✭✭cgarvey


    Now, when I go to http://localhost I get a blank page and on http://localhost:8080 I get an internal server error.
    The former address is going to your IIS (as you mentioned already), the latter giving the error could be for any number of reasons (permissions probably the most likely for a new install). Check the logs/error.log in your Apache install directory for an explanation (which might not always be that helpful!) and take it from there.


  • Moderators, Arts Moderators Posts: 35,474 Mod ✭✭✭✭pickarooney


    cgarvey wrote: »
    The former address is going to your IIS (as you mentioned already), the latter giving the error could be for any number of reasons (permissions probably the most likely for a new install). Check the logs/error.log in your Apache install directory for an explanation (which might not always be that helpful!) and take it from there.

    Not able to spawn child process C:/Bugzilla/index.cgi (path not found). The file does exist, FWIW.

    Log also complains that C:/Bugzilla/favicon.ico does not exist. It doesn't, but I can't see that being a criritcal error.

    This looks like it might be the nub of the issue:

    (OS 10048)Une seule utilisation de chaque adresse de socket (protocole/adresse réseau/port) est habituellement autorisée. : make_sock: could not bind to address 0.0.0.0:8080

    (Only one instance of each socket address (protocol/network address/port) is usually allowed. : ,ake_sock: could not bind to address 0.0.0.0:8080


  • Moderators, Arts Moderators Posts: 35,474 Mod ✭✭✭✭pickarooney


    Slight change... the path in index.cgi was set to a unix-style
    #!/usr/bin/perl -WT
    
    changed it to
    #!c:/perl/bin/perl.exe -wT
    
    and now it's found the page :)


  • Advertisement
Advertisement