有人能帮我吗?
引发index.php/admin
以下异常:
Fatal error: Call to a member function getBlockName() on a non-object in /home/ahorraen/public_html/app/code/core/Mage/Captcha/Block/Captcha.php on line 43
有人能帮我吗?
引发index.php/admin
以下异常:
Fatal error: Call to a member function getBlockName() on a non-object in /home/ahorraen/public_html/app/code/core/Mage/Captcha/Block/Captcha.php on line 43
删除 var/cache 和 var/session
这对我有用!
清除缓存对我有用。
只需删除 var/cache/All 文件夹
即使删除后,它也可能需要几分钟才能刷新。
有几件事会导致这种情况,例如不正确地覆盖admin/captcha/type
社区或本地模块中的字段。但是,正如其他人所建议的那样,这很可能是缓存的问题。确保清除所有缓存,包括 Memcached、Redis 和/或 APC。
有关更多详细信息,请参阅我的答案:https ://stackoverflow.com/a/25902858/1038564
只为我工作cache/
,session/
不为我工作。正确设置文件夹的 chmod 写入权限
var
var/cache
var/session
Clearing the cache and session files did not do it for me, but I did find that the website ids were not set correctly for some reason in the core_website table. Once set correctly, all was fine.
可能是因为您最近通过 XML 禁用了一个模块。这里的情况是:
/app/etc/modules
或者通过后端。
您可以切换到您的 magento 目录并在 shell 中执行以下操作:
cd /yourdirectory/
find -type -f -mtime 1
将过去 30 天的 1 更改为 30...
是的。这些是 Magento 安装的目录。