在eclipse中,有时候在xml文件中,特别是于Spring相关的配置文件中,会出现一些不影响程序正常运行的编译错误,如: Referenced file contains errors (http://www.springframework.org/schema/beans/spring-bea ...
分类:
编程语言 时间:
2017-04-24 12:40:17
阅读次数:
183
数据库连接 1、配置连接参数 在database.php里面开启: 'db' => array( 'connectionString' => 'mysql:host=127.0.0.1;dbname=blog', 'emulatePrepare' => true, // PDO扩展 'usernam ...
分类:
其他好文 时间:
2017-04-23 14:23:17
阅读次数:
174
关键词:proxy_intercept_errors、fastcgi_intercept_errors 在网上搜索404配置,有很多配置文章,但都是关于fastcgi_intercept_errors的,不过对我们的项目不起作用。我们的项目使用nginx做反向代理,通过域名区分不同的网站,配置fas... ...
分类:
其他好文 时间:
2017-04-21 20:26:26
阅读次数:
459
服务器安装protobuf-2.6.1包时,报错如下:[root@host73python]#pythonsetup.pyinstallDownloaderroronhttps://pypi.python.org/simple/google-apputils/:[Errno-2]Nameorservicenotknown--Somepackagesmaynotbefound!Couldn‘tfindindexpagefor‘google-apputils‘(maybemisspell..
分类:
编程语言 时间:
2017-04-21 18:12:22
阅读次数:
7265
1.文件的打开与关闭 文件的打开采用open()函数,文件的关闭采用close()函数。 open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None): ...
分类:
编程语言 时间:
2017-04-20 18:27:13
阅读次数:
200
9月24日数据库上频繁出现例如以下错误 Errors in file /u04/admin/njord/udump/njord_ora_25895.trc: ORA-27300: OS system dependent operation:invalid_process_id failed with ...
分类:
移动开发 时间:
2017-04-20 16:50:47
阅读次数:
252
root : $a); } function file_get_dom($file, $return_root = true, $use_include_path = false, $context = null) { if (version_compare(PHP_VERSION, '5.0.0'... ...
分类:
Web程序 时间:
2017-04-19 10:21:36
阅读次数:
254
Linux系统的ping命令是常用的网络命令,它通常用来测试与目标主机的连通性,我们经常会说“ping一下某机器,看是不是开着”、不能打开网页时会说“你先ping网关地址192.168.1.1试试”。它通过发送ICMP ECHO_REQUEST数据包到网络主机(send ICMP ECHO_REQU ...
分类:
系统相关 时间:
2017-04-16 21:07:42
阅读次数:
236
许多windows非常熟悉ipconfig命令行工具,它被用来获取网络接口配置信息并对此进行修改。Linux系统拥有一个类似的工具,也就是ifconfig(interfaces config)。通常需要以root身份登录或使用sudo以便在Linux机器上使用ifconfig工具。依赖于ifconf ...
分类:
系统相关 时间:
2017-04-16 17:39:14
阅读次数:
332
IO与文件操作 文件内建函数open内建函数open提供了初始化输入/输出(I/O)操作的通用接口。open()内建函数成功打开文件后会返回一个文件对象。open函数的语法如下:open(file, mode='r', buffering=-1, encoding=None, errors=None... ...
分类:
其他好文 时间:
2017-04-16 13:11:25
阅读次数:
199