<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>Discuz插件下载 - 开发技术</title>
    <link>https://www.fengyuit.com/forum-53-1.html</link>
    <description>Latest 20 threads of 开发技术</description>
    <copyright>Copyright(C) Discuz插件下载</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Fri, 22 May 2026 02:26:29 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://www.fengyuit.com/static/image/common/logo_88_31.gif</url>
      <title>Discuz插件下载</title>
      <link>https://www.fengyuit.com/</link>
    </image>
    <item>
      <title>nginx服务器跨域设置</title>
      <link>https://www.fengyuit.com/thread-656-1-1.html</link>
      <description><![CDATA[只需截取location/{}段放进去]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Sat, 30 Aug 2025 04:52:49 +0000</pubDate>
    </item>
    <item>
      <title>windows下安装UglifyJS</title>
      <link>https://www.fengyuit.com/thread-651-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Sat, 28 Dec 2024 15:50:31 +0000</pubDate>
    </item>
    <item>
      <title>注册表找到不启动项</title>
      <link>https://www.fengyuit.com/thread-650-1-1.html</link>
      <description><![CDATA[注册表位置：
HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run\\

实现上，在64位系统下的位置
HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Run\\]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Fri, 25 Oct 2024 04:07:15 +0000</pubDate>
    </item>
    <item>
      <title>duilib tooltip 不起作用</title>
      <link>https://www.fengyuit.com/thread-649-1-1.html</link>
      <description><![CDATA[编译选项-&gt;链接器-&gt;清单文件-&gt;生成清单,选择是]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Mon, 21 Oct 2024 08:41:49 +0000</pubDate>
    </item>
    <item>
      <title>discuz后台设置保存与展示方式</title>
      <link>https://www.fengyuit.com/thread-648-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Sat, 21 Sep 2024 08:42:22 +0000</pubDate>
    </item>
    <item>
      <title>关于360误报木马病毒的问题</title>
      <link>https://www.fengyuit.com/thread-636-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Thu, 25 Jul 2024 07:42:22 +0000</pubDate>
    </item>
    <item>
      <title>解决div不能占满一行</title>
      <link>https://www.fengyuit.com/thread-635-1-1.html</link>
      <description><![CDATA[div不能占满一行，在div下面添加代码]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Tue, 02 Jul 2024 05:05:07 +0000</pubDate>
    </item>
    <item>
      <title>qt发布程序缺少msvcp140.dll</title>
      <link>https://www.fengyuit.com/thread-634-1-1.html</link>
      <description><![CDATA[qt打包发布程序，在没有运行环境的电脑上，运行出错：缺少msvcp140.dll
在开发环境C:\\Windows\\SysWOW64目录下(注意不是system32)，找到msvcp140.dll和vcruntime140.dll复制到程序目录下，
如果出现提示msvcp140d.dll，则检查项目需将debug改为release编译

 ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Wed, 26 Jun 2024 10:36:30 +0000</pubDate>
    </item>
    <item>
      <title>vs+qt开发环境搭建</title>
      <link>https://www.fengyuit.com/thread-633-1-1.html</link>
      <description><![CDATA[1. 安装 vs2022
略
2. 安装已编译好的 qt-opensource-windows-x86-5.14.2.exe
https://download.qt.io/archive/qt/

3. 安装vs插件 qt-vsaddin-msvc2022-x64-3.2.0-rev.47.vsix
https://download.qt.io/archive/vsaddin/3.2.0/


4.mfc调用qt dll时，需用到 qtwinmigrat ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Wed, 19 Jun 2024 03:49:43 +0000</pubDate>
    </item>
    <item>
      <title>discuz嵌入点不生效</title>
      <link>https://www.fengyuit.com/thread-632-1-1.html</link>
      <description><![CDATA[discuz嵌入点不生效时，需要重新安装插件刷新]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Fri, 07 Jun 2024 07:51:09 +0000</pubDate>
    </item>
    <item>
      <title>webkit或ie不能访问 https 页面</title>
      <link>https://www.fengyuit.com/thread-629-1-1.html</link>
      <description><![CDATA[原因是服务器只支持 tsl1.3，不支持http或 tsl1.1和 tls1.2
解决办法：
需要增加 tsl1.1和 tls1.2的支持。
进服务器配置网站，找到ssl_protocols，代码如下：
 ssl_protocols TLSv1.2 TLSv1.3;

原文：
https://blog.csdn.net/weixin_39702559/article/details/11123362 ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Sun, 19 May 2024 12:27:31 +0000</pubDate>
    </item>
    <item>
      <title>libcurl返回错误SSL connect error</title>
      <link>https://www.fengyuit.com/thread-628-1-1.html</link>
      <description><![CDATA[原因可能是服务器只支持TSL1.3，需要添加支持TSL1.1 TSL1.2

在服务器配置文件找到 ssl_protocols
代码：
ssl_protocols TLSv1.2 TLSv1.3;


如果是想要增加对TLSv1.3的支持，除了上面还要修改 ssl_ciphers :
参考：

https://blog.csdn.net/weixin_39702559/article/de ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Sun, 19 May 2024 12:23:10 +0000</pubDate>
    </item>
    <item>
      <title>修改duilib滚动条大小</title>
      <link>https://www.fengyuit.com/thread-627-1-1.html</link>
      <description><![CDATA[默认宽度为 16
代码搜索找到 DEFAULT_SCROLLBAR_SIZE 修改值]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Wed, 15 May 2024 16:44:19 +0000</pubDate>
    </item>
    <item>
      <title>libcurl在release下编译报错：无法解析的外部符号 _imp_read</title>
      <link>https://www.fengyuit.com/thread-625-1-1.html</link>
      <description><![CDATA[CURL在windows下的编译使用CURL的使用要注意几点：1. 使用CURL的工程依赖加libcurl.lib ws2_32.lib wldap32.lib2. 工程加宏CURL_STATICLIB3. 链接器-&gt;输入-&gt; debug版忽略LIBCMTD.lib，release版忽略LIBCMT.lib]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Mon, 13 May 2024 08:26:03 +0000</pubDate>
    </item>
    <item>
      <title>Libcurl编译</title>
      <link>https://www.fengyuit.com/thread-624-1-1.html</link>
      <description><![CDATA[1.在桌面左下角的 Start Menu 打开 vs2015 命令行工具。

2.进入libcurl目录，cd d:\\curl-8.7.1\\winbuild
3.执行命令



4. 加入预编译选项：项目-&gt;属性-&gt;c/c++ -&gt;预处理器-&gt;预处理器，添加 CURL_STATICLIB


上面方法编译出来还是需要运行库，否则崩溃。正确的做法是下 ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Mon, 13 May 2024 00:26:12 +0000</pubDate>
    </item>
    <item>
      <title>vc调试运行出错: 无法启动程序f:\\xxx.exe系统找不到指定文件</title>
      <link>https://www.fengyuit.com/thread-623-1-1.html</link>
      <description><![CDATA[vc调试运行出错: 无法启动程序f:\\xxx.exe系统找不到指定文件,解决办法:

配置属性-&gt;常规-&gt;输出目录, 改为 $(SolutionDir)\\bin\\ 根据实际路径改


如果还是找不到,继续修改，目标文件名: $(ProjectName)_d
 ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Thu, 09 May 2024 08:31:26 +0000</pubDate>
    </item>
    <item>
      <title>duilib调试时加载资源文件出错</title>
      <link>https://www.fengyuit.com/thread-622-1-1.html</link>
      <description><![CDATA[// 设置资源的默认路径（此处设置为和exe在同一目录）
CPaintManagerUI::SetResourcePath(CPaintManagerUI::GetInstancePath()+_T(\&quot;\\\\Dui\&quot;));]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Mon, 29 Apr 2024 23:06:16 +0000</pubDate>
    </item>
    <item>
      <title>discuz登录检测登录跳转</title>
      <link>https://www.fengyuit.com/thread-615-1-1.html</link>
      <description><![CDATA[方法一:

if(!$_G[\'uid\']) showmessage(\'not_loggedin\',\'member.php?mod=logging&amp;action=login\');


方法二：
if(!$_G[\'uid\'])
{
]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Thu, 04 Apr 2024 10:58:01 +0000</pubDate>
    </item>
    <item>
      <title>关于mb_strlen方法的使用</title>
      <link>https://www.fengyuit.com/thread-613-1-1.html</link>
      <description><![CDATA[对于mb_strlen($str,\'UTF-8\')，如果省略第二个参数，则会使用PHP的内部编码。内部编码可以通过mb_internal_encoding()函数得到。需要注意的是，mb_strlen并不是PHP核心函数，使用前需要确保在php.ini中加载了php_mbstring.dll，即确保“extension=php_mbstring.dll”这 ...]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Tue, 26 Mar 2024 03:28:37 +0000</pubDate>
    </item>
    <item>
      <title>div实现左中右布局</title>
      <link>https://www.fengyuit.com/thread-609-1-1.html</link>
      <description><![CDATA[]]></description>
      <category>开发技术</category>
      <author>admin</author>
      <pubDate>Wed, 21 Feb 2024 08:18:13 +0000</pubDate>
    </item>
  </channel>
</rss>