Index: trunk/phase3/config/Installer.php |
— | — | @@ -460,6 +460,11 @@ |
461 | 461 | dieout( "The PCRE support module appears to be missing. MediaWiki requires the |
462 | 462 | Perl-compatible regular expression functions." ); |
463 | 463 | |
| 464 | +# The installer can take a while, and we really don't want it to time out |
| 465 | +wfSuppressWarnings(); |
| 466 | +set_time_limit( 0 ); |
| 467 | +wfRestoreWarnings(); |
| 468 | + |
464 | 469 | $memlimit = ini_get( "memory_limit" ); |
465 | 470 | if( $memlimit == -1 ) { |
466 | 471 | print "<li>PHP is configured with no <tt>memory_limit</tt>.</li>\n"; |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -437,6 +437,7 @@ |
438 | 438 | if they contain non-ASCII characters |
439 | 439 | * (bug 19055) maintenance/rebuildrecentchanges.php now purges |
440 | 440 | Special:Recentchanges's RSS and Atom feed cache |
| 441 | +* The installer will now try to bypass PHP's max_execution_time |
441 | 442 | |
442 | 443 | == API changes in 1.16 == |
443 | 444 | |