Blogs upgrated to WordPress MU 2.7
Last night all blogs hosted under niczsoft.com were updated to newest version of WordPress MU – that is 2.7.
It looks like everything worked fine. I’m not sure but it looks like working a bit faster.
Last night all blogs hosted under niczsoft.com were updated to newest version of WordPress MU – that is 2.7.
It looks like everything worked fine. I’m not sure but it looks like working a bit faster.
After writing previous post about mod_rewrite I have discovered that google webmaster tools stoped veryfing my domain www.niczsoft.com. After investigation I sadly have discovered that Ask Apache Search Engine Verify plugin neither Add Meta Tags can display meta tags on my page. short reading allowed me to find the right place to correct this behavior:
if(is_home() && !is_paged()){
with:
if((is_home() && !is_paged()) || is_page()){
With this two steps all pages will contain veryfication tags, so you can redirect as many pages as you wan’t.
As preparing blog for one of clients I have found problems with get it running, after some web research I have found that Hemingway theme uses old syntax … instead of downgrading my server or allowing old syntax I have wrote script that converts old syntax to current working one.
This is the script:
grep -rl “" . | grep "\.php$" | xargs sed -i "s/\([^=^p]\)/
For me this solved problems with Hemingway theme.