ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/lavignotte.com/seo-mailing/tiny_mce/plugins/filemanager/ |
Upload File : |
<?php
session_start();
if($_SESSION["verify"] != "FileManager4TinyMCE") die('forbiden');
include('config.php');
include('utils.php');
$ds = DIRECTORY_SEPARATOR;
$storeFolder = $_POST['path'];
$storeFolderThumb = $_POST['path_thumb'];
if (!empty($_FILES) && $upload_files) {
$tempFile = $_FILES['file']['tmp_name'];
$targetPath = dirname( __FILE__ ) . $ds. $storeFolder . $ds;
$targetPathThumb = dirname( __FILE__ ) . $ds. $storeFolderThumb . $ds;
$targetFile = $targetPath. $_FILES['file']['name'];
$targetFileThumb = $targetPathThumb. $_FILES['file']['name'];
move_uploaded_file($tempFile,$targetFile);
if(in_array(strtolower(substr(strrchr($_FILES['file']['name'],'.'),1)),$ext_img)) $is_img=true;
else $is_img=false;
if($is_img){
create_img_gd($targetFile, $targetFileThumb, 122, 91);
$imginfo =getimagesize($targetFile);
$srcWidth = $imginfo[0];
$srcHeight = $imginfo[1];
if($image_resizing){
if($image_width==0){
if($image_height==0){
$image_width=$srcWidth;
$image_height =$srcHeight;
}else{
$image_width=$image_height*$srcWidth/$srcHeight;
}
}elseif($image_height==0){
$image_height =$image_width*$srcHeight/$srcWidth;
}
$srcWidth=$image_width;
$srcHeight=$image_height;
create_img_gd($targetFile, $targetFile, $image_width, $image_height);
}
//max resizing limit control
$resize=false;
if($image_max_width!=0 && $srcWidth >$image_max_width){
$resize=true;
$srcHeight=$image_max_width*$srcHeight/$srcWidth;
$srcWidth=$image_max_width;
}
if($image_max_height!=0 && $srcHeight >$image_max_height){
$resize=true;
$srcWidth =$image_max_height*$srcWidth/$srcHeight;
$srcHeight =$image_max_height;
}
if($resize)
create_img_gd($targetFile, $targetFile, $srcWidth, $srcHeight);
}
}
if(isset($_POST['submit'])){
$query = http_build_query(array(
'type' => $_POST['type'],
'lang' => $_POST['lang'],
'subfolder' => $_POST['subfolder'],
'popup' => $_POST['popup'],
'field_id' => $_POST['field_id'],
'editor' => $_POST['editor'],
'fldr' => $_POST['fldr'],
));
header("location: dialog.php?" . $query);
}
?>