HI Everyone,
I was able to get it to work again by modifying the redirection.php file in the plugin folder.
Specifically lines: 198 to 208
function inject() {
$options = $this->get_options();
if ( isset($_GET['token'] ) && isset( $_GET['page'] ) && isset( $_GET['sub'] ) && $_GET['token'] == $options['token'] && $_GET['page'] == 'redirection.php' && in_array( $_GET['sub'], array( 'rss', 'xml', 'csv', 'apache' ) ) ) {
include dirname( __FILE__ ).'/models/file_io.php';
$exporter = new Red_FileIO;
if ( $exporter->export( $_GET['sub'] ) )
die();
}
}
Save and then refresh the modules pages. You should be able to export successfully.
Cheers!
Ben