清空magento没用数据库信息

清空magento没用数据库信息

1. 随着访问量增加,日志文件会越来越大,我们可以通过数据库清空这些日志信息
清空前先做好备份以防万一.
复制一下sql语句清空数据
[php]
TRUNCATE TABLE `dataflow_batch_export`;
TRUNCATE TABLE `dataflow_batch_import`;
TRUNCATE TABLE `log_customer`;
TRUNCATE TABLE `log_quote`;
TRUNCATE TABLE `log_summary`;
TRUNCATE TABLE `log_summary_type`;
TRUNCATE TABLE `log_url`;
TRUNCATE TABLE `log_url_info`;
TRUNCATE TABLE `log_visitor`;
TRUNCATE TABLE `log_visitor_info`;
TRUNCATE TABLE `log_visitor_online`;
TRUNCATE TABLE `report_viewed_product_index`;
TRUNCATE TABLE `report_compared_product_index`;
TRUNCATE TABLE `report_event`;
set foreign_key_checks = 0;
TRUNCATE TABLE `index_process_event`;
TRUNCATE TABLE `index_event`;
set foreign_key_checks = 1;
[/php]

2. 可以设置magento自动清空log
1) 登录你的magento后台进入 System -> Configuration
2) 在左边栏进入 Advanced -> System
3) 打开 Log Cleaning
4) 设置 “save log, days” 到一个数值, 这个的单位是天,我觉得几天清空一次就好了
5) 启用日志清理 自动清空log设置

发表评论

© 2022. powered by PHP 个人小站