最新 分享

Publish our news and thoughts with all.

Popular Articles

Recent Stories

安全删除sesson_* in /var/lib/php5

安全删除sesson_* in /var/lib/php5

cd /var/lib/php5
find . -name "sess_*" -print | xargs rm -v

针对Ubuntu,在php.ini中设置session.gc_probability的值为1, 因为Ubuntu默认该值为0

Mac 安装 Phantomjs

Mac 安装 Phantomjs

下载Phantomjs:http://phantomjs.org/download.html

解压到:/Users/UFO/

打开terminal,输入命令:export PATH="$PATH:/Users/UFO/phantomjs-2.1.1-macosx/bin/"

测试:phantomjs -v

看到具体的版本号,则表示安装成功

安装php包管理工具和drush

安装php包管理工具和drush

cd~

curl -sS https://getcomposer.org/installer | php

php composer.phar

RewriteCond和13个mod_rewrite应用举例Apache伪静态

RewriteCond和13个mod_rewrite应用举例Apache伪静态

1.给子域名加www标记 RewriteCond %{HTTP_HOST} ^([a-z.]+)?example\.com$ [NC] RewriteCond %{HTTP_HOST} !^www\. [NC] RewriteRule .? http://www.xample.com%{REQUEST_URI} [R=301,L] 这个规则抓取二级域名的%1变量,如果不是以www开始,那么就加www,以前的域名以及{REQUEST_URI}会跟在其后。

How to Install a LAMP Stack on Ubuntu 14.04

How to Install a LAMP Stack on Ubuntu 14.04

Before You Begin

  1. Ensure that you have followed the Getting Started and Securing Your Server guides, and the Linode’s hostname is set.To check your hostname run:
    1
    2
    hostname
    hostname -f
    
    The first command should show your short hostname, and the second should show your fully qualified domain name (FQDN).
  2. Update your system:
    1
    sudo apt-get update && sudo apt-get upgrade
    
mysql列赋值列,将表1的某列的值赋给另一表的某列

mysql列赋值列,将表1的某列的值赋给另一表的某列

update la6y3_content a,la6y3_k2_items b set b.alias=a.alias where b.title=a.title

mysql修改表、字段、库的字符集

mysql修改表、字段、库的字符集

修改数据库字符集:

ALTER DATABASE db_name DEFAULT CHARACTER SET character_name [COLLATE ...];
最近在捣鼓google map的开发

最近在捣鼓google map的开发

Code Playground ,里面有很多代码实例:

http://code.google.com/apis/ajax/playground/?exp=maps#map_simple

Contact
联系我们