46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* File from http://PrestaShow.pl
|
|
*
|
|
* DISCLAIMER
|
|
* Do not edit or add to this file if you wish to upgrade this module to newer
|
|
* versions in the future.
|
|
*
|
|
* @authors PrestaShow.pl <kontakt@prestashow.pl>
|
|
* @copyright 2015 PrestaShow.pl
|
|
* @license http://PrestaShow.pl/license
|
|
*/
|
|
|
|
// not finished
|
|
die('no_access');
|
|
|
|
ini_set('max_execution_time', 86400);
|
|
ini_set('display_errors', 'On');
|
|
error_reporting(E_ALL);
|
|
|
|
define('IMPORTING_NOW', true);
|
|
define('_PS_ADMIN_DIR_', true);
|
|
|
|
require_once "./../../config/config.inc.php";
|
|
require_once "./config.php";
|
|
|
|
ini_set('display_errors', 'On');
|
|
error_reporting(E_ALL);
|
|
|
|
if (!Tools::getValue('securekey') || Tools::getValue('securekey') != _IMPORT_SECURE_KEY_) {
|
|
if (!Tools::getValue('securekey') && (!isset($argv[1]) || $argv[1] != _IMPORT_SECURE_KEY_)) {
|
|
die('direct access denied');
|
|
}
|
|
}
|
|
|
|
PShow_Import::getInstance(file_get_contents(_IMPORT_STATUS_PATH_ . "filename"));
|
|
|
|
$ajax_import_file = _IMPORT_STATUS_PATH_ . "ajax_import";
|
|
|
|
if (PShow_Import::getInstance()) {
|
|
unlink($ajax_import_file);
|
|
}
|
|
|
|
die('IMPORT FINISHED');
|