Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 1039453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T15:06:05+00:00 2026-05-16T15:06:05+00:00

There is a website www.example.net and it has a Forum link on its home

  • 0

There is a website www.example.net and it has a Forum link on its home page which leads to forum.example.com/content.

I found out that the main site has been developed using the .NET Framework, and the forum has been built using PHP based vBulletin.

Are these two different domains?

In other words, is the Forum some folder inside the Visual Studio Project www.example.net running as part of the ASP.NET website? Or is "forum.example.com/content a link to an altogether different website?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T15:06:06+00:00Added an answer on May 16, 2026 at 3:06 pm

    It could be a variety of set-ups.

    For example forum.blahblah.com/content and http://www.blahblah.co.uk can be on completely different machines at opposite ends of the Earth.

    Just because the domain names are similar does not have to mean that the underlying implementations are joined.

    Try doing a DNS lookup on the domain names and use some web tools to investigate the site’s IP addresses – this might shed light on it.

    See: http://www.dnsstuff.com/

    Personally speaking, If my main site was .NET and I was adding a 3rd party PHP forum – I’d stick it on a different machine.

    Update in response to the “Why Are You Asking” comment discussion, below

    “basically trying to figure out how to make asp.net website and php based forum work together”

    I wouldn’t get too hung up on making them work together ‘physically on a machine’.
    I’ve spend hours trying to untangle, separate and modularize my code and so I hate to see you struggling to merge yours together. ;o)

    Keeping them as separate systems and defining the HTTP interface between them is probably simpler.

    If you want ‘one login’ for both components, then that is possible to keep them separate AND share identity using things like OpenID
    – http://openid.net/developers

    Quote: “OpenID is a decentralized authentication protocol”

    This video on REST is a brilliant intro to the (often overlooked) power of HTTP
    – http://www.youtube.com/watch?v=YCcAE2SCQ6k

    Quote: “REST is the architecture of the web as it works today…Shouldn’t you be working with the architecture instead of against it”

    And perhaps look up Eric Evan’s chapter on ‘Separate Ways’ in his DDD book.

    • http://books.google.co.uk/books?id=7dlaMs0SECsC&lpg=PP1&dq=domain%20driven%20design&pg=PA335#v=onepage&q&f=false

    Quote: “Integration is always expensive. Sometimes the benefit is small”

    All these are non-language specific solutions.

    Also you might find this talk about how the BBC integrate their website interesting.
    – http://www.infoq.com/presentations/web-20-bbc-scaling

    Gist: They keep everything separated as much as possible, rarely sending messages between machines in anything other than simple HTTP requests. i.e They avoid remote-SQL queries because they are harder to track and log.

    ** Evil Character Encoding Issues **

    When you start writing your own ‘web readers’ its worth being aware of character encoding issues too:

    Read this article by, Mr Stackoverflow himself, Joel Spolsky:

    The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Character Sets (No Excuses!) – http://www.joelonsoftware.com/articles/Unicode.html

    ** What the users see**

    OK – that was about getting the two systems working together over the web. But, if you want one interface, one domain name to act as the ‘gateway’, then you could choose to make either the ASP server, or the PHP Lamp Server the ‘frontend’. This is where it can get complex.
    I only know about Apache, not MS..so

    I run a number of sites that have different IP addresses, hosted on different machines – but the code for all of them sits on one machine. Each of the Satellite Sites simply proxies HTTP requests to my ‘Origin Server‘ and forwards the reposnses back to the user.

    This is done using the apache’s proxy features.
    – http://httpd.apache.org/docs/2.0/mod/mod_proxy.html

    Quote:

    A typical usage of a reverse proxy is
    to provide Internet users access to a
    server that is behind a firewall.
    Reverse proxies can also be used to
    balance load among several back-end
    servers, or to provide caching for a
    slower back-end server. In addition,
    reverse proxies can be used simply to
    bring several servers into the same
    URL space.

    Be prepared for headaches – but with dedication its possible to have two servers one domain name.

    See: mod rewrite:

    • http://httpd.apache.org/docs/current/mod/mod_rewrite.html

    Quote:

    ‘proxy|P’ (force proxy)

    This flag forces the substitution part to be internally
    sent as a proxy request and
    immediately (rewrite processing stops
    here) put through the proxy module.
    You must make sure that the
    substitution string is a valid URI
    (typically starting with
    http://hostname) which can be handled
    by the Apache proxy module. If not,
    you will get an error from the proxy
    module. Use this flag to achieve a
    more powerful implementation of the
    ProxyPass directive, to map remote
    content into the namespace of the
    local server.

        Note: mod_proxy must be enabled in order to use this flag.
    

    I, like you, also racked my brains trying to figure this stuff out. The trick is to know the right words.

    The following phrases probably more likely to hold the key to your answers

    • network architecture
    • REST
    • gateway
    • proxy
    • syndication
    • XML/RPC
    • SOAP
    • API

    …than these phrases:

    • make asp work with php
    • two different web sites
    • etc
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a url which could be www.website.com/order/?pg3=2 or www.website.com/orderstatus/?pg2= There could be several
There is a usage example at the zlib website: http://www.zlib.net/zlib_how.html However in the example
I have a peculiar situation, my website is like www.example.com/page.php?url=homepage . I am trying
I have a large website at www.mydomain.com. There are 1000 new documents per month
Background: Suppose I have a website that is hosted on http://www.example.com and the site
For example, there is this website: www.azet.sk On the right, there is login and
I want to make a website like http://www.nawaiwaqt.com.pk/E-Paper/Lahore/2011-07-25/page-5 or http://www.etemaaddaily.com/ , i want to
I have an array like so: array{ [39] => src=http://www.google.com/jsapi> [111] => src=http://www.example.com/wp-content/themes/code.js [55]
requrl_1 = http://www.example.com/index.php; requrl_2 = http://www.example.com/redirect.php; when I request requrl_1 , there is no
Is there a way of getting the websites absolute URL ( http://www.domain.com/ ) using

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.