* @copyright 2007-2013 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ define('_PS_ADMIN_DIR_', getcwd()); include(_PS_ADMIN_DIR_.'/../config/config.inc.php'); if (!isset(Context::getContext()->employee) || !Context::getContext()->employee->isLoggedBack()) die; if (isset($_FILES['virtual_product_file']) AND is_uploaded_file($_FILES['virtual_product_file']['tmp_name']) AND (isset($_FILES['virtual_product_file']['error']) AND !$_FILES['virtual_product_file']['error']) OR (!empty($_FILES['virtual_product_file']['tmp_name']) AND $_FILES['virtual_product_file']['tmp_name'] != 'none')) { $filename = $_FILES['virtual_product_file']['name']; $file = $_FILES['virtual_product_file']['tmp_name']; $newfilename = ProductDownload::getNewFilename(); if (!copy($file, _PS_DOWNLOAD_DIR_.$newfilename)) { header('HTTP/1.1 500 Error'); echo ''; } @unlink($file); header('HTTP/1.1 200 OK'); echo ''; } else { header('HTTP/1.1 500 Error'); echo ''; }