* Support for PHP 5.3. * The encoder is removed * The user cache functions are removed * The session handler is removed * The minimal PHP version supported is now 5.1 * Some internal refactoring to clean up the code * Fixed some bugs (and probably added some)
# apache22_http_accept_enable (bool): Set to "NO" by default.
# Set to yes to check for accf_http kernel
# module on start up and load if not loaded.
跟這段 :
if checkyesno apache22_http_accept_enable
then
if ! /sbin/kldstat -q -m accf_http
then
/sbin/kldload accf_http
fi
else
apache22_flags="-DNOHTTPACCEPT $apache22_flags"
fi
8 月 5 2013
[Ubuntu] 安裝 & 設定 libapache2-mod-auth-mysql
這兩天試著在 Ubuntu server 玩 Apache HTTP authentication with MySQL backend 。
記一下幾個要注意的地方:
.htaccess 檔內容大概像這樣:
By Joe Horn • Linux 0 • Tags: Apache, htaccess, HTTP_AUTH, MySQL, Ubuntu