Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在网上发布我的 cakephp 项目时,视图不再适用于 100%。本地视图显示正确的数据,但在线仅显示 21 个值之一
undefined index: commission_total [APP/View/Brokeraccountupdates/detail.ctp, line 77]
那里没有错字和数据库字段确实存在。我在网上做了一个phpinfo来比较php和mysql版本的设置。
代码相同,服务器设置良好。(分页器是好的)。有人能帮我吗?
我之前遇到过这个问题,通常它是由缓存的模型引起的。尝试为您的应用删除模型缓存:
cd <cake_app_root> rm -rf app/tmp/cache/model/*
或者导航到 FTP 客户端中的目录并删除文件,但是您管理您的服务器
托管服务器存在权限问题,我们使用新的托管服务器,问题就消失了。不管怎么说,还是要谢谢你。