Category Archives: WordPress

How to disable all wordpress plugins?

Sometimes you have to disable wordpress plugins all at once and most wordpress webmaster don’t like going wordpress plugin section and
Disable manually one by one, this looks very boring and annoying.
Here I have real quick peaceful solution!
1. Open you wordpress database in PhpMyAdmin.
2. Open SQL query panel/popup window.
3. Run this command

UPDATE wp_options SET option_value = ” WHERE option_name = ‘active_plugins’;

And it’s done!!
This query will not remove any plugin from server. You can again reactivate your wordpress plugins manually from blog control panel.
You can use this query to make your wordpress blog automated.

Share

Installing WordPress mu with Shell Access

1. IF you are windows user download Putty and Log in to your server via SSH protocol.
2. I expect you know how to use Putty!!
3. Download wordpress mu in your server

wget http://mu.wordpress.org/latest.zip

4. Execute the LS command to ensure that the file is there and ready to be unzipped.

LS

5. Extract the archive with unzip latest.zip

unzip latest.zip

6. You’ll need to copy all the files from the “wordpress-mu” folder to the current directory. Because wordpress-mu comes packaged into a “wordpress-mu” folder.

cp -rf ./ wordpress-mu/* ./

This command will recursively copy all of the files and folders from the “wordpress-mu” directory into the current working directory.
Six easy steps will save your time especially if you are using dialup or any show connection.

Share

How to Setup WordPress mu in local system?

As we all know WordPress mu normally require sub domain or domain to install in local system.
Here are steps to configure wordpress mu in local system xampp.

You need to make a sub domain.
Open this  WINDOWSsystem32driversetchosts
Add local.domain (or whatever you'd like to call it) to the localhost line
Example :  127.0.0.1 localhost local.domain
Try this now - http://local.domain/
Done!!
Share

What is WordPress MU?

WordPress MU, or multi-user, is designed to runn hundreds of thousands of blogs with a single install.
You can pronounciation like wordpress mu(EM-YEW) or you can aslo call “WordPress Mooooo”

Who are using WordPress MU?
•    Newspapers and magazines.
•    Big Universities
•    Blog networks
•    Niche-specific blog hosts
•    WordPress.com uses WordPress MU!!
Features of WordPress MU.

Code which differs on wordpress mu side is that is bootstrap files, and administration for multiple blogs and users. Most of the basic code is same for both. I can say 95-99% that is amazing.
Wordpress mu can have multiple authors and you can assign different roles.

Most of the plug-in work just like in regular WordPress because basic frame of the code is same but of course not all.
But some that modify core tables or create tables of their own in the DB might have difficulties, depending on how they’re coded.

Worpress Mu can be configured on sub-domains or top level domain, just like regular wordpress.

You can enable Akismet spam protection same like your favorite one!!  But Developer of the wordpress mu prefer to go for Pro-blogger API key.

WordPress MU creates tables for each blog, which is the system we found worked best for plugin compatibility and scaling after lots of testing and trial and error. This takes advantage of existing OS-level and MySQL query caches and also makes it infinitely easier to segment user data, which is what all services that grow beyond a single box eventually have to do.
Lastly you can ask can I develop wordpress mu so the answer is pretty simple! YES because if you are familer with wordpress you will feel pretty comfortable with WordPress Mooooo!!

Share