Directadmin里不能自动刷新用户统计信息的解决办法
1) check for /usr/local/directadmin/data/task.queue It should be deleted every minute. If it exists, check it's contents. If there are more than just 1 or 2 lines, then the dataskq...
Directadmin修改上传文件大小限制
cd /usr/local/lib vi php.ini max_execution_time = 0 默认是30秒,如果无限制,修改为0; post_max_size = 208M 默认是32M,根据情况调整大小; upload_max_filessize = 200M 默认是8M...
mysql更改表引擎INNODB为MyISAM的方法
使用以下mysql sql语句,可以给表设定数据库引擎: ALTER TABLE `wp_posts` ENGINE = MyISAM; 在需要使用mysql的全文索引(FULLTEXT index)的时候,这张表的数据库引擎必须是MyISAM类型。关于INN...