
So, wordpress multisite does not allow you to have hyphens in your blog names automatically, I don’t know why, but that is how it is. After some googling I found a solution. (see below for credit)
All you have to do is:
grab “ms-functions.php” out of the wp-includes folder.
on or around line 652 add a hyphen after the 9, so change:
preg_match( '/[a-z0-9]+/', $blogname, $maybe );
to
preg_match( '/[a-z0-9-]+/', $blogname, $maybe );
Originally got this from the following forum thread:
http://premium.wpmudev.org/forums/topic/allowing-hyphens-in-blog-names
thanks TonyV
-
Categories- Book Review (1)
- Content Writing (1)
- Disqus (1)
- facebook (1)
- Flickr (1)
- Google Applications (4)
- How To (2)
- IRM (1)
- Marketing (1)
- Picasa (1)
- Pinnacle Cart (1)
- Search Engine Optimization (2)
- Social Media (1)
- Tutorials (2)
- Twitter (3)
- Web Design (1)
- Website Reviews (2)
- What Is (5)
- Wordpress Multisite (1)
- Wordpress Plugins (2)