Error building Player: CommandInvokationFailure: Failed to re-package resources. See the Console for details.D:\GameDevelopment\adt-bundle-windows-x86...
分类:
其他好文 时间:
2014-07-13 21:36:10
阅读次数:
428
All relative paths in this config are relative to php's install prefix
Pid file
/usr/local/php/logs/php-fpm.pid
Error log file
/usr/local/php/logs/php-fpm.log
Log level
notice
Whe...
分类:
Web程序 时间:
2014-07-13 16:26:05
阅读次数:
248
[root@luozhonghua etc]# /usr/local/php/sbin/php-fpm start
Starting php_fpm Jul 12 09:41:02.077951 [ERROR] fpm_unix_conf_wp(), line 124: please specify user and group other than root, pool 'default'
...
分类:
其他好文 时间:
2014-07-13 16:20:24
阅读次数:
225
重新装完Ecplise+ATD+Android SDK 在Ecplise工作空间导入之前写过的Android项目会出现错误,大部分是SDK 版本不符,如下错误提示:
Error:Unable to resolve target android-19
如图:
解决办法:修改工程目录下的project.properties文件里的内容target=android-...
分类:
移动开发 时间:
2014-07-13 15:53:44
阅读次数:
260
执行:
./configure --prefix=/usr/local/php --enable-fastcgi --enable-fpm
之后出现
Running FastCGI Process Manager checks
checking for php-fpm config file path... $prefix/etc/php-fpm.conf
checking for ...
分类:
其他好文 时间:
2014-07-13 13:50:43
阅读次数:
205
1.java中throw和throws:throw用在方法内部实际抛出异常的时候;throws用在方法...
分类:
编程语言 时间:
2014-07-12 23:55:58
阅读次数:
344
接口继承和实现继承不同。在 public 继承下, derived classes 总是继承 base class 的接口
class Shape{
public:
virtual void draw() const = 0;
virtual void error(const std::string &msg);
int objectID() const;
//...
};
class Rectangle: public Shape{...};
class Ellipse: public Sha...
分类:
编程语言 时间:
2014-07-12 23:42:27
阅读次数:
251
出现了一大串错误,Error creating bean with name 'userController': Injection of autowired dependencies failed。。。。。
查了代码后发现,原来是在UserServiceImpl中忘了写一句话@Service("userService"),以至于因此导致一系列错误。
在控制层调用业务层,必须在业...
分类:
其他好文 时间:
2014-07-12 22:15:46
阅读次数:
226
关于mindmanager 2012启动无法运行,提示c++错误
---------------------------Microsoft Visual C++ Runtime Library---------------------------Runtime Error!
Program: D:\Program Files\Mindjet\MindManager 10\MindMan...
分类:
其他好文 时间:
2014-07-12 20:28:10
阅读次数:
295
在项目中向MySQL插入数据时,发现数据插入不完整,通过调试,发现插入语句也没什么特殊的错误。但是就是差不进去,于是就打开mysqli错误的调试
$ret = mysqli_query($this->conn, $sql) or die(mysqli_error($this->conn));
结果弹出如下错误信息:
Incorrect string value: '\xF0\x9F...
分类:
数据库 时间:
2014-07-12 17:51:01
阅读次数:
200