修复致命错误情况显示系统路径 Magento get.php

修复致命错误情况显示系统路径 Magento get.php

我注意到有大量运行 Magento Commerce 的服务器会返回一个显示系统路径的致命错误:

Fatal error: Uncaught exception 'Exception' with message 'File '/usr/local/www/magento/data1702/media/css' does not exists.' in /usr/local/www/magento/data1702/lib/Varien/File/Transfer/Adapter/Http.php:96 Stack trace: #0 /usr/local/www/magento/data1702/get.php(205): Varien_File_Transfer_Adapter_Http->send('/usr/local/www/...') #1 /usr/local/www/magento/data1702/get.php(165): sendFile('/usr/local/www/...') #2 {main} thrown in /usr/local/www/magento/data1702/lib/Varien/File/Transfer/Adapter/Http.php on line 96

Magento 作为一款应用程序,通常能够很好地抑制错误消息。如何配置运行 apache 的 Linux 服务器以避免返回此错误消息,因为应用程序在抑制错误消息方面存在问题。

答案1

实际上,这是一个 php 错误。

您可以编辑 php.ini 文件,通过将 display_errors 设置为 0 而不是 1 来禁用 php 错误显示

相关内容