How do I make a copy of WordPress to other folder

If you want to move wordpress you should this: http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory I guess you want to create a development environment, and because you never edit core files of WordPress you don’t have to copy WordPress itself because the only thing you are changing is the theme folder. And you don’t want to install WordPress a second … Read more

How can I set up a completely separate (not multisite) WordPress installation as a subdirectory of an existing WordPress blog?

I decided to move the child installation to the main site’s web root, and rename its subdirectory to intranet. Once I had done this, all I had left to do was place this line of code after the main site’s rules: RewriteRule ^intranet/ – [L] The – rewrites the URI to itself – thus overriding … Read more

WordPress internationalization + domains

Of course you can use multisite when it’s about running multiple websites with one installation. You can also use plugins such as MLS to links content. That could be useful to add links to other versions of your posts. To me, multisite + MLS is better regarding perfomance if you compare this with solution such … Read more

WordPress on Nginx – Missing admin/toolbar

If you’re using Varnish and you’re not seeing the admin bar it’s because you probably have a rule in /etc/varnish/default.vcl that looks like this: sub vcl_recv { if (!(req.url ~ “wp-(login|admin)”)) { unset req.http.cookie; } } That’s going to keep the admin bar from showing up because you’re dropping cookie stuff from all pages except … Read more

WordPress Multisite – is this possible?

It sounds like you have an ideal situation for a multisite. You do not even need to have the sites running the same theme. Your theme however would be exactly the same for each site so you couldn’t modify a theme for an individual one (they are at the base of the multisite not on … Read more