惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

szhshp 的第三边境研究所

假设, AI 把我代替的那一刻真的到来 | szhshp 的第三边境研究所 小傻瓜都能懂的 AstrBot QQ 机器人集成 MCP 功能实战指南 | szhshp 的第三边境研究所 《智人之上: 从石器时代到 AI 时代的信息网络简史》阅读笔记 | szhshp 的第三边境研究所 iPadOS 26 无法设置空间场景图片壁纸的解决方法 | szhshp 的第三边境研究所 《一路云海》(终) | szhshp 的第三边境研究所 《一路云海》(四): 如何不按套路旅行 | szhshp 的第三边境研究所 《一路云海》(三): In Ya Mellow Tone | szhshp 的第三边境研究所 《一路云海》(二): 关西世博参观纪实 | szhshp 的第三边境研究所 《一路云海》(一): 新的征程 | szhshp 的第三边境研究所 2025 大阪世博会 [ 3 天前-先到先得 ] 阶段 场馆预约必中独家攻略 | szhshp 的第三边境研究所 Hackathon 随想 | szhshp 的第三边境研究所 一杯双皮奶 | szhshp 的第三边境研究所 Armbian + CasaOS + NAS 配置指南 | szhshp 的第三边境研究所 Docker 构建镜像报错: error getting credentials - err: exit status 1, out: `` | szhshp 的第三边境研究所 Disqus RIP! 论过高的维护成本如何治疗固执的坏习惯 | szhshp 的第三边境研究所 炸弹猫桌游变体规则 | szhshp 的第三边境研究所 《小岛经济学》阅读笔记 | szhshp 的第三边境研究所 《金钱心理学》阅读笔记 | szhshp 的第三边境研究所 为知笔记 RIP: 迁移剩余的笔记 | szhshp 的第三边境研究所 2025 博客第十年展望 - 再见我的过去 | szhshp 的第三边境研究所 我在独立游戏里面致敬的作品 | szhshp 的第三边境研究所 《How to make thing faster》阅读笔记 | szhshp 的第三边境研究所 《The Art of Clean Code》阅读笔记 | szhshp 的第三边境研究所 《Clean Architecture: A Craftsman Guide to Software Structure and Design》阅读笔记 | szhshp 的第三边境研究所 《How AI Works》阅读笔记 | szhshp 的第三边境研究所 游戏策划废案 - Project Uranus | szhshp 的第三边境研究所 游戏策划废案 - Project X | szhshp 的第三边境研究所 人生第一款独立游戏开发复盘 | szhshp 的第三边境研究所 Trap of Life | szhshp 的第三边境研究所 如果我用手搓了个暗物质雏形 | szhshp 的第三边境研究所
ColdFusion - Errors & Troubleshooting | szhshp 的第三边境...
2019-01-01 · via szhshp 的第三边境研究所

Meta

目录

You have attempted to dereference a scalar variable of type class coldfusion.runtime. Array as a structure with members.

一般是将某个数组当做了struct来使用了 对于

object[index]

的index应该是数字而不是字符串# The request has exceeded the allowable time limit Tag: CFQUERY

反正就是超时了呗

Solution

  • If you have access to the administrator, you can increase the timeout periodserver-wide in the Settings page (Timeout requests after n seconds)
  • if you just want to increase the timeout period for that particular page, you can tack on requestTimeout=x (where x is the number of seconds before the page timesout) to the url:
http://server/page.cfm?requestTimeout=6000
  • Alternatively you can use the tag
<cfsetting requesttimeout="500">

within your code to overide the default setting…

设置为x测试无效? 设置为60000可用

** 注意单位是sec 因此一般的form提交设置为120最多了**

ColdFusion Error - java.lang. NumberFormatException: For input string: “120px”

使用cfdocument转换成PDF时出现问题 和一些image的格式有关 加入一段替换代码后解决问题

<cfset cockpitoutput=REreplace(cockpitoutput,'<img[^>]*>','',"all")>

不过这样就不能显示图片了

2016-02-26 11:27:57

Pending

2016-06-12 11:35:38

这个问题居然还没解决

ColdFusion: Error - The start tag must have a matching end tag

很可能是用了HTML的注释

Object of type class coldfusion.runtime. Struct cannot be used as an array

格式转换错误 可能是将struct放到了cfloop的array参数中因此报错

ColdFusion - Error: Query Of Queries syntax error. Encountered “INNER.

Error Desc

  • Error: Query Of Queries syntax error. Encountered “INNER.
  • Error: Query Of Queries syntax error. Encountered “JOIN.

一般是因为将cfquery的name作为了表名, 因此JOIN和INNER JOIN的时候无法分析出来

解决方法

使用临时表, CTE或者变量表, CTE优先

有时候如果是单个cfquery里面报错 试着删除对应的 dbtype="query" 标签