问题如下:BUILD FAILEDD:\adt-bundle-windows-x86_64-20131030\sdk\tools\ant\build.xml:653: The following error occurred while executing this line:D:\adt-bund...
分类:
其他好文 时间:
2014-07-16 23:03:08
阅读次数:
195
使用不同版本的XCode出现的问题:fatal error: malformed or corrupted AST file: 'Unable to load module "/Users/xxx/Library/Developer/Xcode/DerivedData/ModuleCache/XYZ...
分类:
移动开发 时间:
2014-07-16 22:58:17
阅读次数:
185
如下图,即使图片尺寸不规范,xcode5也可以正常预览(这里我提供的尺寸是57*57, 而需要的是120*120)但编译运行失败,报的错是:Images.xcassets: error: The app icon set named "AppIcon" did not have any applic...
分类:
其他好文 时间:
2014-07-16 22:57:46
阅读次数:
276
1 // Open a database in memory. 2 Database db; 3 try 4 { 5 db = Database(":memory:"); 6 } 7 catch (SqliteException e) 8 { 9 // Error creating...
分类:
数据库 时间:
2014-07-16 21:19:54
阅读次数:
290
An internal error occurred during: Launching efax on Tomcat 7.x . 项目运行时报错因为你项目建的时候用的是Tomcat5.x 服务器 ,现在项目用的不是TOmcat5.x ,你必须把服务器改成7.x 以上版本就不会报错了具体办法:项目 ...
分类:
系统相关 时间:
2014-07-16 21:10:28
阅读次数:
224
Error Report For : Documents\Sheet1.Sch 24-Aug-2009 14:58:43 #1 Error Multiple Net Identifiers : Sheet1.Sch VCC At (290,920) And Sheet1.Sch GND A...
分类:
Web程序 时间:
2014-07-16 21:01:13
阅读次数:
3787
php5.3自带php-fpm/usr/local/php/etc/php-fpm.confpid=run/php-fpm.pidpid设置,默认在安装目录中的/var/run/php-fpm.pid,建议开启error_log=log/php-fpm.log错误日志,默认在安装目录中的/var/log/php-fpm.loglog_level=notice错误级别.可用级别为:alert(必须立即处理),er..
分类:
Web程序 时间:
2014-07-10 18:48:32
阅读次数:
363
我采用的是MySQLdb操作的MYSQL数据库。先来一个简单的例子吧:importMySQLdb
try:
conn=MySQLdb.connect(host=‘localhost‘,user=‘root‘,passwd=‘root‘,db=‘test‘,port=3306)
cur=conn.cursor()
cur.execute(‘select*fromuser‘)
cur.close()
conn.close()
exceptMySQLdb.Error,e..
分类:
数据库 时间:
2014-07-10 18:20:40
阅读次数:
282
提示bind()错误=10048原因:其他程序占用飞鸽的2425端口比如:飞秋也是使用2425端口解决:用netstat命令查看是哪个进程占用了该端口格式:netstat-ano|find"2425"结果:UDP0.0.0.0:2425*:*1716最后的1716就是占用2425进程的进程ID,看看是什么,可以结束的直接结束该进程,再打..
分类:
其他好文 时间:
2014-07-10 18:08:23
阅读次数:
332
优化innodb_log_file_size参数调整后报错InnoDB:Error:logfile./ib_logfile0isofdifferentsize05242880bytes解决办法:删除/usr/local/mysql/var/ib_logfile0和ib_logfile1后重启
分类:
数据库 时间:
2014-07-10 17:50:54
阅读次数:
257