Exemple #1
0
function bh_trash($absfilepath)
{
    global $bhconfig;
    if (!bh_file_exists(bh_fpclean("/trash"))) {
        bh_mkdir(bh_fpclean("/trash"), 0777);
    }
    if (defined("BH_ROOT")) {
        rename($absfilepath, $bhconfig['fileroot'] . bh_fpclean("/trash") . "/" . bh_get_filename($absfilepath));
        chmod($bhconfig['fileroot'] . bh_fpclean("/trash") . "/" . bh_get_filename($absfilepath), 0777);
    } else {
        rename($absfilepath, $bhconfig['fileroot'] . bh_fpclean("/trash") . "/" . bh_get_filename($absfilepath));
        chmod($bhconfig['fileroot'] . bh_fpclean("/trash") . "/" . bh_get_filename($absfilepath), 0777);
    }
}
Exemple #2
0
 *   $Id: download.inc.php,v 1.5 2005/07/26 21:55:09 andrewgodwin Exp $
 *
 */
#name Download
#author Andrew Godwin
#description Sends the file to the client.
#iscore 1
# Note: no layouts here, of course. Unless we get an error.
# Test for include status
if (IN_BH != 1) {
    header("Location: ../index.php");
    die;
}
$filepath = bh_fpclean($_GET['filepath']);
$filename = bh_get_filename($filepath);
if (bh_file_exists($filepath) == true) {
    $fileobj = new bhfile($filepath);
    #if ($fileobj->fileinfo['size'] == 0) {
    #	bh_log($bhlang['error:file_not_exist'], "BH_NOPAGE");
    #	require "modules/error.inc.php";
    #} else {
    # Log bandwidth usage. New feature, for those who like Absolute Control(tm). This comment shamelessly copied from upload.inc.php.
    bh_bandwidth($bhsession['username'], "down", $fileobj->fileinfo['filesize']);
    header("Content-type: " . $fileobj->mimetype());
    # If there's a Secret Message from the view image script not to include download headers, don't.
    if ($_GET['nodownheaders'] == 1) {
        header("Content-Disposition:  filename=" . $filename);
    } else {
        header("Content-Disposition: attachment; filename=" . $filename);
    }
    header("Content-length: " . $fileobj->fileinfo['filesize']);
Exemple #3
0
function bh_trash($absfilepath)
{
    global $bhconfig;
    if (!bh_file_exists(bh_fpclean("/trash"))) {
        bh_mkdir(bh_fpclean("/trash"));
    }
    rename($absfilepath, $bhconfig['fileroot'] . bh_fpclean("/trash") . "/" . bh_get_filename($absfilepath));
}