<?php
/**
* @version $Id: uploadimage.php,v 1.1.1.1 2006/07/13 19:59:31 rcho Exp $
* @package Joomla
* @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// Set flag that this is a parent file
define( "_VALID_MOS", 1 );
/** security check */
require( "../includes/auth.php" );
include_once ( $mosConfig_absolute_path . '/language/' . $mosConfig_lang . '.php' );
$directory = mosGetParam( $_REQUEST, 'directory', '');
$media_path = $mosConfig_absolute_path.'/media/';
$userfile2=(isset($_FILES['userfile']['tmp_name']) ? $_FILES['userfile']['tmp_name'] : "");
$userfile_name=(isset($_FILES['userfile']['name']) ? $_FILES['userfile']['name'] : "");
if (isset($_FILES['userfile'])) {
if ($directory == 'banners') {
$base_Dir = "../../images/banners/";
} else if ( $directory != '' ) {
$base_Dir = '../../images/stories/'. $directory;
} else {
$base_Dir = '../../images/stories/';
}
if (empty($userfile_name)) {
echo "<script>alert('Please select an image to upload'); document.location.href='uploadimage.php';</script>";
}
$filename = split("\.", $userfile_name);
if (eregi("[^0-9a-zA-Z_]", $filename[0])) {
mosErrorAlert("File must only contain alphanumeric characters and no spaces please.");
}
if (file_exists($base_Dir.$userfile_name)) {
mosErrorAlert("Image ".$userfile_name." already exists.");
}
if ((strcasecmp(substr($userfile_name,-4),".gif")) && (strcasecmp(substr($userfile_name,-4),".jpg")) && (strcasecmp(substr($userfile_name,-4),".png")) && (strcasecmp(substr($userfile_name,-4),".bmp")) &&(strcasecmp(substr($userfile_name,-4),".doc")) && (strcasecmp(substr($userfile_name,-4),".xls")) && (strcasecmp(substr($userfile_name,-4),".ppt")) && (strcasecmp(substr($userfile_name,-4),".swf")) && (strcasecmp(substr($userfile_name,-4),".pdf"))) {
mosErrorAlert("The file must be gif, png, jpg, bmp, swf, doc, xls or ppt");
}
if (eregi(".pdf", $userfile_name) || eregi(".doc", $userfile_name) || eregi(".xls", $userfile_name) || eregi(".ppt", $userfile_name)) {
if (!move_uploaded_file ($_FILES['userfile']['tmp_name'],$media_path.$_FILES['userfile']['name']) || !mosChmod($media_path.$_FILES['userfile']['name'])) {
mosErrorAlert("Upload of ".$userfile_name." failed");
} else {
mosErrorAlert("Upload of ".$userfile_name." to $media_path successful");
}
} elseif (!move_uploaded_file ($_FILES['userfile']['tmp_name'],$base_Dir.$_FILES['userfile']['name']) || !mosChmod($base_Dir.$_FILES['userfile']['name'])) {
mosErrorAlert("Upload of ".$userfile_name." failed");
} else {
mosErrorAlert("Upload of ".$userfile_name." to ".$base_Dir." successful");
}
}
$css = mosGetParam($_REQUEST,'t','');
$iso = split( '=', _ISO );
// xml prolog
echo '<?xml version="1.0" encoding="'. $iso[1] .'"?' .'>';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Upload a file</title>
</head>
<body>
<link rel="stylesheet" href="../templates/<?php echo $css; ?>/css/template_css.css" type="text/css" />
<form method="post" action="uploadimage.php" enctype="multipart/form-data" name="filename">
<table class="adminform">
<tr>
<th class="title">
File Upload : <?php echo $directory; ?>
</th>
</tr>
<tr>
<td align="center">
<input class="inputbox" name="userfile" type="file" />
</td>
</tr>
<tr>
<td>
<input class="button" type="submit" value="Upload" name="fileupload" />
Max size = <?php echo ini_get( 'post_max_size' );?>
</td>
</tr>
</table>
<input type="hidden" name="directory" value="<?php echo $directory;?>" />
</form>
</body>
</html>