Hide Inactive Sites 1.1 Released

New version of Hide Inactive Sites has been released. Get it while it’s hot!

Changelog

  • Added new options to mark site as archived and/or deleted
  • Added new option to leave site visibility as it currently is
  • Added email sent to site administrators when it gets hidden
  • Added several filters to customize the email being sent

Hide Inactive Sites 1.0.2 Released

New release after getting some feedback. The plugin was actually featured on wpmu.org.

Changelog

  • Added new option for excluding additional sites (main site will always be excluded)
    • Fixed a minor bug where users were getting error in exclude sites text box when there was no value.
  • Added new option for supplying a minimum number of posts for a site to be safe.

WordPress Multisite, nginx and Permalinks

So, at my day job, we are setting up a new web server with WordPress Multisite running nginx instead of Apache. For whatever reason, all of the permalinks include /index.php/ and you can’t remove it. If you do remove it, once the page has been saved it’ll be right back on there.

To fix this, you can go into your theme file at the top and add the following:

[code lang=”php”]
global $is_apache;
$is_apache = 1;
[/code]

After adding that, go back to your permalinks page and it should be gone.