2014-01-14 72 views
1

我试图用HTML2PDF脚本运行一个更大的php脚本FPDF。 我得到一个“无法在安全模式下设置时间限制”的错误,我在脚本的顶部有这个。 (我有2页)。PHP5:无法在安全模式下设置时间限制

<?php 
ini_get('safe_mode'); 
set_time_limit(0); 

但我仍然得到这些2(3)错误。

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode in /html2pdf.class.php on line 3

Warning: set_time_limit() [function.set-time-limit]: Cannot set time limit in safe mode in /_class/parsingCss.class.php on line 3

Fatal error: Maximum execution time of 30 seconds exceeded in /_class/parsingCss.class.php on line 1242

难道有人有ideer解决这一问题?

我无法进入php.ini文件。

+0

您无法在安全模式下设置时间限制。关闭安全模式或使PHP更快。 – pltvs

回答

0

当您遇到错误时,请借此机会阅读文档。在这种情况下,文档为set_time_limit()

This function has no effect when PHP is running in safe mode. There is no workaround other than turning off safe mode or changing the time limit in the php.ini.