IE11浏览器突然打不开任何网页
点击设置按钮大多数设置都是灰的:
到 控制面板 > 程序和功能 > 打开或关闭window功能 中IE11取消勾选,确定
...
IE11浏览器突然打不开任何网页
点击设置按钮大多数设置都是灰的:
到 控制面板 > 程序和功能 > 打开或关闭window功能 中IE11取消勾选,确定
...
MySQL导入sql 10M脚本时出错,如图
Error occured at:2014-03-24 11:42:24
Line no.:85
Error Code: 2006 - MySQL server has gone away
最终找到原因,原来是MySQL导入大批量数据的时候超出了默认允许最大的数据包所以就提示2006 - MySQL server has gone away
于是找到my.cnf,在[mysqld]
加入:
...
今天用Django搭建一个环境,在访问的时候感觉有点怪
感觉页面CSS似乎没有被加载进来,于是单独访问某个CSS文件结果浏览器提示
A server error occurred. Please contact the administrator.
控制台
Traceback (most recent call last):
File "D:\Python27\lib\wsgiref\handlers.py", line 85, in run
self.result = application(self.environ, self.start_response)
File "D:\Python27\lib\site-packages\django\contrib\staticfiles\handlers.py", line 68, in __call__
return super(StaticFilesHandler, self).__call__(environ, start_response)
File "D:\Python27\lib\site-packages\django\core\handlers\wsgi.py", line 206, in __call__
response = self.get_response(request)
File "D:\Python27\lib\site-packages\django\contrib\staticfiles\handlers.py", line 58, in get_response
return self.serve(request)
File "D:\Python27\lib\site-packages\django\contrib\staticfiles\handlers.py", line 51, in serve
return serve(request, self.file_path(request.path), insecure=True)
File "D:\Python27\lib\site-packages\django\contrib\staticfiles\views.py", line 41, in serve
return static.serve(request, path, document_root=document_root, **kwargs)
File "D:\Python27\lib\site-packages\django\views\static.py", line 61, in serve
content_type, encoding = mimetypes.guess_type(fullpath)
File "D:\Python27\lib\mimetypes.py", line 297, in guess_type
init()
File "D:\Python27\lib\mimetypes.py", line 358, in init
db.read_windows_registry()
File "D:\Python27\lib\mimetypes.py", line 258, in read_windows_registry
for subkeyname in enum_types(hkcr):
File "D:\Python27\lib\mimetypes.py", line 249, in enum_types
ctype = ctype.encode(default_encoding) # omit in 3.x!
File "D:\Python27\lib\encodings\utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode byte 0xb0 in position 1: invalid start byte
...
最近把MySQL从5.5升到5.6以后,mysqldump居然不好用了,提示
[root@qttc ~]# /usr/local/mysql/bin/mysqldump -uroot -proot db > bak.sql
Warning: Using a password on the command line interface can be insecure.
这让人有点奇怪,5.5用的一直都很爽,到5.6居然说命令行方式写密码不安全?那密码写哪呢?
在官网文档找到了原因
MySQL users should use the following guidelines to keep passwords secure.
When you run a client program to connect to the MySQL server, it is inadvisable to specify your password in a way that exposes it to discovery by other users. The methods you can use to specify your password when you run client programs are listed here, along with an assessment of the risks of each method. In short, the safest methods are to have the client program prompt for the password or to specify the password in a properly protected option file.
...
很早之前,我写过一篇基于PHP版本的SWFUpload上传组件的文章,最近老是收到不少朋友询问SWFUpload的问题,决定再整理一些最常见的问题整理出来。
这是由于你没有基于HTTP协议访问引起的,你可以把它放到WebServer
里试一试,比如Nginx,Apache,Tomcat等等,然后使用http访问页面
...
yield和sleep都是作用于当前线程
yield方法会临时暂停当前正在执行的线程,让有同样优先级等待的线程有资源执行。如果没有正在等待的线程,或者所有正在等待的线程的优先级都比较低,那么该线程会继续运行。执行了yield方法的线程什么时候会继续运行由线程调度器来决定,不同的CPU可能有不同的行为。yield方法不保证当前的线程会暂停或者停止,但是可以保证当前线程在调用yield方法时会放弃CPU。
所以总结下来
...
CentOS开机的时候卡在进度条一直进不去
这看不出开机启动卡在哪里,只好重启按住"e"键,进入启动菜单
接着按e进入编辑第一项
然后移动到第二项kernel...
接着按e进入编辑
...
今天做项目,发现一个奇怪的问题,动态创建的script标签在IE8下无法触发onload事件?请看示例代码
var loadJs = function (src, fun) {
var script = null;
script = document.createElement('script');
script.type = 'text/javascript';
script.src = src;
if (typeof fun === 'function') {
script.onload = fun;
}
document.getElementsByTagName('head')[0].appendChild(script);
};
loadJs('http://code.jquery.com/jquery-1.11.0.min.js', function () {
console.log('From jQuery');
});
loadJs('test.js', function () {
console.log('From test.js');
});
...
今晚像往常一样打开Aptana写Python程序时,一个has_key调用报错了,代码如下
info = {}
info.has_key("key")
控制台
Traceback (most recent call last):
File "D:\workspace\aptana\test\main.py", line 8, in <module>
print(info.has_key("email"))
AttributeError: 'dict' object has no attribute 'has_key'
...
传统站点在处理文件上传请求时,普遍使用服务器端语言处理,如:Java、PHP、Python、Ruby等。今天给大家介绍Nginx的一个模块,Upload Module上传模块,此模块的原理是先把用户上传的文件保存到临时文件,然后在交由后台页面处理,并且把文件的原名,上传后的名称,文件类型,文件大小等参数传给到处理程序。
GitHub: https://github.com/vkholodkov/nginx-upload-module
从GitHub上下载源码解压,进入nginx源码目录,重新./configure
并且添加如下参数
...