Home > php教程 > PHP源码 > Magento 的文件和数据库维护脚本

Magento 的文件和数据库维护脚本

PHP中文网
Release: 2016-05-25 17:13:45
Original
1234 people have browsed it


global->resources->default_setup->connection->host;
	$db['name'] = $xml->global->resources->default_setup->connection->dbname;
	$db['user'] = $xml->global->resources->default_setup->connection->username;
	$db['pass'] = $xml->global->resources->default_setup->connection->password;
	$db['pref'] = $xml->global->resources->db->table_prefix;
 
	if($_GET['clean'] == 'log') clean_log_tables();
	if($_GET['clean'] == 'var') clean_var_directory();
 
	function clean_log_tables() 
	{
		global $db;
 
		$tables = array(
		'catalogindex_aggregation',
		'catalogindex_aggregation_tag',
		'catalogindex_aggregation_to_tag',
		'dataflow_batch_export',
		'dataflow_batch_import',
		'log_customer',
		'log_quote',
		'log_summary',
		'log_summary_type',
		'log_url',
		'log_url_info',
		'log_visitor',
		'log_visitor_info',
		'log_visitor_online',
		'report_event'
		);
 
		mysql_connect($db['host'], $db['user'], $db['pass']) or die(mysql_error());
		mysql_select_db($db['name']) or die(mysql_error());
 
		foreach($tables as $v => $k) {
			mysql_query('TRUNCATE `'.$db['pref'].$k.'`') or die(mysql_error());
		}
	}
 
	function clean_var_directory() 
	{
		$dirs = array(
		'downloader/pearlib/cache/*',
		'downloader/pearlib/download/*',
		'var/cache/',
		'var/log/',
		'var/report/',
		'var/session/',
		'var/tmp/'
		);
 
		foreach($dirs as $v => $k) {
			exec('rm -rf '.$k);
		}
	}
	clean_log_tables();
	clean_var_directory();
?>
Copy after login

                   

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template