surina777
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Move nav menu from top to left hand Twenty Eleven themeI need this exact same “fix” for the same template, going to try your plugin option.
Thanks for posting the question!
Forum: Networking WordPress
In reply to: Multisite Domain Mapping to Internal Server onlyThis 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
Forum: Networking WordPress
In reply to: Multisite Domain Mapping to Internal Server onlyAre you saying you don’t have to do anything with vhosts to test locally?
Forum: Networking WordPress
In reply to: Multisite Domain Mapping to Internal Server onlyThanks 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.comVHOSTS 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>