<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/">
  <channel>
    <title>后端开发</title>
    <description>PHP，java，.net，mysql等网站后台技术以及数据库方面的问题都到这里讨论!</description>
    <pubDate>Tue, 07 Apr 2026 14:51:49 +0000</pubDate>
    <lastBuildDate>Tue, 07 Apr 2026 14:51:49 +0000</lastBuildDate>
    <generator>CH前端社区</generator>
    <link>https://www.chinahtml.com/forums/8/</link>
    <atom:link rel="self" type="application/rss+xml" href="https://www.chinahtml.com/forums/8/index.rss"/>
    <item>
      <title>df -h命令卡死解决办法</title>
      <pubDate>Mon, 27 May 2019 04:32:28 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/600912/</link>
      <guid>https://www.chinahtml.com/threads/600912/</guid>
      <author>invalid@example.com (aco_aco)</author>
      <dc:creator>aco_aco</dc:creator>
      <content:encoded><![CDATA[执行 ls / 命令时,系统卡死, ctrl+c 也不能结束<br />
<br />
此问题一般都是因为mount 对端服务失效,本地目录卡死造成<br />
<br />
<br />
<br />
首先使用 命令跟踪, 查看执行到哪一步卡死:<br />
<br />
# strace  ls /<br />
..<br />
   lgetxattr(&quot;/MegaSAS.log&quot;, &quot;system.posix_acl_default&quot;, 0x0, 0) = -1 ENODATA (No data available) lstat(&quot;/net&quot;, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0 lgetxattr(&quot;/net&quot;, &quot;security.selinux&quot;, 0x258f850, 255) = -1 EOPNOTSUPP (Operation not supported) lstat(&quot;/net&quot;, {st_mode=S_IFDIR|0755, st_size=0, ...}) = 0 lgetxattr(&quot;/net&quot;, &quot;system.posix_acl_access&quot;, 0x0, 0) = -1 EOPNOTSUPP...<br />
<br />
<a href="https://www.chinahtml.com/threads/600912/" target="_blank" class="externalLink" rel="nofollow">df -h命令卡死解决办法</a>]]></content:encoded>
    </item>
    <item>
      <title>Asp 编程中 20 个非常有用的例子</title>
      <pubDate>Sat, 25 May 2019 15:21:12 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/10/</link>
      <guid>https://www.chinahtml.com/threads/10/</guid>
      <author>invalid@example.com (Brosnan)</author>
      <dc:creator>Brosnan</dc:creator>
      <content:encoded><![CDATA[ASP 编程中 20 个非常有用的例子<br />
<br />
1.如何用Asp判断你的网站的虚拟物理路径 <br />
答：使用Mappath方法 <br />
&lt; p align=&quot;center&quot; &gt;&lt; font size=&quot;4&quot; face=&quot;Arial&quot; &gt;&lt; b &gt; <br />
The Physical path to this virtual website is: <br />
&lt; /b &gt;&lt; /font &gt; <br />
&lt; font color=&quot;#FF0000&quot; size=&quot;6&quot; face=&quot;Arial&quot; &gt; <br />
&lt; %= Server.MapPath(&quot;\&quot;)% &gt; <br />
&lt; /font &gt;&lt; /p &gt; <br />
2.我如何知道使用者所用的浏览器？ <br />
答：使用the Request object方法 <br />
strBrowser=Request.ServerVariables(&quot;HTTP_USER_AGENT&quot;) <br />
If Instr(strBrowser,&quot;MSIE&quot;) &lt; &gt; 0 Then <br />
　　Response.redirect(&quot;ForMSIEOnly.htm&quot;) <br />
Else...<br />
<br />
<a href="https://www.chinahtml.com/threads/10/" target="_blank" class="externalLink" rel="nofollow">Asp 编程中 20 个非常有用的例子</a>]]></content:encoded>
      <slash:comments>6</slash:comments>
    </item>
    <item>
      <title>Laravel 和 Lumen 有什么区别？ 那个更好？</title>
      <pubDate>Sat, 25 May 2019 15:19:58 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/587404/</link>
      <guid>https://www.chinahtml.com/threads/587404/</guid>
      <author>invalid@example.com (composer)</author>
      <dc:creator>composer</dc:creator>
      <content:encoded><![CDATA[Laravel 还是 Lumen？相信有不少人在纠结这个问题，相对来讲，我并不推荐使用 Lumen，因为作者的更新维护很明显还是偏重于 Laravel 的，还有一个理由就是 Laravel 已经包含了 Lumen 的全部功能。<br />
<br />
不要盲目追求性能，见到很多朋友出现的一个通用现象，在使用 Lumen 的时候各种想办法解决在 Laravel 里已经有的东西，比如 Session、模版引擎等，首先在姿势上就已经不正确了，它本就不是为了这种场景而生的东西。<br />
<br />
最核心的一点很多人没有注意到，网上各种框架性能对比，都是在特别小的逻辑环境下测试的，但是，我们的应用远比它们复杂得多。所以，当你把一个应用开发完成时再来对比，你就发现差异并没有那么大了。在这种情况下我更倾向于更快的开发速度，更低的维护成本。<br />
<br />
很多人一讨论性能就把这个问题的讨论点始终放在框架与语言上，这是错误的。同样的语言，同样的框架，不同编码水平的人，写出同样功能，性能也可以差几十上百倍。举一个真实的特别典型的例子，之前交流群里一哥们问了一个问题：为啥我就一个首页文章列表，Laravel...<br />
<br />
<a href="https://www.chinahtml.com/threads/587404/" target="_blank" class="externalLink" rel="nofollow">Laravel 和 Lumen 有什么区别？ 那个更好？</a>]]></content:encoded>
      <slash:comments>1</slash:comments>
    </item>
    <item>
      <title>一名合格PHP工程师的知识构架</title>
      <pubDate>Sat, 09 Sep 2017 08:07:55 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/586257/</link>
      <guid>https://www.chinahtml.com/threads/586257/</guid>
      <author>invalid@example.com (we9632580)</author>
      <dc:creator>we9632580</dc:creator>
      <content:encoded><![CDATA[<b>PHP的运行环境</b><br />
<br />
连环境都搞不起来，就是你有多么喜欢PHP，那也是白搭，开始我们大多会使用集成环境软件例如xampp，wamp。随着知识的增加慢慢要学会自己搭建运行环境，例如 Linux（Ubuntu/Centos），Apache/Nginx，Mysql，Redis/Memcached,PHP-FPM<br />
<br />
<b>基础知识</b><br />
<br />
PHP编程：变量、常量、字符串、数组、控制结构、数据库、类、继承、多态、Cookie、Session<br />
MYSQL命令：INSERT、UPDATE、DELETE、SELECT、GROUP、COUNT、JOIN、索引<br />
有了PHP基础之后，第一个输出就是 Hello World 请举手（感觉好神奇）<br />
<br />
问：OPCODE 是什么东西？<br />
<br />
<b>前端知识</b><br />
<br />
如果你认为PHP是后端开发工程师，那么你就错了，最起码目前我接触的PHP工程师对于前端知识掌握的也是非常深的<br />
<br />
CSS ：不要求达到美工级别的切图，看得懂会改就行，会用Debug准确定位排错<br />
<br />
JS：最起码表单验证，Jquery会使用吧...<br />
<br />
<a href="https://www.chinahtml.com/threads/586257/" target="_blank" class="externalLink" rel="nofollow">一名合格PHP工程师的知识构架</a>]]></content:encoded>
      <slash:comments>3</slash:comments>
    </item>
    <item>
      <title>【防注入】实践有效的网站防SQL注入（一）</title>
      <pubDate>Tue, 05 Sep 2017 09:06:46 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/253980/</link>
      <guid>https://www.chinahtml.com/threads/253980/</guid>
      <author>invalid@example.com (zxc)</author>
      <dc:creator>zxc</dc:creator>
      <content:encoded><![CDATA[几年前，网站中大多数都存在sql注入。sql注入在这几年可以说已经被广大网站管理者所认知，并在搭建网站的时候都能注意到网站防注入这一问题，但为什么我们EeSafe现在收录的网站中，还是有很大一部分存在sql注入问题？我想并不是由于网站站长不知道sql注入的危害（危害我这里就不说了，大家可以去百度等搜索引擎上查找），而是由于网站对于像sql注入这样的问题的防范和发掘不够深造成的，这里我把防范sql的黄金方法和大家交流一下，应该能够在网站防止<a href="http://www.eesafe.com" target="_blank" class="externalLink" rel="nofollow">安全漏洞</a>的方面起到推波助澜的作用，至于如何发掘，我会在后篇提及。...<br />
<br />
<a href="https://www.chinahtml.com/threads/253980/" target="_blank" class="externalLink" rel="nofollow">【防注入】实践有效的网站防SQL注入（一）</a>]]></content:encoded>
      <slash:comments>5</slash:comments>
    </item>
    <item>
      <title>Oracle数据类型限制</title>
      <pubDate>Tue, 05 Sep 2017 08:58:03 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/586101/</link>
      <guid>https://www.chinahtml.com/threads/586101/</guid>
      <author>invalid@example.com (tc008)</author>
      <dc:creator>tc008</dc:creator>
      <content:encoded><![CDATA[Oracle数据库一向给我们功能强大的印象,殊不知<a href="http://www.bosenrui.com/" target="_blank" class="externalLink" rel="nofollow"><span style="color: #000000">Oracle</span></a>内部也是有各种限制的.<br />
今天我们就说说数据类型的限制,也就是数据类型的取值范围:<br />
 <br />
数据类型<br />
限制<br />
注释<br />
BFILE<br />
Maximum size: 4 GB 文件最大4G<br />
The maximum number of BFILEs is limited by the value of the SESSION_MAX_OPEN_FILES initialization parameter, which is itself limited by the maximum number of open files the operating system will allow.<br />
<br />
BFILE最大可打开数量由参数SESSION_MAX_OPEN_FILES 决定<br />
而SESSION_MAX_OPEN_FILES参数的最大值由操作系统允许打开的最大文件数量所决定<br />
Maximum...<br />
<br />
<a href="https://www.chinahtml.com/threads/586101/" target="_blank" class="externalLink" rel="nofollow">Oracle数据类型限制</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>php获取服务器时间格式</title>
      <pubDate>Tue, 05 Sep 2017 08:57:33 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/320391/</link>
      <guid>https://www.chinahtml.com/threads/320391/</guid>
      <author>invalid@example.com (laogui)</author>
      <dc:creator>laogui</dc:creator>
      <content:encoded><![CDATA[每次都到网上查，今天放这里做个记录<br />
<br />
date(&quot;Y-m-d H:i:s&quot;, time())<br />
语法: string date(string format, int [timestamp]);<br />
返回值: 字符串<br />
函数种类: 时间日期<br />
<br />
内容说明 <br />
返回值的 字符串依配置的格式来决定。若有传入时间戳记值，则将时间戳记格式化返回；若无传入时间戳记值，则将目前服务器的时间格式化返回。要将日期转为其它的语系格式，应使用setlocale() 及 strftime() 二个函数。字符串格式化的选项如下：<br />
<br />
a - &quot;am&quot; 或是 &quot;pm&quot;<br />
A - &quot;AM&quot; 或是 &quot;PM&quot;<br />
d - 几日，二位数字，若不足二位则前面补零; 如: &quot;01&quot; 至 &quot;31&quot;<br />
D - 星期几，三个英文字母; 如: &quot;Fri&quot;<br />
F - 月份，英文全名; 如: &quot;January&quot;<br />
h - 12 小时制的小时; 如: &quot;01&quot; 至 &quot;12&quot;<br />
H - 24 小时制的小时; 如: &quot;00&quot; 至 &quot;23&quot;<br />
g - 12 小时制的小时，不足二位不补零; 如: &quot;1&quot; 至 12&quot;<br />
G - 24...<br />
<br />
<a href="https://www.chinahtml.com/threads/320391/" target="_blank" class="externalLink" rel="nofollow">php获取服务器时间格式</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>今日部分asp代码</title>
      <pubDate>Tue, 05 Sep 2017 08:34:01 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/6/</link>
      <guid>https://www.chinahtml.com/threads/6/</guid>
      <author>invalid@example.com (Brosnan)</author>
      <dc:creator>Brosnan</dc:creator>
      <content:encoded><![CDATA[RESCN.NET全站系统<br />
<br />
程序演示地址<br />
<a href="http://www.rescn.net/" target="_blank" class="externalLink" rel="nofollow">http://www.rescn.net/</a><br />
<br />
本地下载点<br />
<a href="http://cq.down.chinaz.com/%C6%E4%CB%FC%C0%E0%B1%F0/rescn.rar" target="_blank" class="externalLink" rel="nofollow">http://cq.down.chinaz.com/%C6%E4%CB%FC%C0%E0%B1%F0/rescn.rar</a><br />
<br />
<br />
<br />
<br />
逍遥网店系统 v3.0 精简版 Build 0901<br />
程序演示地址 <br />
<a href="http://www.0238.net/test/" target="_blank" class="externalLink" rel="nofollow">http://www.0238.net/test/</a><br />
<br />
本地下载点<br />
<a href="http://gd.down.chinaz.com/KK970/%B5%E7%D7%D3%C9%CC%CE%F1/buyok3.zip" target="_blank" class="externalLink" rel="nofollow">http://gd.down.chinaz.com/KK970/%B5%E7%D7%D3%C9%CC%CE%F1/buyok3.zip</a><br />
<br />
<br />
<br />
<br />
动网新闻.Net(Dvnews.net) v4.0.818 正式版<br />
程序演示地址 <br />
<a href="http://www.xmlasp.net/" target="_blank" class="externalLink" rel="nofollow">http://www.xmlasp.net/</a><br />
<br />
本地下载点<br />
<a href="http://gd.down.chinaz.com/KK970/%D0%C2%CE%C5%CE%C4%D5%C2/Dvnews4.rar" target="_blank" class="externalLink" rel="nofollow">http://gd.down.chinaz.com/KK970/%D0%C2%CE%C5%CE%C4%D5%C2/Dvnews4.rar</a>...<br />
<br />
<a href="https://www.chinahtml.com/threads/6/" target="_blank" class="externalLink" rel="nofollow">今日部分asp代码</a>]]></content:encoded>
      <slash:comments>5</slash:comments>
    </item>
    <item>
      <title>每个ASP程序员必备的知识</title>
      <pubDate>Tue, 05 Sep 2017 08:33:30 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/239374/</link>
      <guid>https://www.chinahtml.com/threads/239374/</guid>
      <author>invalid@example.com (tonh5636)</author>
      <dc:creator>tonh5636</dc:creator>
      <content:encoded><![CDATA[数据库连接：<br />
&lt;；%<br />
set conn=server.createobject(&quot;adodb.connection&quot;)<br />
conn.open &quot;driver={microsoft access driver (*.mdb)}；dbq=&quot;&amp;；server.mappath(&quot;数据库名&quot;)<br />
%&gt;；<br />
<br />
打开数据库：<br />
<br />
exec=&quot;select * from 数据库表&quot;<br />
set rs=server.createobject(&quot;adodb.recordset&quot;)<br />
rs.open exec，conn，1，1 <br />
参数1，1为读取<br />
读取内容格式：&lt;；%=rs(&quot;字段&quot;)%&gt;；<br />
添加记录处理程序：<br />
<br />
&lt;；%<br />
set conn=server.createobject(&quot;adodb.connection&quot;)<br />
conn.open &quot;driver={microsoft access driver (*.mdb)}；dbq=&quot;&amp;；server.mappath(&quot;数据库名&quot;)<br />
name=request.form(&quot;字段&quot;)...<br />
<br />
<a href="https://www.chinahtml.com/threads/239374/" target="_blank" class="externalLink" rel="nofollow">每个ASP程序员必备的知识</a>]]></content:encoded>
      <slash:comments>4</slash:comments>
    </item>
    <item>
      <title>mysql性能优化------my.cnf的详细参数配置</title>
      <pubDate>Tue, 05 Sep 2017 08:33:00 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/315104/</link>
      <guid>https://www.chinahtml.com/threads/315104/</guid>
      <author>invalid@example.com (lemp)</author>
      <dc:creator>lemp</dc:creator>
      <content:encoded><![CDATA[Mysql参数优化对于新手来讲，是比较难懂的东西，其实这个参数优化，是个很复杂的东西，对于不同的网站，及其在线量，访问量，帖子数量，网络情况，以及机器硬件配置都有关系，优化不可能一次性完成，需要不断的观察以及调试，才有可能得到最佳效果。<br />
<br />
下面先说我的服务器的硬件以及论坛情况，<br />
<br />
CPU: 2颗四核Intel Xeon 2.00GHz<br />
<br />
内存: 4GB DDR<br />
<br />
硬盘: SCSI 146GB<br />
<br />
论坛：在线会员 一般在 5000 人左右 - 最高记录是 13264.<br />
<br />
下面，我们根据以上硬件配置结合一份已经做过一次优化的my.cnf进行分析说明：有些参数可能还得根据论坛的变化情况以及程序员的程序进行再调整。<br />
<br />
[mysqld]<br />
<br />
port = 3306<br />
<br />
serverid = 1<br />
<br />
socket = /tmp/mysql.sock<br />
<br />
skip-locking # 避免MySQL的外部锁定，减少出错几率增强稳定性。 skip-name-resolve...<br />
<br />
<a href="https://www.chinahtml.com/threads/315104/" target="_blank" class="externalLink" rel="nofollow">mysql性能优化------my.cnf的详细参数配置</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>EasyPHP--半小时构建稳定高速的PHP+MYSQL服务器</title>
      <pubDate>Tue, 05 Sep 2017 08:32:29 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/3846/</link>
      <guid>https://www.chinahtml.com/threads/3846/</guid>
      <author>invalid@example.com (凌未风)</author>
      <dc:creator>凌未风</dc:creator>
      <content:encoded><![CDATA[目前Apache的市场占有率已经远远超过IIS等服务器软件 <br />
它的高速稳定,免费开放也是其他同类软件无法比拟的, <br />
加上它的完美搭档MYSQL,不让它红也难. <br />
但你要是以为本文要写Apache的安装之类的那就错了 <br />
因为有个软件可以让Apache+MYSQL麻烦的安装设置,变的相当轻松. <br />
今天的主角是EasyPHP <br />
虽然现在市面上同类的整合软件包很多,但大多是简单的捆绑了Apache+MYSQL的Pack,而不像EasyPHP是个彻彻底底的Program. <br />
通过简单的整合后的Apache和MySQL明显苗条了许多，运行速度相对单独安装的Apache和MySQL快了7%~15%，而且EasyPHP可以方便的开始/停止，设置httpd.conf,my.ini,PHP Extensions;扩展Apache功能如添加ASP支持等等;虽然是整合的软件但EasyPHP的功能和单独安装的Apache+Mysql并不逊色…… <br />
更重要的是EasyPHP是免费的....<br />
<br />
<a href="https://www.chinahtml.com/threads/3846/" target="_blank" class="externalLink" rel="nofollow">EasyPHP--半小时构建稳定高速的PHP+MYSQL服务器</a>]]></content:encoded>
      <slash:comments>19</slash:comments>
    </item>
    <item>
      <title>防止自己网站被盗链方法</title>
      <pubDate>Tue, 05 Sep 2017 08:31:54 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/97892/</link>
      <guid>https://www.chinahtml.com/threads/97892/</guid>
      <author>invalid@example.com (havefirst)</author>
      <dc:creator>havefirst</dc:creator>
      <content:encoded><![CDATA[Hotlinking（盗链）是件令人头疼的事，当我们上传一个文件到自己的网络服务器，别人也链接这个文件并直接使用我们的带宽在他的网站上显示或散布这个文件。最常发生在如：图片的链接、zip和pdf等下载文件。<br />
<br />
     在Apache主机上阻止他人盗链的最好的方法是为你的文件建立一个htaccess文件，这样就可以保护你的文件，所有子目录也会得到保护。在尝试这个功能前请先确定你的webhosting能使用.htaccess文件。<br />
<br />
     要使用它可以简单地上传一个.htaccess到你网站的目录上。<br />
<br />
      我们来随着以下的步骤来编辑它：<br />
<br />
RewriteEngine on<br />
RewriteCond %{HTTP_REFERER} !^$<br />
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?havefirst.com [NC]<br />
RewriteRule \.(jpg|jpeg|png|gif)$ - [NC,F,L]...<br />
<br />
<a href="https://www.chinahtml.com/threads/97892/" target="_blank" class="externalLink" rel="nofollow">防止自己网站被盗链方法</a>]]></content:encoded>
      <slash:comments>18</slash:comments>
    </item>
    <item>
      <title>优秀程序员的十个习惯</title>
      <pubDate>Tue, 05 Sep 2017 08:31:20 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/107412/</link>
      <guid>https://www.chinahtml.com/threads/107412/</guid>
      <author>invalid@example.com (aliyeye)</author>
      <dc:creator>aliyeye</dc:creator>
      <content:encoded><![CDATA[在这个世界上，有数百万的人热衷于软件开发，他们有很多名字，如：软件工程师（Software Engineer），程序员（Programmer），编码人（Coder），开发人员（Developer）。经过一段时间后，这些人能够成为一个优秀的编码人员，他们非常熟悉如何用计算机语言来完成自己的工作。但是，如果你要成为一个优秀的程序员，你还可以需要有几件事你需要注意，如果你能让下面十个条目成为你的习惯，那么你才能真正算得上是优秀程序员。<br />
1. <b>学无止境</b>。就算是你有了10年以上的程序员经历，你也得要使劲地学习，因为你在计算机这个充满一创造力的领域，每天都会有很多很多的新事物出现。你需要跟上时代的步伐。你需要去了解新的程序语言，以及了解正在发展中的程序语言，以及一些编程框架。还需要去阅读一些业内的新闻，并到一些热门的社区去参与在线的讨论，这样你才能明白和了解整个软件开发的趋势。在国内，一些著名的社区例如：CSDN，ITPUB，CHINAUINX等等，在国外，建议你经常上一上digg.com去看看各种BLOG的聚合。<br />
 <br />
2....<br />
<br />
<a href="https://www.chinahtml.com/threads/107412/" target="_blank" class="externalLink" rel="nofollow">优秀程序员的十个习惯</a>]]></content:encoded>
      <slash:comments>23</slash:comments>
    </item>
    <item>
      <title>如何才能作具有超强安全性功能的网站</title>
      <pubDate>Mon, 28 Aug 2017 08:44:45 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/216880/</link>
      <guid>https://www.chinahtml.com/threads/216880/</guid>
      <author>invalid@example.com (fddfgfdh)</author>
      <dc:creator>fddfgfdh</dc:creator>
      <content:encoded><![CDATA[作网站，老被黑，挂马，可不是好事，轻则访客打电话来反映，重则丢客户，给领导骂。<br />
<br />
我原来作网站，用了很多CMS，可是都解决不到挂马被黑的问题。后来我才知道，原来我找的都是些ASP ACCESS数据库的网站管理系统，　ASP是微软很多年前的产品了，一直就有安全性问题，ACCESS一直有数据库可能被下载的问题，怪不得我的网站老出问题。<br />
<br />
　　后来我就想找一些技术先进的，跟着微软走，总没错，我找到了一些资料，知道现在微软用的新技术是ASP.NET，　这个是编译执行的，　.NET　的木马病毒比较少，安全性也高很多，　功能也强大。我到 chinaz 找了一下，　ASP.NET　的CMS还真不少，我到下载排行一下，第一位的是网站快车，用的人多的东西，肯定没错，下回来一看，这个系统果然不错，其它的优点我就不说了，这里只说安全问题。<br />
<br />
　　用了这套系统，网站果然没有再被黑，挂马过，为什么呢？我找了些资料，发现了一些秘密，...<br />
<br />
<a href="https://www.chinahtml.com/threads/216880/" target="_blank" class="externalLink" rel="nofollow">如何才能作具有超强安全性功能的网站</a>]]></content:encoded>
      <slash:comments>12</slash:comments>
    </item>
    <item>
      <title>分享一款flash头像编辑上传利器：社交、博客等网站的好插件</title>
      <pubDate>Mon, 28 Aug 2017 08:44:07 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/328929/</link>
      <guid>https://www.chinahtml.com/threads/328929/</guid>
      <author>invalid@example.com (LOOSELIVE)</author>
      <dc:creator>LOOSELIVE</dc:creator>
      <content:encoded><![CDATA[富头像上传编辑器是一款支持本地上传、预览、视频拍照和网络加载的flash头像编辑上传插件，可缩放、裁剪、旋转、定位和调色等...<br />
<br />
小巧的身材：文件大小仅仅只有 46.3 KB，而新浪的头像编辑器组件有 58.1 KB，更有甚者达 80 KB 之多以上。<br />
<br />
漂亮的外观：灰色系的外观设计，适用于所有风格的站点。还可轻松地实现换肤。<br />
<br />
强大的功能：原图支持本地上传、视频拍照和网络加载，图片编辑有缩放、裁剪、旋转、定位和调色等功能。<br />
<br />
丰富的接口：可自定义头像（大小、数目...）、所有文本（包括其字体，大小，颜色，方便扩展多语言站点）、可在外部接口中定义选项卡、按钮...<br />
<br />
跨平台兼容：运行环境Flash Player 10.1+，任何浏览器 IE All、Firefox、 Chrome、Opera...都正常使用。<br />
<br />
极致的体验：人性化的设计方式，细节上精心的处理，用户使用起来得心应手。<br />
<br />
演示地址：<a href="http://www.fullAvatarEditor.com/demo.html" target="_blank" class="externalLink" rel="nofollow">http://www.fullAvatarEditor.com/demo.html</a>...<br />
<br />
<a href="https://www.chinahtml.com/threads/328929/" target="_blank" class="externalLink" rel="nofollow">分享一款flash头像编辑上传利器：社交、博客等网站的好插件</a>]]></content:encoded>
      <slash:comments>5</slash:comments>
    </item>
    <item>
      <title>编程从业五年的十四条经验</title>
      <pubDate>Mon, 28 Aug 2017 02:13:50 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/320353/</link>
      <guid>https://www.chinahtml.com/threads/320353/</guid>
      <author>invalid@example.com (laogui)</author>
      <dc:creator>laogui</dc:creator>
      <content:encoded><![CDATA[<ol>
<li>当性能遇到问题时，如果能在应用层进行计算和处理，那就把它从数据库层拿出来。排序和分组就是典型的例子。在应用层做性能提升总是要比在数据库层容易的多。就像对于MySQL，sqlite更容易掌控。</li>
<li>关于并行计算，如果能避免就尽量避免。如果无法避免，记住，能力越大，责任越大。如果有可能，尽量避免直接对线程操作。尽可能在更高的抽象层上操作。例如，在iOS中，GCD，分发和队列操作是你的好朋友。人类的大脑没有被设计成用来分析那些无穷临时状态——这是我的惨痛教训所得。</li>
<li>尽可能简化状态，尽可能局部本地化。适用至上。</li>
<li>短小可组合的方法是你的好朋友。</li>
<li>代码注释是危险的，因为它们很容易更新不及时或给人误导，但这不能成为不写注释的理由。不要注释鸡毛蒜皮的事情，但如果需要，在某些特殊地方，战略性的长篇注释是需要的。你的记忆会背叛你，也许会在明天早上，也许会在一杯咖啡后。</li>
<li>如果你认为一个用例场景也许“不会有问题吧”，它也许就是一个月后让你在发布的产品中遭受惨痛失败的地方。做一个怀疑主义者，测试，验证。...</li>
</ol><br />
<a href="https://www.chinahtml.com/threads/320353/" target="_blank" class="externalLink" rel="nofollow">编程从业五年的十四条经验</a>]]></content:encoded>
      <slash:comments>5</slash:comments>
    </item>
    <item>
      <title>mysql数据库编码原理</title>
      <pubDate>Tue, 23 Oct 2012 12:35:53 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/298659/</link>
      <guid>https://www.chinahtml.com/threads/298659/</guid>
      <author>invalid@example.com (汤园)</author>
      <dc:creator>汤园</dc:creator>
      <content:encoded><![CDATA[mysql数据库编码原理<br />
很多站长可能与无忧主机小编一样，觉得他即熟悉又神秘。熟悉是因为我们每天都在用（php开源程序都使用mysql数据库进行存储数据），陌生是因为mysql经常与linux联系，是基于linux系统的下的应用，而我们平常使用的都是windows系统。无忧主机就基于自己对mysql数据库的理解来简单解释一下数据库编码问题，希望我的文章能给使用php虚拟主机的站长用户带来帮助。<br />
<br />
在mysql编码面有两个概念，大家都不需要知道的。一个是 字符编码“character set”和校验编码“collations”。下面我们来说说这个两个东西。<br />
<br />
1、 什么是字符集“character set”...<br />
<br />
<a href="https://www.chinahtml.com/threads/298659/" target="_blank" class="externalLink" rel="nofollow">mysql数据库编码原理</a>]]></content:encoded>
    </item>
    <item>
      <title>JspRun!社区论坛系统 v6.0.0 build 20110516 GBK 安装版</title>
      <pubDate>Wed, 09 May 2012 06:39:52 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/221721/</link>
      <guid>https://www.chinahtml.com/threads/221721/</guid>
      <author>invalid@example.com (花街伤心)</author>
      <dc:creator>花街伤心</dc:creator>
      <content:encoded><![CDATA[JspRun! 具备完善功能、很强负载能力和可高度定制的论坛服务，同时提供了很大限度的个性化设定。众多功能在后台预留开关，可按企业需要启用。前台全部采用编译模板技术构建，更换界面易如反掌。完善的权限设定，使管理员可控制到每个用户，每个组及所在每个分论坛的各种权限。通过 JspRun!，建站者能够在最短的时间内，花费最低的费用，采用最少的人力，架设一个性能优异、功能全面、安全稳定的社区论坛平台。<br />
<br />
 <br />
<br />
 <br />
<br />
更新记录：<br />
<br />
 <br />
JspRun社区论坛系统 6.0 简体GBK安装版 更新：2011-05-16<br />
修复功能:<br />
1、修复了：主题回收站显示内容过长时，没有限制显示宽度的问题。<br />
2、修复了：在某些运行环境中（例如在 LINUX下的 Weblogic10.3 服务器上）用户无法正常上传附件的问题<br />
3、修复了：审核主题和审核回复操作中可能存在的安全隐患。<br />
4、修复了：隐藏版块出现在统计-版块排行中的问题<br />
5、修复了：设置精华帖时，显示的精华图片不随论坛风格变化的问题<br />
6、修复了：在首页进行登录时，如果直接敲回车会有 java script 错误...<br />
<br />
<a href="https://www.chinahtml.com/threads/221721/" target="_blank" class="externalLink" rel="nofollow">JspRun!社区论坛系统 v6.0.0 build 20110516 GBK 安装版</a>]]></content:encoded>
      <slash:comments>6</slash:comments>
    </item>
    <item>
      <title>the price of a ruby; the main factors are</title>
      <pubDate>Wed, 02 Nov 2011 06:36:57 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/193609/</link>
      <guid>https://www.chinahtml.com/threads/193609/</guid>
      <author>invalid@example.com (perfectlover)</author>
      <dc:creator>perfectlover</dc:creator>
      <content:encoded><![CDATA[This Christmas around many are heading for aviation lessons! The latest buzz of gifting the object of your love not just a few goodies but something exciting and memorable has caught so fiercely on that Santa too is tempted to visit those places to try a hand on those flying machines courtesy the mixedshopping]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
    <item>
      <title>讲解SQL Server中容易混淆的数据类型</title>
      <pubDate>Fri, 23 Sep 2011 03:37:31 +0000</pubDate>
      <link>https://www.chinahtml.com/threads/178105/</link>
      <guid>https://www.chinahtml.com/threads/178105/</guid>
      <author>invalid@example.com (wincy)</author>
      <dc:creator>wincy</dc:creator>
      <content:encoded><![CDATA[(1)char、varchar、text和nchar、nvarchar、ntext <br />
　　char和varchar的长度都在1到8000之间，它们的区别在于char是定长字符数据，而varchar是变长字符数据。所谓定长就是长度固定的，当输入的数据长度没有达到指定的长度时将自动以英文空格在其后面填充，使长度达到相应的长度;而变长字符数据则不会以空格填充。text存储可变长度的非Unicode数据，最大长度为2^31-1(2,147,483,647)个字符。...<br />
<br />
<a href="https://www.chinahtml.com/threads/178105/" target="_blank" class="externalLink" rel="nofollow">讲解SQL Server中容易混淆的数据类型</a>]]></content:encoded>
      <slash:comments>2</slash:comments>
    </item>
  </channel>
</rss>
