|
Server IP : 10.128.40.6 / Your IP : 216.73.216.233 Web Server : Apache System : Linux webd006.cluster128.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : logmcpe ( 111175) PHP Version : 7.3.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/logmcpe/www/TEST/www/wp-content/plugins/ql_importer/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
<?php
if(!defined('WP_LOAD_IMPORTERS'))
define('WP_LOAD_IMPORTERS', true);
require_once ABSPATH . 'wp-admin/includes/import.php';
$importer_error = false;
$import_filepath = $file;
if(!class_exists('WP_Importer'))
{
$class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php';
if(file_exists($class_wp_importer))
require_once($class_wp_importer);
else
$importer_error = true;
}
if(!class_exists('WP_Import'))
{
$class_wp_import = plugin_dir_path(__FILE__) . 'wordpress-importer.php';
if(file_exists($class_wp_import))
require_once($class_wp_import);
else
$importer_error = true;
}
if($importer_error !== false)
echo __("Auto import feature couldn't be loaded. Please make import manually <a href='/wp-admin/import.php'>here</a>. You can find import dummy files in 'dummy content files' directory inside zip archive downloaded from ThemeForest.", 'ql_importer');
else
{
if(!is_file($import_filepath))
echo __("The XML file is not available", 'ql_importer');
else
{
$wp_import = new WP_Import();
$wp_import->fetch_attachments = $fetch_attachments;
set_time_limit(0);
$wp_import->import($import_filepath);
}
}
