VentureMaker
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Duplicate entire blog setupHello,
So you want to have 1 ‘master image’ blog and then apply settings, content, etc to all newly created blogs?
Forum: Networking WordPress
In reply to: Unable to Login to Mapped DomainsOn my multisite install, I mapped subdomains e.g., mysite.com/blog1/.
Care to clarify this part? I don’t see a subdomain here 🙂
Or did you map some subdomain like test.test.com *to* mysite.com/blog1 ?And no, .htaccess has nothing to do with domain mapping.
Forum: Networking WordPress
In reply to: Tow domain for One siteI guess you need http://wordpress.org/extend/plugins/domain-mirror/
Forum: Networking WordPress
In reply to: Trying to install MU on my hostIf you have WordPress installed in test.com/example – then no.
You would be able to do what you’ve described if you had WordPress in test.com/
Forum: Networking WordPress
In reply to: Problems with login when activate MultisiteTried cleaning cache & cookies and restarting your browser? Or using another browser?
Forum: Networking WordPress
In reply to: 404 Errors on MU to WP3 Network UpgradeForum: Networking WordPress
In reply to: Setup paid site like WordPress.com using MuAbsolutely, check this awesome site http://premium.wpmudev.org/
Forum: Networking WordPress
In reply to: Images are not uploading into correct fileYou should allow MU/MS to upload images where it wants to 🙂
Did you add .htaccess rules and create blogs.dir folder inside wp-content as instructed by MS activation procedure?Forum: Networking WordPress
In reply to: Multisite for Addon DomainIn short – yes.
WPMS will work correctly only on main CPanel domain.Forum: Networking WordPress
In reply to: Correct .htaccess in WP(MS) 3.xWhat other threads? 🙂
Forum: Networking WordPress
In reply to: Correct .htaccess in WP(MS) 3.xI don’t think the upgrade changes the .htaccess, truth be told, which would account for some differences.
It does not.
Upgrade procedure from WPMU to WP instructs to change only 1 rule in .htaccess
One should manually change this:
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]
into this:
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]And, as far as I remember, WPMU’s .htaccess has been always the same in subdirs and subdomains installs.
And seems it’s still the same in clean WPMS subdirs and subdomains installs.As for the config file, the only difference would be the three lines:
define(‘WP_ALLOW_MULTISITE’, true);
define(‘MULTISITE’, true);
define(‘SUBDOMAIN_INSTALL’, true);Which I think you can add in without issues. Still, glad you’re running!
Well, I tried replacing the whole blocks and that gave me errors on both fresh and upgraded installs.
Minor things, I know 🙂 Just making sure I’m not omitting something important 🙂Forum: Networking WordPress
In reply to: Correct .htaccess in WP(MS) 3.xFWIW, that last if module is for when you’re having annoying problems with http errors when uploading files via the flash uploader on WordPress. And it doesn’t always work 🙂
Yup, I know 🙂 Right now I’m troubleshooting that nasty ‘HTTP error’ with flash uploader on one of my installs.
The top (shorter) .htaccess file looks like the one for subdomains. The bottom (longer) one looks like the one for subfolders. And yes, they’re different.
Really?
Looking at two separate fresh installs – one subdirs, another subdomains – and both .htaccess’es are equal. And short 😉You can’t mix the wp-config files though (just for clarifications).
Yes, I’ve noticed that already.
I always change lots of things in both fresh and upgraded configs manually.
So far I have noticed that upgraded subdomains configs have:define('VHOST', 'yes'); $base = '/'; define('DOMAIN_CURRENT_SITE', 'domain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOGID_CURRENT_SITE', '1');And fresh subdomains configs have:
define('WP_ALLOW_MULTISITE', true); define('MULTISITE', true); define('SUBDOMAIN_INSTALL', true); $base = '/'; define('DOMAIN_CURRENT_SITE', 'domain.com'); define('PATH_CURRENT_SITE', '/'); define('SITE_ID_CURRENT_SITE', 1); define('BLOG_ID_CURRENT_SITE', 1);Seems, after I upgrade from WPMU I can’t replace the first one with the second one – although that would be logical IMHO 🙂
Oh, and nice to see you around. 😉
Thanks! We’ve been relocating recently, you may imagine time, costs and efforts involved 🙂 Anyway, I’m back to WP world now 😉
Hey, I was just coming in here to point out that different htaccess files get generated differently depending on subdomains or subfolders. 😀
I’ll double (tripple) check this, but for some reason I’m now looking at 2 absolutely equal .htaccess’es where one is originating from fresh subdomains install and another one – from fresh subdirs install.
Forum: Networking WordPress
In reply to: Correct .htaccess in WP(MS) 3.xHey Andrea,
Thanks for clarifications.
Well, I played with my local test WPs and MUs and after upgrading from MU to WP 3.x I just deleted old .htaccess and uploaded the shorter one. It worked well 🙂
In another case I ‘upgraded’ old .htaccess file so that I got a longer one as a result. It also worked well :))
Alright, as long as both are fine for WP 3.x (regardless if it’s a new or upgraded install) I’ll be using a shorter one from now and on 😉
Thanks again.
Forum: Fixing WordPress
In reply to: [Plugin: WordPress MU Domain Mapping] Post/page preview errorAnother observation.
When I click (left-click) on ‘Preview Changes’ button – an URL that opens in a new tab and gives an error is:
http://mapped-domain.com/about/?preview=true&preview_id=2&preview_nonce=273e905e7cHowever, removing the last parameter and making the URL look like:
http://mapped-domain.com/about/?preview=true&preview_id=2
works perfectDunno if this matters, although 😉