RSS
 

apache, mysql 在 windows 中免安装版的一些常用操作

01

apache

安装为服务:
httpd -k install

在服中卸载
httpd -k uninstall

快速重启动(使conf生效)
httpd -k restart

mysql

安装为服务
mysqld –install MySQL –defaults-file=d:\mysql\my.ini

在服务中卸载:
mysqld –remove MySQL

 
 

wordpress 非子域名站点, 登录Cookie错误修复

26

在 ms-load.php 中找到下面的函数:
function wpmu_current_site();

在这个函数里的适当位置(如:在wp_cache_set( ‘current_site’, $current_site, ‘site-options’ );前)添加下面的内容:

// zhaixudong to fix bug, 2010.0826
$current_site->cookie_domain = $domain;