解壓縮後 要記得修改資料夾裡面的"globals.php"
還有新增一個空白文件 configuration.php
然後修改他的權限 chmod 777 configuration.php
2007年6月13日 星期三
apache 設定虛擬目錄
nano /etc/apache2/apache2.conf
EX:
Alias /wufish/ "/home/wufish/www/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
EX:
Alias /wufish/ "/home/wufish/www/"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
忘記mysql的密碼 囧
結束 mysql 的 process,Linux 可以執行以下的指令:
killall mysqld
接下來,用以下的指令啟動並進入 MySQL:
mysqld -u root --skip-grant-tables &
mysql
進入 MySQL 的命令提示列後:
use mysql;
UPDATE user SET password=password('new password') where user='root';
FLUSH PRIVILEGES;
這樣就好了 orz
killall mysqld
接下來,用以下的指令啟動並進入 MySQL:
mysqld -u root --skip-grant-tables &
mysql
進入 MySQL 的命令提示列後:
use mysql;
UPDATE user SET password=password('new password') where user='root';
FLUSH PRIVILEGES;
這樣就好了 orz
訂閱:
文章 (Atom)