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.
我在 X-Cart 中遇到了一个非常奇怪的问题,我正在使用 localhost。它工作正常,现在它不再工作了。它只显示一个空白页面,似乎它去了某个地方然后没有回来。
我们在 localhost 上安装了另一个 X-Cart,它运行良好。我只是在做主题,客户将购买许可证。那么是因为某种许可问题吗?它工作了一段时间然后停止工作?
我尝试调试,似乎问题出sessions.php在包含目录中的文件中。似乎语句创建问题是x_session_start()。
sessions.php
x_session_start()
如果您看到空白页,可能是因为出现错误并且您禁用了错误报告。
您可以通过将此代码放在脚本的第一行来启用它...
ini_set('display_errors', 1); error_reporting(E_ALL);