How can Apache localhost coexists with ASP localhost?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shiloh
    New Member
    • Mar 2007
    • 7

    How can Apache localhost coexists with ASP localhost?

    Hi.

    I'm having a dilemma on how i will be able to access my Apache Localhost (which was installed through using PHPTriad) 'coz when i typed "http://localhost", the ASP offline server is the one that responds and requires password and username. My client is using the offline version of their site (in ASP) but my codes are in PHP 'coz i wasnt the one who made the website and they didnt inform me ahead of time that there's the offline thing.

    How will this be in a configured in such a way that they won't clash at each other? thank you so much.

    ~Shiloh
  • Banfa
    Recognized Expert Expert
    • Feb 2006
    • 9067

    #2
    Make them listen to different ports

    In the Apache httpd.conf file is a Listen directive something like

    Listen 80

    If you change that to another value (make sure it is one used for another protocol) say 8080 then you will be able to access your ASP off-line server as

    http://localhost/

    and the Apache server as

    http://localhost:8080/

    Comment

    • shiloh
      New Member
      • Mar 2007
      • 7

      #3
      Hi. thank you so much for the advice... we'll try this out. :-)

      Comment

      Working...