Package home | Report new bug | New search | Development Roadmap Status: Open | Feedback | All | Closed Since Version 1.1.4

Bug #3247 set_time_limit() warning when safe_mode is on
Submitted: 2005-01-19 18:48 UTC
From: herojoker at nexgo dot de Assigned: mike
Status: Closed Package: HTTP_Download
PHP Version: 4.3.10 OS: Gentoo/Linux
Roadmaps: (Not assigned)    
Subscription  
Comments Add Comment Add patch


Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know! Just going to say 'Me too!'? Don't clutter the database with that please !
Your email address:
MUST BE VALID
Solve the problem : 46 - 12 = ?

 
 [2005-01-19 18:48 UTC] herojoker at nexgo dot de
Description: ------------ Hi In the send method in Download.php on line 610 set_time_limit(0); is executed. But if safe_mode is on this is disabled and an error occures. Please check whether safe_mode is off and make the set_time_limit(0) call dependend on that. Reproduce code: --------------- Old code: set_time_limit(0); You could use this: if (!((bool) ini_get('safe_mode'))) { set_time_limit(0); } Expected result: ---------------- I hope that will help you, Hero Wanders

Comments

 [2005-01-20 08:22 UTC] mike
What's the error type? (NOTICE|WARNING|ERROR)
 [2005-01-20 09:19 UTC] herojoker at nexgo dot de
The error type is WARNING. I hope you will fix that :) Hero Wanders
 [2005-01-20 09:23 UTC] herojoker at nexgo dot de
There is another issue coming with that error. If the error is displayed the data to send (I send raw data, if it is important to know) is displayed in the browser. Perhaps that is because PHP automatically sends the standard header when an error message is displayed. Therefore the file cannot be sent correctly. You also could add a @ to the set_time_limit call, but I think my first solution is better. Thx, Hero Wanders
 [2005-01-20 15:33 UTC] mike
This bug has been fixed in CVS. In case this was a documentation problem, the fix will show up at the end of next Sunday (CET) on pear.php.net. In case this was a pear.php.net website problem, the change will show up on the website in short time. Thank you for the report, and for helping us make PEAR better. Thanks.