- 浏览: 26175 次
- 性别:
- 来自: 广州
最新评论
文章列表
1.json数组最后一条不可有逗号,firefox有没有逗号都是没问题的;
2.缺少函数,可能是你的函数名称写错,或是函数有错;
3.引用的js文件编码问题,页面是utf8的,但是引用的js是gbk也可能会出现此问题
查看一个网站的2个不同网页,一个正常显示,另一个完全乱码,包括英文都是乱码。郁闷~~
后来看了下这两个网页返回的header,发现一个的content-encoding是gzip,另一个没有,没有的就正常显示~~于是发现问题就在这。
添加以下代码
String contentEncoding = "";
if (method.getResponseHeader("Content-Encoding") != null) {
contentEncoding = method.getResponseHeader(& ...
看帖的记录~~http://www.iteye.com/topic/1113210。问题以及正确解释~~~以备所需~
public class Test {
public static void main(String[] args) {
System.out.println("return value of getValue(): " + getValue());
}
public static int getValue() {
...
主要是当时安装mysql的时候没有设置root密码,实际上已经设置了root用户只能localhost登录,但是不知道这个入侵者是如何远程root登录的~~~
入侵者的ip:220.189.225.30 是个美国的ip
分析:
先创建一个临时表, create table if not exists tempM ...
服务器端备份:
while [ -n "$1" ]; do
datestr=$1
shift 1
done
if [ -z ${datestr} ]; then
datestr=`date +'%Y%m%d'`
fi
#备份数据库
mysqldump -h127.0.0.1 -uuser -ppassword --database test > /home/bakdir/bak/db_${datestr}.sql
备份服务器下载:
while [ -n "$1" ]; do
datestr=$1
shift 1
done ...
下载firefox-latest.tar.bz2
当前目录用一下命令解压:
tar xjf firefox-*.tar.bz2
但是运行 firefox/firefox时候报以下错误
/usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by
/home/bullba/firefox/libxul.so)
解决方法如下:
1. 下载libstdc++-4.3.0-8.i386.rpm包
http://rpm.pbone.net/index.php3/stat/4/idpl/7202610/com/l ...
php安装:
1./configure --prefix=/usr/local/php --with-apxs2=/home/apache/bin/apxs --with-zlib-dir --with-libxml-dir=/usr/local/libxml2/ --with-gd --with-freetype --with-jpeg --with-png --enable-mbstring --with-mysql=/usr/local/mysql/ --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-gd-nat ...
服务器有段时间ssh连接总是连不上,查看系统日志出现/etc/resolv.conf No such file or directory次错误。网上找到的解决办法,但是照做了效果不明显,依然出现上述错误。不过ssh链接已经正常,真是奇了怪了,到底是什么问题呢。。。
restorecond: Will not restore a file with more than one hard link (/etc/resolv.conf) No such file or directory
Sep 7 18:04:31 bora ntpd[4063]: synchronized to 22 ...
作/译者:叶金荣,来源:http://imysql.cn,转载请注明作/译者和出处,并且不能用于商业用途,违者必究。
本文讨论 MySQL 的备份和恢复机制,以及如何维护数据表,包括最主要的两种表类型:MyISAM 和 Innodb,文中设计的 MySQL 版本为 5.0.22。
目前 MySQL 支持的免费备份工具有:mysqldump、mysqlhotcopy,还可以用 SQL 语法进行备份:BACKUP TABLE 或者 SELECT INTO OUTFILE,又或者备份二进制日志(binlog),还可以是直接拷贝数据文件和相关的配置文件。MyISAM 表是保存成文件的形式,因此相对比 ...