之前遇到的第一个问题是,使用php生成文字验证码时,总提示:Warning: imagettftext(): Could not find/open font in /var/www/html/touming.php on line 11或者The image "http://localhost/i...
分类:
Web程序 时间:
2014-07-07 10:49:21
阅读次数:
206
Learn from:http://yige.org/p/91一般遇到这样的问题,有两个方法:1、如果有服务器权限,直接把服务器上的php.ini的配置改了,改成不输出Warning和Notice级别的报错。修改php.ini的error_reporting 配置参数值为:error_reporti...
分类:
Web程序 时间:
2014-07-06 23:07:07
阅读次数:
283
Slave crash-safe replication
mysql的slave启动时,error.log中出现Warning警告:
[Warning] Slave SQL: If a crash happensthis configuration does not guarantee that the relay log info will beconsistent, Error_code: 0...
分类:
移动开发 时间:
2014-07-03 18:15:13
阅读次数:
278
1 常用去警告:#pragma warning(disable:4035)//no return value#pragma warning(disable:4068)// unknown pragma#pragma warning(disable:4201)//nonstandard extens....
分类:
其他好文 时间:
2014-07-03 10:02:03
阅读次数:
249
VC中常见编译错误(转载看看)1)disable#pragma warning (disable: 4311 4312) //指针类型强制转化,大小不完全匹配warning C4311: ''type cast'' : pointer truncation from ''TriNode *const...
分类:
其他好文 时间:
2014-07-03 07:01:57
阅读次数:
214
前台: 前台: 绑定数据: protected void inti() { List roleList = roleDAL.List(); if (roleList == null) { Alert.Show("加载角色信息失败!", MessageBoxIcon.Warning); } cbl.....
分类:
数据库 时间:
2014-07-02 22:57:10
阅读次数:
388
postfix_编译时make:***[xsasl_cyrus_server.o]Error1make:***[update]
//如果编译出错,检查出错情况,一般是有包忘了装,要不是参数路径错误;
【注释】:
xsasl_cyrus_server.c:598:error:‘SASL_OK‘undeclared(firstuseinthisfunction)
xsasl_cyrus_server.c:600:warning:fo..
分类:
其他好文 时间:
2014-07-02 06:24:31
阅读次数:
1272
php5.0 连接数据 用之前的方法$con=mysqli_connect("localhost","my_user","my_password","my_db"); 总是出现Warning!请使用 PDO 和 mysqli .那我就改写用 mysqli$conn = new mysqli(“lo....
分类:
数据库 时间:
2014-07-01 23:30:57
阅读次数:
279
关于session_start()这个问题,其实网上很多解决的方法,论坛也好多人回答这类的问题, 现在的状况是依然有警告提示Warning:session_start() [function.session-start]: Cannot send session cookie - headers a...
分类:
其他好文 时间:
2014-07-01 21:33:30
阅读次数:
325
warning C4996: “fopen”被声明为否决的问题:vs2005中编程时,遇到如下:warning C4996: “fopen”被声明为否决的。解释:微软的警告,主要是那些都是C库的函数,很多函数内部是不进行参数检测的(包括越界类的),微软担心使用这些会造成内存异常,所以就改写了一 下同...
分类:
其他好文 时间:
2014-06-30 14:18:29
阅读次数:
186