使用客户端登陆ftp 500 OOPS: cannot change directory:/root解决 ? 可以在windows上使用一ftp客户端来尝试进行登录。这个时候一般都会报一个错误。 ? 无效的用户权限错误 ? 删除ftpuser 里面的root和user_li...
分类:
其他好文 时间:
2014-12-16 19:34:44
阅读次数:
156
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /.../vhindex.php:1) in /......
分类:
其他好文 时间:
2014-12-16 18:59:41
阅读次数:
147
Android编译的时候出现错误:
/usr/bin/ld: cannot find -lz
collect2: ld returned 1 exit status
解决:
sudo apt-get install zlib1g-dev正在读取软件包列表... 完成
正在分析软件包的依赖关系树
正在读取状态信息... 完成
下列【新】软件包将被安装:
zlib1...
分类:
移动开发 时间:
2014-12-16 17:10:54
阅读次数:
174
$crs_stat-t
CRS-0184: Cannot communicate with the CRSdaemon.
$crsctlcheck crs
CRS-4638: Oracle High Availability Servicesis online
CRS-4535: Cannot communicate with ClusterReady Services
CRS-4529...
分类:
其他好文 时间:
2014-12-16 15:12:00
阅读次数:
967
The way to solve this problem have two methods:1.Through command lineRunning this command will update the repo to use HTTP rather than HTTPS:sudo sed ...
分类:
Web程序 时间:
2014-12-16 13:04:44
阅读次数:
214
##################################################### mysql 性能提高配置 Begin##################################################### skip-name-resolve #禁止MySQL对外部连接进行DNS解析!!所有远程主机连...
分类:
数据库 时间:
2014-12-15 20:29:02
阅读次数:
222
1、今天尝试使用yeoman,执行grunt server 时报错:cannot find where you keep your bower packges需要将bower npm install bower -g 安装到全局当中然后执行bower install 就可以解决这个问题
分类:
其他好文 时间:
2014-12-15 18:45:53
阅读次数:
110
我在进行Mybatis调试时出现了下面的警告提示:
Generation Warnings Occured
Table configuration with catalog null, schema null, and table 表名 did not resolve to any tables
Mybatis generator操作没有产生结果。
多处找资料发现在我的
ge...
分类:
其他好文 时间:
2014-12-15 09:03:37
阅读次数:
901
无法实例化类型Map错误代码:Map modelPropertys = new Map();看了一下Map的定义,public abstract interface java.util.Map原来是抽象接口,不能直接实例化,需要使用它的实现类;正确写法如下:Map modelPropertys = new HashMap();...
分类:
其他好文 时间:
2014-12-14 15:53:40
阅读次数:
168
spring date jpa 错误:could not resolve property: name of:
在写 查询的时候,把实体类的属性写错了,即 sql 语句中字段与实体类中属性没有对应,造成无法解析。
@Query("from Product p where p.id.productName like :name")
List getInfoByName(@Par...
分类:
其他好文 时间:
2014-12-13 21:51:02
阅读次数:
255