Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • surina777

    (@surina777)

    I need this exact same “fix” for the same template, going to try your plugin option.

    Thanks for posting the question!

    Thread Starter surina777

    (@surina777)

    This is on a linux server that I want to test before going live. Is it necessary to use MAMP/LAMP?

    ##.#.#.###/nonmultisitewpinstall (<–full wordpress install) works on the internal network without requiring a hosts file edit, I can share that address with anyone on the network and the site is visible

    ##.#.#.##/multisitename does not work on the network

    I want to make sure ##.#.#.## works before I go into the DNS to update the location of the site

    Thread Starter surina777

    (@surina777)

    Are you saying you don’t have to do anything with vhosts to test locally?

    Thread Starter surina777

    (@surina777)

    Thanks Ipstenu,
    So does that mean I create a vhost entry for every site? Then to test locally on my machine, before the site goes live, I modify my hosts file to:
    ##.#.#.### blog.site.com
    ##.#.#.### testsite.com
    ##.#.#.### testsite2.com

    VHOSTS Ex:

    # Ensure that Apache listens on port 80
    Listen 80

    # Listen for virtual host requests on all IP addresses
    NameVirtualHost ##.#.#.###:80

    <VirtualHost ##.#.#.###:80>
    DocumentRoot /var/www/public_html
    ServerName blog.site.com

    # Other directives here

    </VirtualHost>

    <VirtualHost ##.#.#.###:80>
    DocumentRoot /var/www/public_html
    ServerName testsite.com

    # Other directives here

    </VirtualHost>

    </VirtualHost>

    <VirtualHost ##.#.#.###:80>
    DocumentRoot /var/www/public_html
    ServerName testsite2.com

    # Other directives here

    </VirtualHost>

Viewing 4 replies - 1 through 4 (of 4 total)