肥兔 发布的文章

20 November 2012
IMAGEVUE 1.8.4
-----------------------------------------------------------------

1.8.4
[*] Fix for Flash Player 11.5

1.8.3
[*] PHP5.3.3 Compatibility

1.8.2
[*] PHP5.3 Compatibility

1.8.1
[*] PHP5.3 Compatibility

1.8
[*] Fixed picture ghosting
[+] Files are being chmoded 666 after upload using admin

1.7.8
[*] Refixed passwords

1.7.7
[*] Disabled sendpic logging by default
(if you need to log all emails, check sendpic.php)
[*] Fixed password being converted to lowercase
[*] Changed short opening tags in all .php files

Download link : http://s2.mgu.cc/2012/12/05/imagevuex184.zip

光顾着下载不回复的用户MJJ。

Imagevue X2.8.6 - Dec 3, 2012

Slideshow mode for mobile gallery
Fixed filemod slideshow missing fade transition
Fixed lightbox not responding to size parameters
Fix for multi-lingual site title
Fix for password on some servers
Fix for migrations from the old version
Fix for uploading files with non-latin characters
Fix for GPS coordinates in mobile gallery

Download link : http://s2.mgu.cc/2012/12/05/imagevuex286.zip

光顾着下载不回复的用户MJJ。

Imagevue X2.8.5.1 - Nov 14, 2012

Fix for the thumbnail scroller border color bug in new Flash player

Imagevue X2.8.5 - Nov 14, 2012

Fix for the bug introduced by Flash player update
jQuery Mobile 1.2.0
Smarter HTML redirect if flash is not installed
Updated French translation
Updated German translation

Download link : http://s2.mgu.cc/2012/11/19/imagevuex2851.zip

光顾着下载不回复的用户MJJ。

深深地被坑了一会 好好记录下

本地mysql的 my.cnf 配置中写了 skip-networking

意思就是 不监听端口,也无法从外网连接,唯有本地 sock连接过去

而 pureftpd的 pureftpd-mysql.conf 配置中有两句
MYSQLServer localhost
MYSQLPort 3306

因为没注释 所以是有效的

我注释了 #MYSQLServer localhost 但忽略了 MYSQLPort 3306

最后我看下 netstat -ln , 是没有3306端口的

顿时醒悟啊... 5小时 5小时

注释掉 #MYSQLPort 3306

重启 pureftpd ftp已经登录成功

泪奔中 立马写日志记录下

kernel 3.6.2 已经发布多天,前段时间我已进行3.6的编译,今天记录下编译3.6.2

目前的环境是
VM 9.0 / debian 6 32bit / win7 64bit的母鸡
debian 6 32bit 目前已经安装3.6内核

一、下载源代码和编译软件的准备
下载内核源代码:http://www.kernel.org/

wget http://www.kernel.org/pub/linux/kernel/v3.0/linux-3.6.2.tar.bz2

安装有关编译程序。安装make ,gcc, make-kpkg,运行menuconfig等等和编译内核相关的工具

apt-get install build-essential kernel-package libncurses5-dev

二、解压源代码
注意,网上很多教程上说应该解压到 /usr/src,纯属以讹传讹,linux掌门人linus说解压到任何目录上都可以,当然,linus的说法是正确的

当前我在 /home 目录
mkdir src && tar jfx linux-3.6.2.tar.bz2 -C src/

现在,源代码就在 /home/src/linux-3.6.2
进入源代码的目录,准备下一步的工作,后面都在这个目录里面进行

cd /home/src/linux-3.6.2

- 阅读剩余部分 -