Top Google Search Results
- WordPress › Support » Permalinks settings page is blank
I edited wp-admin/includes/misc.php, forcing the value of $got_rewrite = true;. And that fixed it. Permalink page is no longer blank. Thanks ipstenu! :-D ... - WordPress › Support » Blank Permalink Admin Page after changing ...
function got_mod_rewrite() { //$got_rewrite = apache_mod_loaded('mod_rewrite', true); //old line with false negative; $got_rewrite = true;//force the response to ... - WordPress Pretty Permalinks with Nginx | Joseph Scott
Jun 2, 2010 ... add_filter( 'got_rewrite', 'nginx_has_rewrite', 999 ); function nginx_has_rewrite( $ got_rewrite ) ... add_filter( 'got_rewrite', '__return_true', 999 ); ... - How to recover from a Blank Permalink Settings Page | WordPress ...
Sep 28, 2011 ... $got_rewrite = true;//force the response to true as we know mod_rewrite is installed; ... The fix ( $got_rewrite = true; ) forces this test to be true.