Questions tagged [wpmu]

WPMU and WPMU DEV began with a concentration on a type of WordPress site called “WordPress Multi-User” (hence WPMU). WordPress Multi-User allowed you to build and run a network of sites from one WordPress installation.

WordPress Multi-User is now called WordPress Multisite. And we here at WPMU.org have moved on too. No longer do we focus solely on Multisite installations (though we still do that). We now focus on all types of WordPress sites – from the single installation on a shared hosting account to the million-site network spread over several different dedicated servers.

Source

89 questions
35
votes
7 answers

How to call WordPress functions in a custom PHP script

I have a PHP script I want to use for creating a new blog in WPMU. I am having trouble calling WordPress functions like wpmu_create_user and wpmu_create_blog. My hope is to get this script running as a cron job from the command line and pick up new…
sid.sri
  • 371
  • 1
  • 3
  • 4
13
votes
1 answer

Renaming "Post" to Something Else

Thanks for your time. I want to have the WordPress dashboard treat Posts (vanilla, not custom post types or anything) exactly as normal, but to replace the word with something else. I've tried plugins that claim to do this and they replace it in…
Puck
  • 217
  • 1
  • 3
  • 11
12
votes
3 answers

Automating Wordpress Development and Deployment

Has anyone ever worked on a WordPress project with multiple developers in different locations? Are there best practices around distributed development teams and automated deployments? I have a team of varying degrees of developers, including plugin…
Dave Morris
  • 856
  • 9
  • 25
7
votes
1 answer

Zlib Compression Screwed Up Path to Files in Wordpress Multisite

I'm running a multisite network on Wordpress 3.6 with the W3 Super Cache plugin for performance. I'm on a virtual dedicated server, but the Wordpress dashboard started loading so painfully slow, it was excruciating. So I did a quick search and found…
John
  • 101
  • 4
5
votes
2 answers

Network Wide Cron Scheduling on Wordpress Multisite

I'm using WP Cron to schedule a network wide cron from a plugin. I want to run the cron hourly no matter what blog it is activated from. Most importantly, I need to prevent the cron from running multiple times from different sites on the network. Is…
4
votes
2 answers

How should I create a global options in wordpress?

I am using WPMU but there are some options that the administrator should set and should take affect for every user of the website. Does wordpress have a place to store these global options? Can anyone point me to sample code? Thanks!
Tony
  • 18,776
  • 31
  • 129
  • 193
3
votes
1 answer

How do I clear user permissions from the WordPress object cache?

I have a highly optimized WordPress multisite (WPMU) installation running on Amazon EC2, RDS, Nginx, PHP-FPM, APC, BatCache and Memcached. APC is only running at the PHP level, to cache opcodes, but I'm not using it for WordPress's object cache. For…
jkhoffman
  • 199
  • 2
  • 11
2
votes
1 answer

Wordpress WPMU Login consistency across multisite network

I'm working on a WPMU multisite install but have run into a wee problem. I create a user during a signup process on my primary domain. With something like the following. $username = 'myname-'.time(); $user_id =…
David
  • 34,836
  • 11
  • 47
  • 77
2
votes
1 answer

Need to install WordPress Multisite in Subdomain

I have a CodeIgniter website in my server root directory. This website does have a lot of pages approx ~2M to ~2.5M pages with lots of other functionality. However; now I have developed one WordPress multisite for my home page and another 12 landing…
2
votes
0 answers

Handle Recurring Payments for Pro sites ( WordPress plugin)

I am developing payment gateway integration (Quickpay - http://quickpay.net/) for Pro Sites plugin (https://premium.wpmudev.org/project/pro-sites/). Unfortunately Quickpay doesn't support Auto recurring payments are their end. so I have to handle…
2
votes
1 answer

"404 page not found" while creating child site from frontend form

I am creating a child site from front-end by using wpmu_create_blog(). The whole code is working fine but the main issue occurs when we visit the new site frontend it gets 404 page not found But when I create the new child site from wp-admin, the…
Dimple
  • 21
  • 2
2
votes
1 answer

how do I programically create a category in WordPress if it doesn't exist already?

Using a built in wordpress function (if available) how do I create a new category in wordpress if it doesn't exist. I'm using wp_insert_post to insert posts, but I want to be able to do custom categories. Thanks -Brad
Brad
  • 2,237
  • 5
  • 41
  • 69
2
votes
2 answers

How do i get wp nonce value for my php libcurl script

I'd like to automate some administrative task for myself on my wpmu install. For example, I'm trying to write php curl script for logging in and adding a new blog. So i'm already logged in via curl and now i want to post form that's in…
Phil
  • 3,628
  • 8
  • 34
  • 36
1
vote
1 answer

Need a custom registration plugin/script for Wordpress Multisite

I'm looking for a plugin or a code that can let me customize the registration-form on Wordpress multisite (/wp-signup.php). What I would like to be able to do is to add the choise to set password and maybe add some fields like "City" Can someone…
Demilio
  • 673
  • 1
  • 10
  • 20
1
vote
1 answer

How to run query in Wordpress against multiple tables

This query does what I need, return a list of data from a widget in several tables from a Wordpress Multi Site database. There must be an easier way to do this. I have 30 tables I need to include, how can I get some type of loop to just return…
Ivan
  • 89
  • 9
1
2 3 4 5 6