我想禁用mode_python错误,回溯,模块缓存详细信息和任何其他警告通知!
我在ubuntu服务器上使用简单的mod_python模块和apache,没有任何框架(Django等...)。
我在GOOGLE上进行了很多搜索,但没有人谈论这个:)
我希望在PHP上替代error_reporting(0);
或在服务器端替换任何配置。
提前谢谢。
答案 0 :(得分:0)
Heyy,
对于ubuntu,您可以这样做:
sudo a2dismod mod_python
sudo /etc/init.d/apache2 restart
希望有所帮助:)
答案 1 :(得分:0)
答案如下:
vi /etc/apache2/sites-available/default
修改:
PythonDebug On
要:
PythonDebug Off
然后
service apache2 restart
完成;)