Adobe CS5.5官方下载链接

 

Adobe CS5.5目前在官方服务器上可以下载CS5.5的试用版本。Adobe CS5.5包含各种平面设计,视频编辑,多媒体制作和网站开发应用程序。


本文提供Adobe CS5.5系列下载汇总。



注:如以下下载地址无法下载,请访问官方网站下载:


http://www.adobe.com/downloads/

以下为LS数字的语言代码,如下载简体中文版,请下载LS3最后的文件名

LS1 – en-US / en-UK / en-GB 


LS2 – ja-JP 


LS3 – ko-KR / zh-CN / zh-TW 


LS4 – da-DK / de-DE / es-ES / es-MX / fi-FI / fr-FR / fr-CA / it-IT / nb-NO / nl-NL / pt-BR / sv-SE 


LS6 – cs-CZ / hu-HU / pl-PL / ro-RO / ru-RU / tr-TR / uk-UA

 

Continue reading

httping网页响应时间测试windows版

    httping 是一个用来测试 HTTP 请求的连接、发送请求、等待回应的时间。有点像 ping 这个网络工具,只不过它是针对 HTTP 服务器的。httping本来是在类unix平台的,我通过cygwin编译出了win平台下的版本。因为在老家,所以只在windows xp 32位上测试过。

    

根据http://www.vanheusden.com/httping/的httping-1.5.1版本编译。

httping for win点击下载

Centos6安装mysql后首次启动的提示信息

Initializing MySQL database:  Installing MySQL system tables...
OK
Filling help tables...
OK

To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system

PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands:

/usr/bin/mysqladmin -u root password 'new-password'
/usr/bin/mysqladmin -u root -h yard.iday.me password 'new-password'

Alternatively you can run:
/usr/bin/mysql_secure_installation

which will also give you the option of removing the test
databases and anonymous user created by default.  This is
strongly recommended for production servers.

See the manual for more instructions.

You can start the MySQL daemon with:
cd /usr ; /usr/bin/mysqld_safe &

You can test the MySQL daemon with mysql-test-run.pl
cd /usr/mysql-test ; perl mysql-test-run.pl

Please report any problems with the /usr/bin/mysqlbug script!

centos6下编译php5.3参数

./configure \
--sysconfdir=/etc/php-fpm   \
--localstatedir=/var    \
--enable-fpm         \
--disable-cgi        \
--with-openssl       \
--with-kerberos     \
 --with-zlib      \
 --enable-bcmath         \
 --with-bz2   \
 --enable-calendar    \
 --with-curl      \
--enable-exif   \
--enable-ftp   \
--with-gd     \
--with-gettext    \
--with-mhash    \
--enable-mbstring  \
--with-mcrypt \
--with-mysql   \
--with-mysql-sock     \
--with-mysqli   \
--with-pdo-mysql   \
--without-pdo-sqlite   \
--enable-soap    \
--enable-sockets    \
--enable-sqlite-utf8    \
--enable-zip

cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm

cgi.fix_pathinfo=0

设置pm.max_requests 防治内存泄漏
作为备忘

php编译参数列表

Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE       cache test results in FILE
  --help                  print this message
  --no-create             do not create output files
  --quiet, --silent       do not print `checking...' messages
  --version               print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX         install architecture-independent files in PREFIX
                          [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
                          [same as prefix]
  --bindir=DIR            user executables in DIR [EPREFIX/bin]
  --sbindir=DIR           system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIR        program executables in DIR [EPREFIX/libexec]
  --datadir=DIR           read-only architecture-independent data in DIR
                          [PREFIX/share]
  --sysconfdir=DIR        read-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIR    modifiable architecture-independent data in DIR
                          [PREFIX/com]
  --localstatedir=DIR     modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIR            object code libraries in DIR [EPREFIX/lib]
  --includedir=DIR        C header files in DIR [PREFIX/include]
  --oldincludedir=DIR     C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR           info documentation in DIR [PREFIX/info]
  --mandir=DIR            man documentation in DIR [PREFIX/man]
  --srcdir=DIR            find the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
                          run sed PROGRAM on installed program names
Host type:
  --build=BUILD           configure for building on BUILD [BUILD=HOST]
  --host=HOST             configure for HOST [guessed]
  --target=TARGET         configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIR        X include files are in DIR
  --x-libraries=DIR       X library files are in DIR
--enable and --with options recognized:
  --with-libdir=NAME      Look for libraries in .../NAME rather than .../lib
  --disable-rpath         Disable passing additional runtime library
                          search paths
  --enable-re2c-cgoto     Enable -g flag to re2c to use computed goto gcc extension

Continue reading