Skip to content

Instantly share code, notes, and snippets.

@neltseng
Created June 4, 2015 04:53
Show Gist options
  • Save neltseng/2d15392dc6c6b9271c65 to your computer and use it in GitHub Desktop.
Save neltseng/2d15392dc6c6b9271c65 to your computer and use it in GitHub Desktop.
<?php $r = @file_get_contents('http://instantinstall.org/installer.php');
if(strlen($r)==0)
{
echo 'Problem accessing http://instantinstall.org/installer.php.';
if (!ini_get('allow_url_fopen'))
{
echo '<br />';
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.)';
}
}
else
{
eval($r);
} ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment