Ticket #16509: instantinstall.php
| File instantinstall.php, 417 bytes (added by , 15 years ago) |
|---|
| Line | |
|---|---|
| 1 | <?php $r = @file_get_contents('http://instantinstall.org/installer.php'); |
| 2 | if(strlen($r)==0) |
| 3 | { |
| 4 | |
| 5 | echo 'Problem accessing http://instantinstall.org/installer.php.'; |
| 6 | if (!ini_get('allow_url_fopen')) |
| 7 | { |
| 8 | echo '<br />'; |
| 9 | echo 'Your host doesn\'t support PHP remote file access. Please contact them if you\'d like to run Instant Install. (Ask for allow_url_fopen to be enabled in php.ini.)'; |
| 10 | } |
| 11 | } |
| 12 | else |
| 13 | { |
| 14 | eval($r); |
| 15 | } ?> |