‘其他’ 分类的存档
nginx6.3的gzip模块对某些ie6的支持有问题,因此会出现框架页面在这些电脑上不能正常的显示而是显示为404页面,通过单独刷新被显示为404的页面后可以正常显示。但是此问题并不会出现在ie7及firefox上。此问题关闭nginx的gzip支持后即可解决。 搜索文件内容并显示文件名 find ./ -name *.html -exec grep projectvision {} -H \;
今天在服务器上安装coreseek的时候发现运行 /usr/local/webserver/coreseek2.5/bin/indexer –config /usr/local/webserver/coreseek2.5/etc/ask.conf –all 总是提示: /usr/local/webserver/coreseek2.5/bin/indexer: error while loading shared libraries: libmysqlclient.so.16: cannot open shared object file: No such file or directory 一番GOOGLE 后发现解决办法为: ln -s /usr/local/webserver/mysql/lib/mysql/libmysqlclient.so.16 /usr/lib/libmysqlclient.so.16 即给libmysqlclient.so.16建立以个软连接 另外一个问题在运行 即在运行/usr/local/webserver/mysql/bin/mysql的时候总是提示: debian:/home/dancebear# /usr/local/webserver/mysql/bin/mysql -uroot -p/usr/local/webserver/mysql/bin/mysql: Can’t read dir of ‘/etc/mysql/conf.d/’ (Errcode: 2)Fatal error in defaults handling. Program aborted 思来想去只有一个可能就是mysql在没有指定conf因此他默认调用了某个conf文件,而这个conf文件中使用了/etc/mysql/conf.d这个目录。 于是删除/etc/mysql/my.cnf问题解决
