0byt3m1n1 - D7net
0byt3m1n1 - D7net
Path:
/
home
/
s13cf5ef
/
www
/
tuscamisetaspersonalizadas
/
tienda
/
controllers
/
admin
/
[
Home
]
Name File: AdminPerformanceController.php
< back
<?php /* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@prestashop.com so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * International Registered Trademark & Property of PrestaShop SA */ class AdminPerformanceControllerCore extends AdminController { public function __construct() { $this->bootstrap = true; $this->className = 'Configuration'; parent::__construct(); } public function initFieldsetSmarty() { $this->fields_form[0]['form'] = array( 'legend' => array( 'title' => $this->l('Smarty'), 'icon' => 'icon-briefcase' ), 'input' => array( array( 'type' => 'hidden', 'name' => 'smarty_up' ), array( 'type' => 'radio', 'label' => $this->l('Template compilation'), 'name' => 'smarty_force_compile', 'values' => array( array( 'id' => 'smarty_force_compile_'._PS_SMARTY_NO_COMPILE_, 'value' => _PS_SMARTY_NO_COMPILE_, 'label' => $this->l('Never recompile template files'), 'hint' => $this->l('This option should be used in a production environment.') ), array( 'id' => 'smarty_force_compile_'._PS_SMARTY_CHECK_COMPILE_, 'value' => _PS_SMARTY_CHECK_COMPILE_, 'label' => $this->l('Recompile templates if the files have been updated'), 'hint' => $this->l('Templates are recompiled when they are updated. If you experience compilation troubles when you update your template files, you should use Force Compile instead of this option. It should never be used in a production environment.') ), array( 'id' => 'smarty_force_compile_'._PS_SMARTY_FORCE_COMPILE_, 'value' => _PS_SMARTY_FORCE_COMPILE_, 'label' => $this->l('Force compilation'), 'hint' => $this->l('This forces Smarty to (re)compile templates on every invocation. This is handy for development and debugging. Note: This should never be used in a production environment.') ) ) ), array( 'type' => 'switch', 'label' => $this->l('Cache'), 'name' => 'smarty_cache', 'is_bool' => true, 'values' => array( array( 'id' => 'smarty_cache_1', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'smarty_cache_0', 'value' => 0, 'label' => $this->l('No') ) ), 'hint' => $this->l('Should be enabled except for debugging.') ), ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['smarty_force_compile'] = Configuration::get('PS_SMARTY_FORCE_COMPILE'); $this->fields_value['smarty_cache'] = Configuration::get('PS_SMARTY_CACHE'); $this->fields_value['smarty_console'] = Configuration::get('PS_SMARTY_CONSOLE'); $this->fields_value['smarty_console_key'] = Configuration::get('PS_SMARTY_CONSOLE_KEY'); } public function initFieldsetDebugMode() { $this->fields_form[1]['form'] = array( 'legend' => array( 'title' => $this->l('Debug mode'), 'icon' => 'icon-bug' ), 'input' => array( array( 'type' => 'switch', 'label' => $this->l('Disable non PrestaShop modules'), 'name' => 'native_module', 'class' => 't', 'is_bool' => true, 'values' => array( array( 'id' => 'native_module_on', 'value' => 1, 'label' => $this->l('Enabled') ), array( 'id' => 'native_module_off', 'value' => 0, 'label' => $this->l('Disabled') ) ), 'hint' => $this->l('Enable or disable non PrestaShop Modules.') ), array( 'type' => 'switch', 'label' => $this->l('Disable all overrides'), 'name' => 'overrides', 'class' => 't', 'is_bool' => true, 'values' => array( array( 'id' => 'overrides_module_on', 'value' => 1, 'label' => $this->l('Enabled') ), array( 'id' => 'overrides_module_off', 'value' => 0, 'label' => $this->l('Disabled') ) ), 'hint' => $this->l('Enable or disable all classes and controllers overrides.') ), ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['native_module'] = Configuration::get('PS_DISABLE_NON_NATIVE_MODULE'); $this->fields_value['overrides'] = Configuration::get('PS_DISABLE_OVERRIDES'); } public function initFieldsetFeaturesDetachables() { $this->fields_form[2]['form'] = array( 'legend' => array( 'title' => $this->l('Optional features'), 'icon' => 'icon-puzzle-piece' ), 'description' => $this->l('Some features can be disabled in order to improve performance.'), 'input' => array( array( 'type' => 'hidden', 'name' => 'features_detachables_up' ), array( 'type' => 'switch', 'label' => $this->l('Combinations'), 'name' => 'combination', 'is_bool' => true, 'disabled' => Combination::isCurrentlyUsed(), 'values' => array( array( 'id' => 'combination_1', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'combination_0', 'value' => 0, 'label' => $this->l('No') ) ), 'hint' => $this->l('Choose "No" to disable Product Combinations.'), 'desc' => Combination::isCurrentlyUsed() ? $this->l('You cannot set this parameter to No when combinations are already used by some of your products') : null ), array( 'type' => 'switch', 'label' => $this->l('Features'), 'name' => 'feature', 'is_bool' => true, 'values' => array( array( 'id' => 'feature_1', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'feature_0', 'value' => 0, 'label' => $this->l('No') ) ), 'hint' => $this->l('Choose "No" to disable Product Features.') ), array( 'type' => 'switch', 'label' => $this->l('Customer Groups'), 'name' => 'customer_group', 'is_bool' => true, 'disabled' => Group::isCurrentlyUsed(), 'values' => array( array( 'id' => 'group_1', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'group_0', 'value' => 0, 'label' => $this->l('No') ) ), 'hint' => $this->l('Choose "No" to disable Customer Groups.') ) ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['combination'] = Combination::isFeatureActive(); $this->fields_value['feature'] = Feature::isFeatureActive(); $this->fields_value['customer_group'] = Group::isFeatureActive(); } public function initFieldsetCCC() { $this->fields_form[3]['form'] = array( 'legend' => array( 'title' => $this->l('CCC (Combine, Compress and Cache)'), 'icon' => 'icon-fullscreen' ), 'description' => $this->l('CCC allows you to reduce the loading time of your page. With these settings you will gain performance without even touching the code of your theme. Make sure, however, that your theme is compatible with PrestaShop 1.4+. Otherwise, CCC will cause problems.'), 'input' => array( array( 'type' => 'hidden', 'name' => 'ccc_up', ), array( 'type' => 'switch', 'label' => $this->l('Smart cache for CSS'), 'name' => 'PS_CSS_THEME_CACHE', 'values' => array( array( 'id' => 'PS_CSS_THEME_CACHE_1', 'value' => 1, 'label' => $this->l('Use CCC for CSS') ), array( 'id' => 'PS_CSS_THEME_CACHE_0', 'value' => 0, 'label' => $this->l('Keep CSS as original') ) ) ), array( 'type' => 'switch', 'label' => $this->l('Smart cache for JavaScript'), 'name' => 'PS_JS_THEME_CACHE', 'values' => array( array( 'id' => 'PS_JS_THEME_CACHE_1', 'value' => 1, 'label' => $this->l('Use CCC for JavaScript') ), array( 'id' => 'PS_JS_THEME_CACHE_0', 'value' => 0, 'label' => $this->l('Keep JavaScript as original') ) ) ), array( 'type' => 'switch', 'label' => $this->l('Minify HTML'), 'name' => 'PS_HTML_THEME_COMPRESSION', 'values' => array( array( 'id' => 'PS_HTML_THEME_COMPRESSION_1', 'value' => 1, 'label' => $this->l('Minify HTML after "Smarty compile" execution') ), array( 'id' => 'PS_HTML_THEME_COMPRESSION_0', 'value' => 0, 'label' => $this->l('Keep HTML as original') ) ) ), array( 'type' => 'switch', 'label' => $this->l('Compress inline JavaScript in HTML'), 'name' => 'PS_JS_HTML_THEME_COMPRESSION', 'values' => array( array( 'id' => 'PS_JS_HTML_THEME_COMPRESSION_1', 'value' => 1, 'label' => $this->l('Compress inline JavaScript in HTML after "Smarty compile" execution') ), array( 'id' => 'PS_JS_HTML_THEME_COMPRESSION_0', 'value' => 0, 'label' => $this->l('Keep inline JavaScript in HTML as original') ) ) ), array( 'type' => 'switch', 'label' => $this->l('Apache optimization'), 'name' => 'PS_HTACCESS_CACHE_CONTROL', 'hint' => $this->l('This will add directives to your .htaccess file, which should improve caching and compression.'), 'values' => array( array( 'id' => 'PS_HTACCESS_CACHE_CONTROL_1', 'value' => 1, 'label' => $this->l('Yes'), ), array( 'id' => 'PS_HTACCESS_CACHE_CONTROL_0', 'value' => 0, 'label' => $this->l('No'), ), ), ) ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['PS_CSS_THEME_CACHE'] = Configuration::get('PS_CSS_THEME_CACHE'); $this->fields_value['PS_JS_THEME_CACHE'] = Configuration::get('PS_JS_THEME_CACHE'); $this->fields_value['PS_HTML_THEME_COMPRESSION'] = Configuration::get('PS_HTML_THEME_COMPRESSION'); $this->fields_value['PS_JS_HTML_THEME_COMPRESSION'] = Configuration::get('PS_JS_HTML_THEME_COMPRESSION'); $this->fields_value['PS_HTACCESS_CACHE_CONTROL'] = Configuration::get('PS_HTACCESS_CACHE_CONTROL'); $this->fields_value['ccc_up'] = 1; } public function initFieldsetMediaServer() { $this->fields_form[4]['form'] = array( 'legend' => array( 'title' => $this->l('Media servers (use only with CCC)'), 'icon' => 'icon-link' ), 'description' => $this->l('You must enter another domain, or subdomain, in order to use cookieless static content.'), 'input' => array( array( 'type' => 'hidden', 'name' => 'media_server_up' ), array( 'type' => 'text', 'label' => $this->l('Media server #1'), 'name' => '_MEDIA_SERVER_1_', 'hint' => $this->l('Name of the second domain of your shop, (e.g. myshop-media-server-1.com). If you do not have another domain, leave this field blank.') ), array( 'type' => 'text', 'label' => $this->l('Media server #2'), 'name' => '_MEDIA_SERVER_2_', 'hint' => $this->l('Name of the third domain of your shop, (e.g. myshop-media-server-2.com). If you do not have another domain, leave this field blank.') ), array( 'type' => 'text', 'label' => $this->l('Media server #3'), 'name' => '_MEDIA_SERVER_3_', 'hint' => $this->l('Name of the fourth domain of your shop, (e.g. myshop-media-server-3.com). If you do not have another domain, leave this field blank.') ), ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['_MEDIA_SERVER_1_'] = Tools::getValue('_MEDIA_SERVER_1_', _MEDIA_SERVER_1_); $this->fields_value['_MEDIA_SERVER_2_'] = Tools::getValue('_MEDIA_SERVER_2_', _MEDIA_SERVER_2_); $this->fields_value['_MEDIA_SERVER_3_'] = Tools::getValue('_MEDIA_SERVER_3_', _MEDIA_SERVER_3_); } public function initFieldsetCiphering() { $phpdoc_langs = array('en', 'zh', 'fr', 'de', 'ja', 'pl', 'ro', 'ru', 'fa', 'es', 'tr'); $php_lang = in_array($this->context->language->iso_code, $phpdoc_langs) ? $this->context->language->iso_code : 'en'; $warning_mcrypt = ' '.$this->l('(you must install the [a]Mcrypt extension[/a])'); $warning_mcrypt = str_replace('[a]', '<a href="http://www.php.net/manual/'.substr($php_lang, 0, 2).'/book.mcrypt.php" target="_blank">', $warning_mcrypt); $warning_mcrypt = str_replace('[/a]', '</a>', $warning_mcrypt); $this->fields_form[5]['form'] = array( 'legend' => array( 'title' => $this->l('Ciphering'), 'icon' => 'icon-desktop' ), 'input' => array( array( 'type' => 'hidden', 'name' => 'ciphering_up' ), array( 'type' => 'radio', 'label' => $this->l('Algorithm'), 'name' => 'PS_CIPHER_ALGORITHM', 'hint' => $this->l('Mcrypt is faster than our custom BlowFish class, but requires the "mcrypt" PHP extension. If you change this configuration, all cookies will be reset.'), 'values' => array( array( 'id' => 'PS_CIPHER_ALGORITHM_1', 'value' => 1, 'label' => $this->l('Use Rijndael with mcrypt lib.').(!function_exists('mcrypt_encrypt') ? '' : $warning_mcrypt) ), array( 'id' => 'PS_CIPHER_ALGORITHM_0', 'value' => 0, 'label' => $this->l('Use the custom BlowFish class.') ) ) ) ), 'submit' => array( 'title' => $this->l('Save') ) ); $this->fields_value['PS_CIPHER_ALGORITHM'] = Configuration::get('PS_CIPHER_ALGORITHM'); } public function initFieldsetCaching() { $phpdoc_langs = array('en', 'zh', 'fr', 'de', 'ja', 'pl', 'ro', 'ru', 'fa', 'es', 'tr'); $php_lang = in_array($this->context->language->iso_code, $phpdoc_langs) ? $this->context->language->iso_code : 'en'; $warning_memcached = ' '.$this->l('(you must install the [a]Memcache PECL extension[/a])'); $warning_memcached = str_replace('[a]', '<a href="http://www.php.net/manual/'.substr($php_lang, 0, 2).'/memcache.installation.php" target="_blank">', $warning_memcached); $warning_memcached = str_replace('[/a]', '</a>', $warning_memcached); $warning_apc = ' '.$this->l('(you must install the [a]APC PECL extension[/a])'); $warning_apc = str_replace('[a]', '<a href="http://php.net/manual/'.substr($php_lang, 0, 2).'/apc.installation.php" target="_blank">', $warning_apc); $warning_apc = str_replace('[/a]', '</a>', $warning_apc); $warning_xcache = ' '.$this->l('(you must install the [a]Xcache extension[/a])'); $warning_xcache = str_replace('[a]', '<a href="http://xcache.lighttpd.net" target="_blank">', $warning_xcache); $warning_xcache = str_replace('[/a]', '</a>', $warning_xcache); $warning_fs = ' '.sprintf($this->l('(the directory %s must be writable)'), realpath(_PS_CACHEFS_DIRECTORY_)); $this->fields_form[6]['form'] = array( 'legend' => array( 'title' => $this->l('Caching'), 'icon' => 'icon-desktop' ), 'input' => array( array( 'type' => 'hidden', 'name' => 'cache_up' ), array( 'type' => 'switch', 'label' => $this->l('Use cache'), 'name' => 'cache_active', 'is_bool' => true, 'values' => array( array( 'id' => 'cache_active_on', 'value' => 1, 'label' => $this->l('Enabled') ), array( 'id' => 'cache_active_off', 'value' => 0, 'label' => $this->l('Disabled') ) ) ), array( 'type' => 'radio', 'label' => $this->l('Caching system'), 'name' => 'caching_system', 'hint' => $this->l('The CacheFS system should be used only when the infrastructure contains one front-end server. If you are not sure, ask your hosting company.'), 'values' => array( array( 'id' => 'CacheFs', 'value' => 'CacheFs', 'label' => $this->l('File System').(is_writable(_PS_CACHEFS_DIRECTORY_) ? '' : $warning_fs) ), array( 'id' => 'CacheMemcache', 'value' => 'CacheMemcache', 'label' => $this->l('Memcached').(extension_loaded('memcache') ? '' : $warning_memcached) ), array( 'id' => 'CacheApc', 'value' => 'CacheApc', 'label' => $this->l('APC').(extension_loaded('apc') ? '' : $warning_apc) ), array( 'id' => 'CacheXcache', 'value' => 'CacheXcache', 'label' => $this->l('Xcache').(extension_loaded('xcache') ? '' : $warning_xcache) ), ) ), array( 'type' => 'text', 'label' => $this->l('Directory depth'), 'name' => 'ps_cache_fs_directory_depth' ), ), 'submit' => array( 'title' => $this->l('Save') ), 'memcachedServers' => true ); $depth = Configuration::get('PS_CACHEFS_DIRECTORY_DEPTH'); $this->fields_value['cache_active'] = _PS_CACHE_ENABLED_; $this->fields_value['caching_system'] = _PS_CACHING_SYSTEM_; $this->fields_value['ps_cache_fs_directory_depth'] = $depth ? $depth : 1; $this->tpl_form_vars['servers'] = CacheMemcache::getMemcachedServers(); $this->tpl_form_vars['_PS_CACHE_ENABLED_'] = _PS_CACHE_ENABLED_; } public function renderForm() { // Initialize fieldset for a form $this->initFieldsetSmarty(); $this->initFieldsetDebugMode(); $this->initFieldsetFeaturesDetachables(); $this->initFieldsetCCC(); if (!defined('_PS_HOST_MODE_')) $this->initFieldsetMediaServer(); $this->initFieldsetCiphering(); $this->initFieldsetCaching(); // Reindex fields $this->fields_form = array_values($this->fields_form); // Activate multiple fieldset $this->multiple_fieldsets = true; return parent::renderForm(); } public function initContent() { $this->initTabModuleList(); $this->initToolbar(); $this->initPageHeaderToolbar(); $this->display = ''; $this->content .= $this->renderForm(); $this->context->smarty->assign(array( 'content' => $this->content, 'url_post' => self::$currentIndex.'&token='.$this->token, 'show_page_header_toolbar' => $this->show_page_header_toolbar, 'page_header_toolbar_title' => $this->page_header_toolbar_title, 'page_header_toolbar_btn' => $this->page_header_toolbar_btn, 'title' => $this->page_header_toolbar_title, 'toolbar_btn' => $this->page_header_toolbar_btn )); } public function initToolbar() { $this->toolbar_btn['save'] = array( 'href' => '#', 'desc' => $this->l('Save') ); } public function postProcess() { /* PrestaShop demo mode */ if (_PS_MODE_DEMO_) { $this->errors[] = Tools::displayError('This functionality has been disabled.'); return; } Hook::exec('action'.get_class($this).ucfirst($this->action).'Before', array('controller' => $this)); if (Tools::isSubmit('submitAddServer')) { if ($this->tabAccess['add'] === '1') { if (!Tools::getValue('memcachedIp')) $this->errors[] = Tools::displayError('The Memcached IP is missing.'); if (!Tools::getValue('memcachedPort')) $this->errors[] = Tools::displayError('The Memcached port is missing.'); if (!Tools::getValue('memcachedWeight')) $this->errors[] = Tools::displayError('The Memcached weight is missing.'); if (!count($this->errors)) { if (CacheMemcache::addServer(pSQL(Tools::getValue('memcachedIp')), (int)Tools::getValue('memcachedPort'), (int)Tools::getValue('memcachedWeight'))) Tools::redirectAdmin(self::$currentIndex.'&token='.Tools::getValue('token').'&conf=4'); else $this->errors[] = Tools::displayError('The Memcached server cannot be added.'); } } else $this->errors[] = Tools::displayError('You do not have permission to add this.'); } if (Tools::getValue('deleteMemcachedServer')) { if ($this->tabAccess['add'] === '1') { if (CacheMemcache::deleteServer((int)Tools::getValue('deleteMemcachedServer'))) Tools::redirectAdmin(self::$currentIndex.'&token='.Tools::getValue('token').'&conf=4'); else $this->errors[] = Tools::displayError('There was an error when attempting to delete the Memcached server.'); } else $this->errors[] = Tools::displayError('You do not have permission to delete this.'); } $redirectAdmin = false; if ((bool)Tools::getValue('smarty_up')) { if ($this->tabAccess['edit'] === '1') { Configuration::updateValue('PS_SMARTY_FORCE_COMPILE', Tools::getValue('smarty_force_compile', _PS_SMARTY_NO_COMPILE_)); Configuration::updateValue('PS_SMARTY_CACHE', Tools::getValue('smarty_cache', 0)); $redirectAdmin = true; } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('features_detachables_up')) { if ($this->tabAccess['edit'] === '1') { if (Tools::getValue('combination') || !Combination::isCurrentlyUsed()) Configuration::updateValue('PS_COMBINATION_FEATURE_ACTIVE', Tools::getValue('combination')); if (Tools::getValue('customer_group') && !Group::isCurrentlyUsed()) Configuration::updateValue('PS_GROUP_FEATURE_ACTIVE', Tools::getValue('customer_group')); Configuration::updateValue('PS_FEATURE_FEATURE_ACTIVE', Tools::getValue('feature')); $redirectAdmin = true; } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('ccc_up')) { if ($this->tabAccess['edit'] === '1') { $theme_cache_directory = _PS_ALL_THEMES_DIR_.$this->context->shop->theme_directory.'/cache/'; if (((bool)Tools::getValue('PS_CSS_THEME_CACHE') || (bool)Tools::getValue('PS_JS_THEME_CACHE')) && !is_writable($theme_cache_directory)) $this->errors[] = Tools::displayError(sprintf($this->l('To use Smart Cache directory %s must be writable.'), realpath($theme_cache_directory))); if (!Configuration::updateValue('PS_CSS_THEME_CACHE', (int)Tools::getValue('PS_CSS_THEME_CACHE')) || !Configuration::updateValue('PS_JS_THEME_CACHE', (int)Tools::getValue('PS_JS_THEME_CACHE')) || !Configuration::updateValue('PS_HTML_THEME_COMPRESSION', (int)Tools::getValue('PS_HTML_THEME_COMPRESSION')) || !Configuration::updateValue('PS_JS_HTML_THEME_COMPRESSION', (int)Tools::getValue('PS_JS_HTML_THEME_COMPRESSION')) || !Configuration::updateValue('PS_HTACCESS_CACHE_CONTROL', (int)Tools::getValue('PS_HTACCESS_CACHE_CONTROL'))) $this->errors[] = Tools::displayError('Unknown error.'); else { $redirectAdmin = true; if (Configuration::get('PS_HTACCESS_CACHE_CONTROL')) Tools::generateHtaccess(); } } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('media_server_up') && !defined('_PS_HOST_MODE_')) { if ($this->tabAccess['edit'] === '1') { if (Tools::getValue('_MEDIA_SERVER_1_') != null && !Validate::isFileName(Tools::getValue('_MEDIA_SERVER_1_'))) $this->errors[] = Tools::displayError('Media server #1 is invalid'); if (Tools::getValue('_MEDIA_SERVER_2_') != null && !Validate::isFileName(Tools::getValue('_MEDIA_SERVER_2_'))) $this->errors[] = Tools::displayError('Media server #2 is invalid'); if (Tools::getValue('_MEDIA_SERVER_3_') != null && !Validate::isFileName(Tools::getValue('_MEDIA_SERVER_3_'))) $this->errors[] = Tools::displayError('Media server #3 is invalid'); if (!count($this->errors)) { $base_urls = array(); $base_urls['_MEDIA_SERVER_1_'] = Tools::getValue('_MEDIA_SERVER_1_'); $base_urls['_MEDIA_SERVER_2_'] = Tools::getValue('_MEDIA_SERVER_2_'); $base_urls['_MEDIA_SERVER_3_'] = Tools::getValue('_MEDIA_SERVER_3_'); if ($base_urls['_MEDIA_SERVER_1_'] || $base_urls['_MEDIA_SERVER_2_'] || $base_urls['_MEDIA_SERVER_3_']) Configuration::updateValue('PS_MEDIA_SERVERS', 1); else Configuration::updateValue('PS_MEDIA_SERVERS', 0); rewriteSettingsFile($base_urls, null, null); Tools::clearSmartyCache(); Media::clearCache(); Tools::generateHtaccess(null, null, null, '', null, array($base_urls['_MEDIA_SERVER_1_'], $base_urls['_MEDIA_SERVER_2_'], $base_urls['_MEDIA_SERVER_3_'])); unset($this->_fieldsGeneral['_MEDIA_SERVER_1_']); unset($this->_fieldsGeneral['_MEDIA_SERVER_2_']); unset($this->_fieldsGeneral['_MEDIA_SERVER_3_']); $redirectAdmin = true; } } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('ciphering_up') && Configuration::get('PS_CIPHER_ALGORITHM') != (int)Tools::getValue('PS_CIPHER_ALGORITHM')) { if ($this->tabAccess['edit'] === '1') { $algo = (int)Tools::getValue('PS_CIPHER_ALGORITHM'); $prev_settings = file_get_contents(_PS_ROOT_DIR_.'/config/settings.inc.php'); $new_settings = $prev_settings; if ($algo) { if (!function_exists('mcrypt_encrypt')) $this->errors[] = Tools::displayError('The "Mcrypt" PHP extension is not activated on this server.'); else { if (!strstr($new_settings, '_RIJNDAEL_KEY_')) { $key_size = mcrypt_get_key_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $key = Tools::passwdGen($key_size); $new_settings = preg_replace( '/define\(\'_COOKIE_KEY_\', \'([a-z0-9=\/+-_]+)\'\);/i', 'define(\'_COOKIE_KEY_\', \'\1\');'."\n".'define(\'_RIJNDAEL_KEY_\', \''.$key.'\');', $new_settings ); } if (!strstr($new_settings, '_RIJNDAEL_IV_')) { $iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_128, MCRYPT_MODE_ECB); $iv = base64_encode(mcrypt_create_iv($iv_size, MCRYPT_RAND)); $new_settings = preg_replace( '/define\(\'_COOKIE_IV_\', \'([a-z0-9=\/+-_]+)\'\);/i', 'define(\'_COOKIE_IV_\', \'\1\');'."\n".'define(\'_RIJNDAEL_IV_\', \''.$iv.'\');', $new_settings ); } } } if (!count($this->errors)) { // If there is not settings file modification or if the backup and replacement of the settings file worked if ($new_settings == $prev_settings || ( copy(_PS_ROOT_DIR_.'/config/settings.inc.php', _PS_ROOT_DIR_.'/config/settings.old.php') && (bool)file_put_contents(_PS_ROOT_DIR_.'/config/settings.inc.php', $new_settings) )) { Configuration::updateValue('PS_CIPHER_ALGORITHM', $algo); $redirectAdmin = true; } else $this->errors[] = Tools::displayError('The settings file cannot be overwritten.'); } } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('cache_up')) { if ($this->tabAccess['edit'] === '1') { $new_settings = $prev_settings = file_get_contents(_PS_ROOT_DIR_.'/config/settings.inc.php'); $cache_active = (bool)Tools::getValue('cache_active'); if ($caching_system = Tools::getValue('caching_system')) { $new_settings = preg_replace( '/define\(\'_PS_CACHING_SYSTEM_\', \'([a-z0-9=\/+-_]*)\'\);/Ui', 'define(\'_PS_CACHING_SYSTEM_\', \''.$caching_system.'\');', $new_settings ); } else { $cache_active = false; $this->errors[] = Tools::displayError('The caching system is missing.'); } if ($cache_active) { if ($caching_system == 'CacheMemcache' && !extension_loaded('memcache')) $this->errors[] = Tools::displayError('To use Memcached, you must install the Memcache PECL extension on your server.').' <a href="http://www.php.net/manual/en/memcache.installation.php">http://www.php.net/manual/en/memcache.installation.php</a>'; elseif ($caching_system == 'CacheApc' && !extension_loaded('apc')) $this->errors[] = Tools::displayError('To use APC cache, you must install the APC PECL extension on your server.').' <a href="http://fr.php.net/manual/fr/apc.installation.php">http://fr.php.net/manual/fr/apc.installation.php</a>'; elseif ($caching_system == 'CacheXcache' && !extension_loaded('xcache')) $this->errors[] = Tools::displayError('To use Xcache, you must install the Xcache extension on your server.').' <a href="http://xcache.lighttpd.net">http://xcache.lighttpd.net</a>'; elseif ($caching_system == 'CacheXcache' && !ini_get('xcache.var_size')) $this->errors[] = Tools::displayError('To use Xcache, you must configure "xcache.var_size" for the Xcache extension (recommended value 16M to 64M).').' <a href="http://xcache.lighttpd.net/wiki/XcacheIni">http://xcache.lighttpd.net/wiki/XcacheIni</a>'; elseif ($caching_system == 'CacheFs') if (!is_dir(_PS_CACHEFS_DIRECTORY_)) @mkdir(_PS_CACHEFS_DIRECTORY_, 0777, true); elseif (!is_writable(_PS_CACHEFS_DIRECTORY_)) $this->errors[] = sprintf( Tools::displayError('To use CacheFS, the directory %s must be writable.'), realpath(_PS_CACHEFS_DIRECTORY_) ); if ($caching_system == 'CacheFs') { if (!($depth = Tools::getValue('ps_cache_fs_directory_depth'))) $this->errors[] = Tools::displayError('Please set a directory depth.'); if (!count($this->errors)) { CacheFs::deleteCacheDirectory(); CacheFs::createCacheDirectories((int)$depth); Configuration::updateValue('PS_CACHEFS_DIRECTORY_DEPTH', (int)$depth); } } elseif ($caching_system == 'CacheMemcache' && !_PS_CACHE_ENABLED_ && _PS_CACHING_SYSTEM_ == 'CacheMemcache') Cache::getInstance()->flush(); } if (!count($this->errors)) { $new_settings = preg_replace('/define\(\'_PS_CACHE_ENABLED_\', \'([01]?)\'\);/Ui', 'define(\'_PS_CACHE_ENABLED_\', \''.(int)$cache_active.'\');', $new_settings); // If there is not settings file modification or if the backup and replacement of the settings file worked if ($new_settings == $prev_settings || ( copy(_PS_ROOT_DIR_.'/config/settings.inc.php', _PS_ROOT_DIR_.'/config/settings.old.php') && (bool)file_put_contents(_PS_ROOT_DIR_.'/config/settings.inc.php', $new_settings) )) $redirectAdmin = true; else $this->errors[] = Tools::displayError('The settings file cannot be overwritten.'); } } else $this->errors[] = Tools::displayError('You do not have permission to edit this.'); } if ((bool)Tools::getValue('empty_smarty_cache')) { $redirectAdmin = true; Tools::clearSmartyCache(); Tools::clearXMLCache(); Media::clearCache(); PrestaShopAutoload::getInstance()->generateIndex(); } if (Tools::isSubmit('submitAddconfiguration') && _PS_MODE_DEV_) { Configuration::updateGlobalValue('PS_DISABLE_NON_NATIVE_MODULE', (int)Tools::getValue('native_module')); Configuration::updateGlobalValue('PS_DISABLE_OVERRIDES', (int)Tools::getValue('overrides')); if (Tools::getValue('overrides')) PrestaShopAutoload::getInstance()->_include_override_path = false; PrestaShopAutoload::getInstance()->generateIndex(); } if ($redirectAdmin && (!isset($this->errors) || !count($this->errors))) { Hook::exec('action'.get_class($this).ucfirst($this->action).'After', array('controller' => $this, 'return' => '')); Tools::redirectAdmin(self::$currentIndex.'&token='.Tools::getValue('token').'&conf=4'); } } public function ajaxProcess() { /* PrestaShop demo mode */ if (_PS_MODE_DEMO_) die(Tools::displayError('This functionality has been disabled.')); /* PrestaShop demo mode*/ if (Tools::isSubmit('action') && Tools::getValue('action') == 'test_server') { $host = pSQL(Tools::getValue('sHost', '')); $port = (int)Tools::getValue('sPort', 0); if ($host != '' && $port != 0) { $res = 0; if (function_exists('memcache_get_server_status') && function_exists('memcache_connect') && @fsockopen($host, $port)) { $memcache = @memcache_connect($host, $port); $res = @memcache_get_server_status($memcache, $host, $port); } die(Tools::jsonEncode(array($res))); } } die; } }
©
2018. | Recode by D7net