Don't place the config file in web root Protect with htaccess chmod your config file sudo find /var/www/ -type d -exec chmod 755 {} \; sudo find /var/www/ -type f -exec chmod 644 {} \;
2017年2月26日 星期日
[PHP] 保護configuration file
2017年2月4日 星期六
[Javascript] 取得過去時間與現在時間差距
function timeSince(date) {
var seconds = Math.floor((new Date().getTime() - date) / 1000);
var interval = Math.floor(seconds / 31536000);
if (interval >= 1) {
return interval + " years ago";
}
interval = Math.floor(seconds / 2592000);
if (interval >= 1) {
return interval + " months ago";
}
interval = Math.floor(seconds / 86400);
if (interval >= 1) {
return interval + " days ago";
}
interval = Math.floor(seconds / 3600);
if (interval >= 1) {
return interval + " hours ago";
}
interval = Math.floor(seconds / 60);
if (interval >= 1) {
return interval + " minutes ago";
}
return Math.floor(seconds) + " seconds ago";
}
訂閱:
文章 (Atom)
[CentOS] httpd port 9000 to 80
<VirtualHost *:80> ServerName domain.name ProxyRequests Off ProxyVia Block ProxyPreserveHost On <Proxy *...
-
天堂3.81c主程式(免安裝版) 链接: http://pan.baidu.com/s/1c0yjSqO 密码:a3xz Google Driver 載點 天堂3.80登入器 链接: http://pan.baidu.com/s/15F5SU ...
-
讓你快速架設 LAMP Server 1. 安裝 tasksel sudo apt-get install tasksel 2. 安裝 LAMP Server sudo tasksel install lamp-server 3. 如果你想安...