header("Cache-Control: private, must-revalidate");
        }
        header("Content-Type: application/octet-stream");
        header("Content-length: " . filesize("/tmp/{$file_name}"));
        header("Content-disposition: attachment; filename = {$file_name}");
        ob_end_clean();
        //important or other post will fail
        readfile("/tmp/{$file_name}");
        // Clean up the temp file
        @unlink("/tmp/{$file_name}");
    } else {
        $savemsg = gettext("An error occurred while creating archive");
    }
}
/* Load up an array with the current Suppression List GID,SID values */
$supplist = suricata_load_suppress_sigs($a_instance[$instanceid], true);
$pgtitle = gettext("Suricata: Alerts");
include_once "head.inc";
?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
<?php 
include_once "fbegin.inc";
/* refresh every 60 secs */
if ($pconfig['arefresh'] == 'on') {
    echo "<meta http-equiv=\"refresh\" content=\"60;url=/suricata/suricata_alerts.php?instance={$instanceid}\" />\n";
}
?>

<?php 
/* Display Alert message */
            }
        }
    }
    if ($found_list) {
        write_config();
        $rebuild_rules = false;
        sync_suricata_package_config();
        suricata_reload_config($a_nat[$id]);
        $savemsg = gettext("An entry to suppress the Alert for 'gen_id {$_POST['gid']}, sig_id {$_POST['sid']}' has been added to Suppress List '{$a_nat[$id]['suppresslistname']}'.");
    } else {
        /* We did not find the defined list, so notify the user with an error */
        $input_errors[] = gettext("Suppress List '{$a_nat[$id]['suppresslistname']}' is defined for this interface, but it could not be found!");
    }
}
/* Load up an array with the current Suppression List GID,SID values */
$supplist = suricata_load_suppress_sigs($a_nat[$id]);
$if_friendly = convert_friendly_interface_to_friendly_descr($a_nat[$id]['interface']);
$pgtitle = gettext("Suricata: Interface {$if_friendly} - Flowbit Rules");
include_once "head.inc";
?>

<body link="#0000CC" vlink="#0000CC" alink="#0000CC" >
<?php 
include "fbegin.inc";
if ($input_errors) {
    print_input_errors($input_errors);
}
if ($savemsg) {
    print_info_box($savemsg);
}
?>