CMU 的資料庫中共用到 40 個音標符號,不過似乎並不是標準的 KK 音標,每個音標符號各以一或兩個英文字母的代碼表示,整份列表是長這個樣子的:
HARBESON HH AA1 R B IH0 S AH0 N
HARBIN HH AA1 R B IH0 N
HARBINGER HH AA1 R B IH0 N JH ER0
HARBINGERS HH AA1 R B IH0 NG ER0 Z
HARBINSON HH AA1 R B IH0 N S AH0 N
HARBISON HH AA1 R B IH0 S AH0 N
HARBOLD HH AA1 R B OW2 L D
HARBOR HH AA1 R B ER0
經過與 unicode 比對之後,整理出來的對應表如下:
代碼
音標
Unicode
顯示方式
代碼
音標
Unicode
顯示方式
AA
ɑ
U+0251
ɑ
K
k
–
k
AE
æ
U+00E6
æ
L
l
–
l
AH
ʌ
U+028C
ʌ
M
m
–
m
AH0
ə
U+0259
ə
N
n
–
n
AO
ɔ
U+0254
ɔ
NG
ŋ
U+014B
ŋ
AW
ɑʊ
U+0251 U+028A
ɑ ʊ
OW
o
–
o
AY
ɑɪ
U+0251 U+026A
ɑ ɪ
OY
ɔɪ
U+0254 U+026A
ɔ ɪ
B
b
–
b
P
p
–
p
CH
tʃ
t U+0283
tʃ
R
r
–
r
D
d
–
d
S
s
–
s
DH
ð
U+00F0
ð
SH
ʃ
U+0283
ʃ
EH
ɛ
U+025B
ɛ
T
t
–
t
ER
ɚ
U+025A
ɚ
TH
θ
U+03B8
θ
ɝ
U+025D
ɝ
EY
e
–
e
UH
ʊ
U+028A
ʊ
F
f
–
f
UW
u
–
u
G
g
–
g
V
v
–
v
HH
h
–
h
W
w
–
w
IH
ɪ
U+026A
ɪ
Y
j
–
j
IY
i
–
i
Z
z
–
z
JH
dʒ
d U+0292
dʒ
ZH
ʒ
U+0292
ʒ
其中 ɝ 這個音標並沒有被 CMU 這個資料庫用到,我也不知為什麼,可能是它用的並不是標準的 KK 音標吧
另外,比較奇怪的一點是,使用 Firefox 瀏覽這些 unicode 音標符號都沒有問題,但是使用 Internet Explorer 的話,有部分符號會顯示出不出來(變成一個空白的框框)
# php /usr/local/share/examples/eaccelerator/eaccelerator_password.php
Changing password for eAccelerator Web Interface (eaccelerator.php)
Enter admin name: dada
New admin password: 12345
Retype new admin password: 12345
Add the following lines into your php.ini and restart HTTPD
eaccelerator.admin.name="dada"
eaccelerator.admin.password="$1$oEX8dazK$7F5FMsJQejEh2Vdazjkqd."
Usage: encoder [options] source_file_name
encoder [options] source_file_name...
encoder [options] source_directory_name...
Options:
-s suffix
encode files only with following suffix (default is "php")
-a
encode all files (no by default)
-l
follow symbolic links (no by default)
-r
encode directories recursively (no by default)
-c
copy files those shouldn't be encoded (no by default)
-f
overwrite existing files (no by default)
-w
exclude check for eaccelerator_load() and subsequent warning
-o target
If you encode only one script then 'target' specifyes an output
file name. If you encode directory or several files at once
then 'target' specifyes an output directory name.
Examples:
encoder some_file.php
encoder some_file.php -o some_encoded_file.php
encoder *.php -o some_dir
encoder ~/public_html/x -rcf -sphp -sinc -o ~/public_html/y
這邊是假設你的 Web Server 跟 MySQL 在同一台機器上,如果不是的話,請把 localhost 改成 Web Server 的 hostname 或 IP
完成後輸入 exit 可離開交談介面
然後到你的 Web Server 上面,安裝 phpMyAdmin:
cd /usr/ports/databases/phpmyadmin
make install
設定 phpMyAdmin:
vi /usr/local/www/phpMyAdmin/config.inc.php
設定以下數值:
$cfg[‘Servers’][$i][‘auth_type’] = ‘http‘
如果你的 Web Server 跟 MySQL 不在同一台機器上,請把下面這一行的 localhost 改掉:
$cfg[‘Servers’][$i][‘host’] = ‘localhost‘
接下來改 httpd.conf (以 apache2 為例):
vi /usr/local/etc/apache2/httpd.conf
加入以下幾行
Alias /mysql/ "/usr/local/www/phpMyAdmin"
<Directory "/usr/local/www/phpMyAdmin">
Options MultiViews FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Allow from 192.168.0.1
Allow from 192.168.0.2
</Directory>