致命错误:未捕获的异常“Zend_Session_Exception”带有消息 'Zend_Session::start()

发布于 2025-01-08 05:55:09 字数 159 浏览 0 评论 0原文

这是带有错误转储的屏幕截图:知道这可能是什么原因造成的吗?

我在浏览我正在开发的网站。显然会话无法启动,但我不知道如何防止此错误,因为它是随机发生的(在我看来)。知道如何防止此错误发生吗?

This is a screenshot with the error dump: any idea what can be caused of this?

I occassionaly get this error while browsing a website i am developing. Obviously session can't be started but i have no idea how to prevent this error because it occurs randomly (as it seems to me). Any idea how can I prevent this error to occur?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离去的眼神 2025-01-15 05:55:10

我遇到了同样的错误,并找到了 PHP 应用程序是使用 PHP 5.6 开发的根本情况。后来,我安装了 PHP 7.2 &尝试使用 PHP 7.2 运行 PHP 5.6 应用程序。禁用 PHP 7.2 对我有用。

分享以下命令供参考:

sudo a2dismod php7.2 
sudo a2enmod php5.6 
sudo service apache2 restart 
sudo update-alternatives --set php /usr/bin/php5.6 
sudo update-alternatives --set phar /usr/bin/phar5.6 
sudo update-alternatives --set phar.phar /usr/bin/phar.phar5.6

I faced the same error and found the root case that PHP application was developed using PHP 5.6. Later on, I installed PHP 7.2 & trying to run PHP 5.6 application using PHP 7.2. Disabling PHP 7.2 worked for me.

Sharing below commands for reference:

sudo a2dismod php7.2 
sudo a2enmod php5.6 
sudo service apache2 restart 
sudo update-alternatives --set php /usr/bin/php5.6 
sudo update-alternatives --set phar /usr/bin/phar5.6 
sudo update-alternatives --set phar.phar /usr/bin/phar.phar5.6
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文