请允许我吐槽这个yiistrap,这个问题经常遇到,今天终于解决了。<?php$this->widget(‘\TbListView‘,array( ‘dataProvider‘=>$dataProvider, ‘itemView‘=>‘_view‘,));?>类似这种的。YiiStrap是你的main.php里配的别名。改成YiiStrap.widgets.TbListView哦我操,..
分类:
其他好文 时间:
2015-06-15 00:27:24
阅读次数:
116
DIRECTORY_SEPARATOR --- * 系统目录分隔符。 * 在 Windows 中,斜线“/”和反斜线“\”都可以用作目录分隔符,在linux上路径的分隔符是斜线“/”。 * 若在 windows 上习惯性的使用反斜线“\”作为文件分隔符,则...
分类:
其他好文 时间:
2015-06-14 18:43:29
阅读次数:
105
libgdx assets file not foundSelect Run -> Edit Configurations from the menuIn the "Working Directory:" text box, add "android/assets" to the end of th...
分类:
其他好文 时间:
2015-06-14 18:25:58
阅读次数:
118
问题内容: error: while loading shared libraries : countlib.so : cannnot open shared object file : No such file or directory
我们找不到文件 或目录
解决方法: sudo cp countlib.so /usrr/lib/...
分类:
其他好文 时间:
2015-06-14 09:33:30
阅读次数:
94
检查apache日志发现有以下错误:No such file or directory: exec of '/usr/local/smokeping/htdocs/smokeping.cgi' failed[Wed Sep 05 19:48:47 2012] [error] [client x.x....
分类:
其他好文 时间:
2015-06-13 18:27:31
阅读次数:
169
开了SELinux和防火墙,没想到引出了vsftp的问题。FTP登录报错:500 OOPS: cannot change directory。下面来看看产生这个问题的原因和对策。首先,分析一下冲突原因:1. 为锁定用户在自己的home目录中,在vsftpd.conf打开chroot_local_us...
分类:
系统相关 时间:
2015-06-13 11:17:10
阅读次数:
248
前提:昨天晚上配置好了vsftp, 但登陆后,除了浏览,什么也干不了。(如新建文件/文件夹, 删除文件, 重命名等都不可操作) 都是弹出 "550 create directory operation failed" 的错误信息. 查看文件夹属性, 然后改了什么用户都可读写, 结果还是一样. 配置文...
分类:
其他好文 时间:
2015-06-13 11:15:34
阅读次数:
131
php实现网站插件机制的方法这些天想作一个在网站中实现插件的功能,谷歌了一下,发现一篇文章感觉对我帮助很大,帖出来和大家分享,废话不多说,直接帖出代码供大家分析.首先是插件的管理类的实现: 复制代码 代码如下: '插件名称', # 'directory'=>'插件安装目录' #); $plugins...
分类:
Web程序 时间:
2015-06-13 09:48:21
阅读次数:
117
1. 空间维度搜索,我们发现经常有需求是想找到某个函数在哪些文件里出现过。
git grep
在当前working directory下搜索含有某个字符串的文件,要显示行号可以使用-n参数。
# git grep -n hongchang
zhc.conf:1:hongchangfirst
只显示包含的文件和其包含的个数可以使用--count参数。
# git gr...
分类:
其他好文 时间:
2015-06-12 13:27:42
阅读次数:
131
private void DirPathAll(string dirpath) { //本目录下的文件 var paths = Directory.GetFiles(dirpath); foreach (var path...
分类:
其他好文 时间:
2015-06-12 06:27:25
阅读次数:
87