上一页 1 2 3 4 5 6 7 8 ··· 11 下一页
  2012年4月11日
摘要: 官方不解决,我们自己想办法解决吧,在正式版出来之前,解决方案如下:misc.php行298修改为:if(!empty($inajax)) { showmessage('thread_poll_succeed', "viewthread.php?tid=$tid"); } else { showmessage('thread_poll_succeed', "viewthread.php?tid=$tid"); }复制代码找到文件include/js/common.js,在行890处,即在行:if(s != '' 阅读全文
posted @ 2012-04-11 11:21 Right_MR 阅读(892) 评论(0) 推荐(0) 编辑
  2012年3月28日
摘要: 具体步骤如下:1.到Adobe官网下载FlashBuilder4.6,有简体中文版;语言:Chinese (Simplified)http://trials3.adobe.com/AdobeProducts/FLBR/4_6/win32/FlashBuilder_4_6_LS10.exe2.安装时,不用序列号,直接选择安装试用版;3.安装完成后在安装目录下依次修改下列3个文件:(1).eclipse\plugins\com.adobe.flexbuilder.project_4.6.0.328916\META-INF下面的MANIFEST.MF修改:Bundle-Version: 0.0.0( 阅读全文
posted @ 2012-03-28 18:23 Right_MR 阅读(1279) 评论(0) 推荐(0) 编辑
  2012年3月16日
摘要: # ${HOME} will be replaced by JVM user.home system propertynetbeans_default_userdir="${HOME}/.netbeans/7.0"# Options used by NetBeans launcher by default, can be overridden by explicit# command line switches:netbeans_default_options="-J-client -J-Xss2m -J-Xms32m -J-XX:PermSize=32m -J- 阅读全文
posted @ 2012-03-16 15:09 Right_MR 阅读(374) 评论(0) 推荐(0) 编辑
  2012年2月24日
摘要: FastCGI Error The FastCGI Handler was unable to process the request. -------------------------------------------------------------------------------- Error Details: The FastCGI process has failed frequently recently. Try the request again in a while Error Number: -2147467259 (0x80004005). Error Desc 阅读全文
posted @ 2012-02-24 17:12 Right_MR 阅读(2827) 评论(0) 推荐(0) 编辑
  2012年2月17日
摘要: 转自:http://axislover.blog.163.com/blog/static/10776515200891551236219/本文通过实例介绍了MySQL中的concat函数的使用方法,比如select concat('11','22','33')。MySQL中concat函数使用方法:CONCAT(str1,str2,…)返回结果为连接参数产生的字符串。如有任何一个参数为NULL ,则返回值为 NULL。注意:如果所有参数均为非二进制字符串,则结果为非二进制字符串。 如果自变量中含有任一二进制字符串,则结果为一个二进制字符串。一个数 阅读全文
posted @ 2012-02-17 15:35 Right_MR 阅读(2938) 评论(0) 推荐(0) 编辑
  2012年2月14日
摘要: //判断字符串是什么编码if ($tag === mb_convert_encoding(mb_convert_encoding($tag, "GB2312", "UTF-8"), "UTF-8", "GB2312")) {}else {//如果是gb2312 的就转换为utf8的$tag = mb_convert_encoding($tag, 'UTF-8', 'GB2312');}1、把 GBK 编码字串转换成 UTF-8 编码字串<?php header("co 阅读全文
posted @ 2012-02-14 16:57 Right_MR 阅读(1604) 评论(0) 推荐(0) 编辑
  2012年2月1日
摘要: 安装前,建议查看:源码包说明README;4.0/4.1版可参考3.2版本安装,步骤相同;如遇到问题,请看详细安装说明。##下载coreseek:coreseek 3.2.14:点击下载、coreseek 4.0.1:点击下载、coreseek 4.1:点击下载$ wget http://www.coreseek.cn/uploads/csft/3.2/coreseek-3.2.14.tar.gz$ 或者 http://www.coreseek.cn/uploads/csft/4.0/coreseek-4.0.1-beta.tar.gz$ 或者 http://www.coreseek.cn/u 阅读全文
posted @ 2012-02-01 10:55 Right_MR 阅读(448) 评论(0) 推荐(0) 编辑
  2012年1月6日
摘要: 摘自普瑞斯特blogPHP网页的安全性问题针对PHP的网站主要存在下面几种攻击方式:1.命令注入(Command Injection)2.eval注入(Eval Injection)3.客户端脚本攻击(Script Insertion)4.跨网站脚本攻击(Cross Site Scripting, XSS)5.SQL注入攻击(SQL injection)6.跨网站请求伪造攻击(Cross Site Request Forgeries, CSRF)7.Session 会话劫持(Session Hijacking)8.Session 固定攻击(Session Fixation)9.HTTP响应拆分 阅读全文
posted @ 2012-01-06 15:15 Right_MR 阅读(246) 评论(0) 推荐(0) 编辑
  2011年12月30日
摘要: [摘要]本文介绍phpcms v9中模板标签使用说明。{template "content","header"} 调用根目录下phpcms\template\content\header文件{CHARSET} 字符集(gbk或者utf-8){if isset($SEO['title']) && !empty($SEO['title'])}{$SEO['title']}{/if}{$SEO['site_title']}{$SEO['keyword']}{$SEO 阅读全文
posted @ 2011-12-30 14:28 Right_MR 阅读(1509) 评论(0) 推荐(0) 编辑
  2011年12月6日
摘要: GetDateFormat.js 文件//确保日历容器节点在 body 最后,否则 FireFox 中不能出现在最上方function InitContainerPanel() //初始化容器{ var str = '<div id="calendarPanel" style="position: absolute;display: none;z-index:9999; background-color: #FFFFFF;border: 1px solid #CCCCCC;width:175px;font-size:12px;">&l 阅读全文
posted @ 2011-12-06 20:01 Right_MR 阅读(2418) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页