// thanks to Julien Breux for AdminInformationController
[*] BO : optimized ConfigurationTest class git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9625 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -1,372 +0,0 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 6844 $
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class AdminInformation extends AdminTab
|
||||
{
|
||||
private function _getTestResultHtml()
|
||||
{
|
||||
$html = '';
|
||||
// Functions list to test with 'test_system'
|
||||
$funcs = array('fopen', 'fclose', 'fread', 'fwrite', 'rename', 'file_exists', 'unlink', 'rmdir', 'mkdir', 'getcwd', 'chdir', 'chmod');
|
||||
|
||||
// Test list to execute (function/args)
|
||||
$tests = array(
|
||||
'phpversion' => false,
|
||||
'upload' => false,
|
||||
'system' => $funcs,
|
||||
'gd' => false,
|
||||
'mysql_support' => false,
|
||||
'config_dir' => _PS_ADMIN_DIR_.'/../config/',
|
||||
'cache_dir' => _PS_CACHE_DIR_,
|
||||
'sitemap' => _PS_ADMIN_DIR_.'/../sitemap.xml',
|
||||
'img_dir' => _PS_ADMIN_DIR_.'/../img/',
|
||||
'mails_dir' => _PS_ADMIN_DIR_.'/../mails/',
|
||||
'module_dir' => _PS_ADMIN_DIR_.'/../modules/',
|
||||
'theme_lang_dir' => _PS_ADMIN_DIR_.'/../themes/'._THEME_NAME_.'/lang/',
|
||||
'translations_dir' => _PS_ADMIN_DIR_.'/../translations/',
|
||||
'customizable_products_dir' => _PS_ADMIN_DIR_.'/../upload/',
|
||||
'virtual_products_dir' => _PS_ADMIN_DIR_.'/../download/'
|
||||
);
|
||||
|
||||
$tests_op = array(
|
||||
'fopen' => false,
|
||||
'register_globals' => false,
|
||||
'gz' => false
|
||||
);
|
||||
|
||||
$testsErrors = array(
|
||||
'phpversion' => $this->l('Update your PHP version'),
|
||||
'upload' => $this->l('Configure your server to allow the upload file'),
|
||||
'system' => $this->l('Configure your server to allow the creation of directories and write to files'),
|
||||
'gd' => $this->l('Enable the GD library on your server'),
|
||||
'mysql_support' => $this->l('Enable the MySQL support on your server'),
|
||||
'config_dir' => $this->l('Set write permissions for config folder'),
|
||||
'cache_dir' => $this->l('Set write permissions for cache folder'),
|
||||
'sitemap' => $this->l('Set write permissions for sitemap.xml file'),
|
||||
'img_dir' => $this->l('Set write permissions for img folder and subfolders/recursively'),
|
||||
'mails_dir' => $this->l('Set write permissions for mails folder and subfolders/recursively'),
|
||||
'module_dir' => $this->l('Set write permissions for modules folder and subfolders/recursively'),
|
||||
'theme_lang_dir' => $this->l('Set write permissions for themes/')._THEME_NAME_.$this->l('/lang/ folder and subfolders/recursively'),
|
||||
'translations_dir' => $this->l('Set write permissions for translations folder and subfolders/recursively'),
|
||||
'customizable_products_dir' => $this->l('Set write permissions for upload folder and subfolders/recursively'),
|
||||
'virtual_products_dir' => $this->l('Set write permissions for download folder and subfolders/recursively'),
|
||||
'fopen' => $this->l('Enable fopen on your server'),
|
||||
'register_globals' => $this->l('Set PHP register global option to off'),
|
||||
'gz' => $this->l('Enable GZIP compression on your server')
|
||||
);
|
||||
|
||||
$paramsRequiredResults = self::check($tests);
|
||||
$paramsOptionalResults = self::check($tests_op);
|
||||
|
||||
$html .= '
|
||||
<p>
|
||||
<b>'.$this->l('Required parameters').':</b>';
|
||||
if (!in_array('fail', $paramsRequiredResults))
|
||||
$html .= ' <span style="color:green;font-weight:bold;">OK</span>
|
||||
</p>
|
||||
';
|
||||
else
|
||||
{
|
||||
$html .= ' <span style="color:red">'.$this->l('Please consult the following error(s)').'</span>
|
||||
</p>
|
||||
<ul>
|
||||
';
|
||||
foreach ($paramsRequiredResults AS $key => $value)
|
||||
if ($value == 'fail')
|
||||
$html .= '<li>'.$testsErrors[$key].'</li>';
|
||||
$html .= '</ul>';
|
||||
}
|
||||
|
||||
$html .= '
|
||||
<p>
|
||||
<b>'.$this->l('Optional parameters').':</b>';
|
||||
if (!in_array('fail', $paramsOptionalResults))
|
||||
$html .= ' <span style="color:green;font-weight:bold;">OK</span>
|
||||
</p>
|
||||
';
|
||||
else
|
||||
{
|
||||
$html .= ' <span style="color:red">'.$this->l('Please consult the following error(s)').'</span>
|
||||
</p>
|
||||
<ul>
|
||||
';
|
||||
foreach ($paramsOptionalResults AS $key => $value)
|
||||
if ($value == 'fail')
|
||||
$html .= '<li>'.$testsErrors[$key].'</li>';
|
||||
$html .= '</ul>';
|
||||
}
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
||||
public function display()
|
||||
{
|
||||
echo '
|
||||
<h2>'.$this->l('Information').'</h2>
|
||||
<fieldset>
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> '.$this->l('Help').'</legend>
|
||||
<p>'.$this->l('This information must be indicated when you report a bug on our bug tracker or if you report a problem on our forum.').'</p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<fieldset>
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> '.$this->l('Information about your configuration').'</legend>
|
||||
<h3>'.$this->l('Server information').'</h3>
|
||||
<p>
|
||||
<b>'.$this->l('Prestashop Version').':</b>
|
||||
'._PS_VERSION_.'
|
||||
</p>';
|
||||
|
||||
if (function_exists('php_uname'))
|
||||
echo '
|
||||
<p>
|
||||
<b>'.$this->l('Server information').':</b>
|
||||
'.php_uname('s').' '.php_uname('v').' '.php_uname('m').'
|
||||
</p>';
|
||||
|
||||
echo '
|
||||
<p>
|
||||
<b>'.$this->l('Server software Version').':</b>
|
||||
'.$_SERVER['SERVER_SOFTWARE'].'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('PHP Version').':</b>
|
||||
'.phpversion().'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('MySQL Version').':</b>
|
||||
'.Db::getInstance()->getVersion().'
|
||||
</p>';
|
||||
if (function_exists('apache_get_modules') AND in_array('mod_instaweb', apache_get_modules()))
|
||||
echo '<p style="color:red;font-weight:700">'.$this->l('PageSpeed module for Apache installed (mod_instaweb)').'</p>';
|
||||
echo '
|
||||
<hr />
|
||||
<h3>'.$this->l('Store information').'</h3>
|
||||
<p>
|
||||
<b>'.$this->l('URL of your website').':</b>
|
||||
'.Tools::getHttpHost(true).__PS_BASE_URI__.'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('Theme name used').':</b>
|
||||
'._THEME_NAME_.'
|
||||
</p>
|
||||
<hr />
|
||||
<h3>'.$this->l('Mail information').'</h3>
|
||||
<p>
|
||||
<b>'.$this->l('Mail method').':</b>
|
||||
';
|
||||
if (Configuration::get('PS_MAIL_METHOD') == 1)
|
||||
echo $this->l('You use PHP mail() function.').'</p>';
|
||||
else
|
||||
{
|
||||
echo $this->l('You use your own SMTP parameters').'</p>';
|
||||
echo '
|
||||
<p>
|
||||
<b>'.$this->l('SMTP server').':</b>
|
||||
'.Configuration::get('PS_MAIL_SERVER').'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('SMTP user').':</b>
|
||||
'.(Configuration::get('PS_MAIL_USER') ? $this->l('Defined') : '<span style="color:red;">'.$this->l('Not defined').'</span>').'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('SMTP password').':</b>
|
||||
'.(Configuration::get('PS_MAIL_PASSWD') ? $this->l('Defined') : '<span style="color:red;">'.$this->l('Not defined').'</span>').'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('Encryption').':</b>
|
||||
'.Configuration::get('PS_MAIL_SMTP_ENCRYPTION').'
|
||||
</p>
|
||||
<p>
|
||||
<b>'.$this->l('Port').':</b>
|
||||
'.Configuration::get('PS_MAIL_SMTP_PORT').'
|
||||
</p>
|
||||
';
|
||||
}
|
||||
echo '
|
||||
<hr />
|
||||
<h3>'.$this->l('Your information').'</h3>
|
||||
<p>
|
||||
<b>'.$this->l('Information from you').':</b>
|
||||
'.$_SERVER["HTTP_USER_AGENT"].'
|
||||
</p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<fieldset id="checkConfiguration">
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> '.$this->l('Check your configuration').'</legend>
|
||||
'.self::_getTestResultHtml().'
|
||||
</fieldset>
|
||||
';
|
||||
}
|
||||
|
||||
static private function check($tests)
|
||||
{
|
||||
$res = array();
|
||||
foreach ($tests AS $key => $test)
|
||||
$res[$key] = self::run($key, $test);
|
||||
return $res;
|
||||
}
|
||||
|
||||
static private function run($ptr, $arg = 0)
|
||||
{
|
||||
if (call_user_func(array('self', 'test_'.$ptr), $arg))
|
||||
return ('ok');
|
||||
return ('fail');
|
||||
}
|
||||
|
||||
// Misc functions
|
||||
static private function test_phpversion()
|
||||
{
|
||||
return PHP_VERSION_ID >= 50000; /* PHP version > 5.0 */
|
||||
}
|
||||
|
||||
static private function test_mysql_support()
|
||||
{
|
||||
return function_exists('mysql_connect');
|
||||
}
|
||||
|
||||
static private function test_upload()
|
||||
{
|
||||
return ini_get('file_uploads');
|
||||
}
|
||||
|
||||
static private function test_fopen()
|
||||
{
|
||||
return ini_get('allow_url_fopen');
|
||||
}
|
||||
|
||||
static private function test_system($funcs)
|
||||
{
|
||||
foreach ($funcs AS $func)
|
||||
if (!function_exists($func))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
static private function test_gd()
|
||||
{
|
||||
return function_exists('imagecreatetruecolor');
|
||||
}
|
||||
|
||||
static private function test_register_globals()
|
||||
{
|
||||
return !ini_get('register_globals');
|
||||
}
|
||||
|
||||
static private function test_gz()
|
||||
{
|
||||
if (function_exists('gzencode'))
|
||||
return !(@gzencode('dd') === false);
|
||||
return false;
|
||||
}
|
||||
|
||||
// is_writable dirs
|
||||
static private function test_dir($dir, $recursive = false)
|
||||
{
|
||||
if (!is_writable($dir) OR !$dh = opendir($dir))
|
||||
return false;
|
||||
if ($recursive)
|
||||
{
|
||||
while (($file = readdir($dh)) !== false)
|
||||
if (is_dir($dir.$file) AND $file != '.' AND $file != '..')
|
||||
if (!self::test_dir($dir.$file, true))
|
||||
return false;
|
||||
}
|
||||
closedir($dh);
|
||||
return true;
|
||||
}
|
||||
|
||||
// is_writable files
|
||||
static private function test_file($file)
|
||||
{
|
||||
return (file_exists($file) AND is_writable($file));
|
||||
}
|
||||
|
||||
static private function test_config_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_sitemap($dir)
|
||||
{
|
||||
return self::test_file($dir);
|
||||
}
|
||||
|
||||
static private function test_root_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_admin_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_img_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
static private function test_module_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
static function test_cache_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_download_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_mails_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
static private function test_translations_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
static private function test_theme_lang_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
static private function test_customizable_products_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
|
||||
static private function test_virtual_products_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
}
|
||||
}
|
||||
+119
@@ -0,0 +1,119 @@
|
||||
<h2>{l s='Information'}</h2>
|
||||
<fieldset>
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> {l s='Help'}</legend>
|
||||
<p>{l s='This information must be indicated when you report a bug on our bug tracker or if you report a problem on our forum.'}</p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<fieldset>
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> {l s='Information about your configuration'}</legend>
|
||||
<h3>{l s='Server information'}</h3>
|
||||
<p>
|
||||
<b>{l s='Prestashop Version'}:</b> {$version.ps}
|
||||
</p>
|
||||
|
||||
{if count($uname)}
|
||||
<p>
|
||||
<b>{l s='Server information'}:</b> {$uname}
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
<p>
|
||||
<b>{l s='Server software Version'}:</b> {$version.server}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='PHP Version'}:</b> {$version.php}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='MySQL Version'}:</b> {$version.mysql}
|
||||
</p>
|
||||
{if $apache_instaweb}
|
||||
<p style="color:red;font-weight:700">{l s='PageSpeed module for Apache installed (mod_instaweb)'}</p>
|
||||
{/if}
|
||||
|
||||
<hr />
|
||||
<h3>{l s='Store information'}</h3>
|
||||
<p>
|
||||
<b>{l s='URL of your website'}:</b> {$shop.url}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='Theme name used'}:</b> {$shop.theme}
|
||||
</p>
|
||||
<hr />
|
||||
<h3>{l s='Mail information'}</h3>
|
||||
<p>
|
||||
<b>{l s='Mail method'}:</b>
|
||||
|
||||
{if $mail}
|
||||
{l s='You use PHP mail() function.'}</p>
|
||||
{else}
|
||||
{l s='You use your own SMTP parameters'}</p>
|
||||
<p>
|
||||
<b>{l s='SMTP server'}:</b> {$smtp.server}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='SMTP user'}:</b>
|
||||
{if $smtp.user neq ''}
|
||||
{l s='Defined'}
|
||||
{else}
|
||||
<span style="color:red;">{l s='Not defined'}</span>
|
||||
{/if}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='SMTP password'}:</b>
|
||||
{if $smtp.password neq ''}
|
||||
{l s='Defined'}
|
||||
{else}
|
||||
<span style="color:red;">{l s='Not defined'}</span>
|
||||
{/if}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='Encryption'}:</b> {$smtp.encryption}
|
||||
</p>
|
||||
<p>
|
||||
<b>{l s='Port'}:</b> {$smtp.port}
|
||||
</p>
|
||||
{/if}
|
||||
<hr />
|
||||
<h3>{l s='Your information'}</h3>
|
||||
<p>
|
||||
<b>{l s='Information from you'}:</b> {$user_agent}
|
||||
</p>
|
||||
</fieldset>
|
||||
<br />
|
||||
<fieldset id="checkConfiguration">
|
||||
<legend><img src="../img/t/AdminInformation.gif" alt="" /> {l s='Check your configuration'}</legend>
|
||||
<p>
|
||||
<b>{l s='Required parameters'}:</b>
|
||||
{if !$failRequired}
|
||||
<span style="color:green;font-weight:bold;">OK</span>
|
||||
</p>
|
||||
{else}
|
||||
<span style="color:red">{l s='Please consult the following error(s)'}</span>
|
||||
</p>
|
||||
<ul>
|
||||
{foreach from=$testsRequired item='value' key='key'}
|
||||
{if $value eq 'fail'}
|
||||
<li>{$testsErrors[$key]}</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
|
||||
<p>
|
||||
<b>{l s='Optional parameters'}:</b>
|
||||
{if !$failOptional}
|
||||
<span style="color:green;font-weight:bold;">OK</span>
|
||||
</p>
|
||||
{else}
|
||||
<span style="color:red">{l s='Please consult the following error(s)'}</span>
|
||||
</p>
|
||||
<ul>
|
||||
{foreach from=$testsOptional item='value' key='key'}
|
||||
{if $value eq 'fail'}
|
||||
<li>{$testsErrors[$key]}</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
|
||||
</fieldset>
|
||||
@@ -27,6 +27,62 @@
|
||||
|
||||
class ConfigurationTestCore
|
||||
{
|
||||
|
||||
/**
|
||||
* getDefaultTests return an array of tests to executes.
|
||||
* key are method name, value are parameters (false for no parameter)
|
||||
* all path are _PS_ROOT_DIR_ related
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getDefaultTests()
|
||||
{
|
||||
return array(
|
||||
'system' => array(
|
||||
'fopen', 'fclose', 'fread', 'fwrite',
|
||||
'rename', 'file_exists', 'unlink', 'rmdir', 'mkdir',
|
||||
'getcwd', 'chdir', 'chmod'
|
||||
),
|
||||
|
||||
'phpversion' => false,
|
||||
'upload' => false,
|
||||
'gd' => false,
|
||||
'mysql_support' => false,
|
||||
'config_dir' => 'config',
|
||||
'cache_dir' => 'cache',
|
||||
'sitemap' => 'sitemap.xml',
|
||||
'img_dir' => 'img',
|
||||
'mails_dir' => 'mails',
|
||||
'module_dir' => 'modules',
|
||||
'theme_lang_dir' => 'themes/'._THEME_NAME_.'/lang/',
|
||||
'translations_dir' => 'translations',
|
||||
'customizable_products_dir' => 'upload',
|
||||
'virtual_products_dir' => 'download'
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* getDefaultTestsOp return an array of tests to executes.
|
||||
* key are method name, value are parameters (false for no parameter)
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getDefaultTestsOp()
|
||||
{
|
||||
|
||||
return array(
|
||||
'fopen' => false,
|
||||
'register_globals' => false,
|
||||
'gz' => false
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* run all test defined in $tests
|
||||
*
|
||||
* @param array $tests
|
||||
* @return array results of tests
|
||||
*/
|
||||
public static function check($tests)
|
||||
{
|
||||
$res = array();
|
||||
@@ -38,8 +94,8 @@ class ConfigurationTestCore
|
||||
public static function run($ptr, $arg = 0)
|
||||
{
|
||||
if (call_user_func(array('ConfigurationTest', 'test_'.$ptr), $arg))
|
||||
return ('ok');
|
||||
return ('fail');
|
||||
return 'ok';
|
||||
return 'fail';
|
||||
}
|
||||
|
||||
public static function test_phpversion()
|
||||
@@ -97,8 +153,9 @@ class ConfigurationTestCore
|
||||
return false;
|
||||
}
|
||||
|
||||
public static function test_dir($dir, $recursive = false)
|
||||
public static function test_dir($relative_dir, $recursive = false)
|
||||
{
|
||||
$dir = _PS_ROOT_DIR_.DIRECTORY_SEPARATOR.ltrim($relative_dir, '/');
|
||||
if (!file_exists($dir) OR !$dh = opendir($dir))
|
||||
return false;
|
||||
$dummy = rtrim($dir, '/').'/'.uniqid();
|
||||
@@ -113,16 +170,17 @@ class ConfigurationTestCore
|
||||
if ($recursive)
|
||||
{
|
||||
while (($file = readdir($dh)) !== false)
|
||||
if (is_dir($dir.$file) && $file != '.' && $file != '..')
|
||||
if (!self::test_dir($dir.$file, true))
|
||||
if (is_dir($dir.DIRECTORY_SEPARATOR.$file) && $file != '.' && $file != '..' && $file != '.svn')
|
||||
if (!self::test_dir($relative_dir.DIRECTORY_SEPARATOR.$file, true))
|
||||
return false;
|
||||
}
|
||||
closedir($dh);
|
||||
return true;
|
||||
}
|
||||
|
||||
public static function test_file($file)
|
||||
public static function test_file($file_relative)
|
||||
{
|
||||
$file = _PS_ROOT_DIR_.DIRECTORY_SEPARATOR.$file_relative;
|
||||
return (file_exists($file) AND is_writable($file));
|
||||
}
|
||||
|
||||
@@ -163,7 +221,7 @@ class ConfigurationTestCore
|
||||
|
||||
public static function test_cache_dir($dir)
|
||||
{
|
||||
return self::test_dir($dir);
|
||||
return self::test_dir($dir, true);
|
||||
}
|
||||
|
||||
public static function test_tools_v2_dir($dir)
|
||||
|
||||
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
/*
|
||||
* 2007-2011 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-2011 PrestaShop SA
|
||||
* @version Release: $Revision: 6844 $
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
class AdminInformationControllerCore extends AdminController
|
||||
{
|
||||
|
||||
|
||||
public function initContent()
|
||||
{
|
||||
parent::initContent();
|
||||
|
||||
$this->context->smarty->assign(array(
|
||||
'version' => array(
|
||||
'mysql' => Db::getInstance()->getVersion(),
|
||||
'php' => phpversion(),
|
||||
'ps' => _PS_VERSION_,
|
||||
'server' => $_SERVER['SERVER_SOFTWARE'],
|
||||
),
|
||||
'uname' => function_exists('php_uname') ? php_uname('s').' '.php_uname('v').' '.php_uname('m') : '',
|
||||
'apache_instaweb' => Tools::apacheModExists('mod_instaweb'),
|
||||
'shop' => array(
|
||||
'url' => Tools::getHttpHost(true).__PS_BASE_URI__,
|
||||
'theme' => _THEME_NAME_,
|
||||
),
|
||||
'mail' => Configuration::get('PS_MAIL_METHOD') == 1,
|
||||
'smtp' => array(
|
||||
'server' => Configuration::get('PS_MAIL_SERVER'),
|
||||
'user' => Configuration::get('PS_MAIL_USER'),
|
||||
'password' => Configuration::get('PS_MAIL_PASSWD'),
|
||||
'encryption' => Configuration::get('PS_MAIL_SMTP_ENCRYPTION'),
|
||||
'port' => Configuration::get('PS_MAIL_SMTP_PORT'),
|
||||
),
|
||||
'user_agent' => $_SERVER["HTTP_USER_AGENT"],
|
||||
));
|
||||
|
||||
$this->context->smarty->assign($this->getTestResult());
|
||||
}
|
||||
|
||||
/**
|
||||
* get all tests
|
||||
*
|
||||
* @return array of test results
|
||||
*/
|
||||
public function getTestResult()
|
||||
{
|
||||
// Functions list to test with 'test_system'
|
||||
// Test to execute (function/args) : lets uses the default test
|
||||
$tests = ConfigurationTest::getDefaultTests();
|
||||
$tests_op = ConfigurationTest::getDefaultTestsOp();
|
||||
|
||||
$testsErrors = array(
|
||||
'phpversion' => $this->l('Update your PHP version'),
|
||||
'upload' => $this->l('Configure your server to allow the upload file'),
|
||||
'system' => $this->l('Configure your server to allow the creation of directories and write to files'),
|
||||
'gd' => $this->l('Enable the GD library on your server'),
|
||||
'mysql_support' => $this->l('Enable the MySQL support on your server'),
|
||||
'config_dir' => $this->l('Set write permissions for config folder'),
|
||||
'cache_dir' => $this->l('Set write permissions for cache folder'),
|
||||
'sitemap' => $this->l('Set write permissions for sitemap.xml file'),
|
||||
'img_dir' => $this->l('Set write permissions for img folder and subfolders/recursively'),
|
||||
'mails_dir' => $this->l('Set write permissions for mails folder and subfolders/recursively'),
|
||||
'module_dir' => $this->l('Set write permissions for modules folder and subfolders/recursively'),
|
||||
'theme_lang_dir' => $this->l('Set write permissions for themes/')._THEME_NAME_.$this->l('/lang/ folder and subfolders/recursively'),
|
||||
'translations_dir' => $this->l('Set write permissions for translations folder and subfolders/recursively'),
|
||||
'customizable_products_dir' => $this->l('Set write permissions for upload folder and subfolders/recursively'),
|
||||
'virtual_products_dir' => $this->l('Set write permissions for download folder and subfolders/recursively'),
|
||||
'fopen' => $this->l('Enable fopen on your server'),
|
||||
'register_globals' => $this->l('Set PHP register global option to off'),
|
||||
'gz' => $this->l('Enable GZIP compression on your server')
|
||||
);
|
||||
|
||||
$paramsRequiredResults = ConfigurationTest::check($tests);
|
||||
$paramsOptionalResults = ConfigurationTest::check($tests_op);
|
||||
|
||||
return array(
|
||||
'failRequired' => in_array('fail', $paramsRequiredResults),
|
||||
'failOptional' => in_array('fail', $paramsOptionalResults),
|
||||
'testsErrors' => $testsErrors,
|
||||
'testsRequired' => $paramsRequiredResults,
|
||||
'testsOptional' => $paramsOptionalResults,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user