Replies: 0
Appears to be a nice little plugin.
There’s a code error on line 101 of the auto-post-expiration.php file that triggers a fatal error.
//require_once options file
require_once( AUTO_POST_EXP_DIR . ‘\auto-post-expire-options.php’);
changed the \ to / to make it work.
//require_once options file
require_once( AUTO_POST_EXP_DIR . ‘/auto-post-expire-options.php’);