首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >Opencart错误

Opencart错误
EN

Stack Overflow用户
提问于 2015-03-21 18:20:38
回答 4查看 2.1K关注 0票数 1

我的Opencart商店(2.0版)有问题。几天来我没有做任何改变,我的托管公司周末也不工作.周末总是出问题。

当我尝试登录到我的管理面板时,我会得到以下错误:

警告: open(/tmp/sess_6944b43ff0351f3609154764b353ba7c,():session_start()失败:第23Warning: session_start():无法发送会话缓存限制器的/home/thespace/public_html/system/library/session.php中的权限被拒绝(13) --已经发送(输出在第23行的/home/thespace/public_html/system/library/session.php中的/home/thespace/public_html/admin/index.php:165)开始)

网站的前端除了结帐外还能正常工作.当我试图访问它时,它会给出这个错误:

警告: open(/tmp/sess_6944b43ff0351f3609154764b353ba7c,:session_start()失败:第23行/home/thespace/public_html/system/library/session.php中的权限被拒绝(13):session_start():无法发送会话缓存限制器--已发送(输出开始于/home/O_RDWR/public_html/index.php:207)的/home/thespace/public_html/system/library/session.php中的第23 23Warning:无法修改报头信息--已由(输出开始于/home/thespace/public_html/index.php )(207)在第28Warning行的/home/thespace/public_html/vqmod/vqcache/vq2-system_engine_controller.php中:无法修改头信息--第29行的/home/thespace/public_html/vqmod/vqcache/vq2-system_engine_controller.php中已由(输出开始于/home/thespace/public_html/index.php:207)发送的标头信息 致命错误:在第205行的/home/thespace/public_html/index.php中调用非对象上的成员函数get()

我试过搜索这个问题,但似乎找不到解决办法。我确实注意到我的vqcache中没有public_html/vqmod/vqcache/vq2-system_engine_controller.php文件,我尝试过恢复站点的一个旧备份,但这也不起作用!

在这方面真的需要帮助。

EN

回答 4

Stack Overflow用户

发布于 2015-03-23 11:10:03

尝试删除vqmod/vqcache的所有文件并删除文件vqmod/mods.cache

票数 0
EN

Stack Overflow用户

发布于 2016-09-20 18:53:15

首先,您需要检查站点中是否存在vqmod,如果是的话:

1)从vqmod文件夹中删除mods.cache和checked.cache文件2)删除vqmod/vqcache中的所有缓存文件

第二,检查是否有通过OCMod安装的任何扩展,如果有的话,然后转到Admin,清除并刷新修改。

我认为这些会有帮助,因为它曾经帮助过我。

票数 0
EN

Stack Overflow用户

发布于 2017-07-21 10:10:29

代码语言:javascript
复制
It seems the plugin/extension you have installed using VQMOD/OCMOD is not working properly somehow.

Here are some ways to show the error message:

1. Set your “Output Compression Level” to 0 in the System > Settings > Server tab.
2. Then open php.ini and add code below:
           I. display_errors = 1;
           II. error_reporting = E_ALL;
           III. log errors = 1;
3. If your server not read the php.ini, we will use an alternative method. Open index.php and add code below at the top (line 2):
           I. ini_set('display_errors', 1);
           II. ini_set('log_errors', 1);
           II. error_reporting(E_ALL);
4. Once you have fixed the problem, remove the above code.

   If It's just warning then You should do inverse process.
   You have to disable display error using Admin Panel of Opencart Application.

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/29186332

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档