Last active
February 12, 2024 09:20
-
-
Save tschoffelen/8087707 to your computer and use it in GitHub Desktop.
Revisions
-
tschoffelen revised this gist
Nov 24, 2020 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,7 +3,7 @@ echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL; // Download file file_put_contents('wp.zip', file_get_contents('https://wordpress.org/latest.zip')); $zip = new ZipArchive(); $res = $zip->open('wp.zip'); -
tschoffelen created this gist
Dec 22, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ <?php echo '<pre>'; echo '<span style="color:blue">DOWNLOADING...</span>'.PHP_EOL; // Download file file_put_contents('wp.zip', file_get_contents('http://wordpress.org/latest.zip')); $zip = new ZipArchive(); $res = $zip->open('wp.zip'); if ($res === TRUE) { // Extract ZIP file $zip->extractTo('./'); $zip->close(); unlink('wp.zip'); // Copy files from wordpress dir to current dir $files = find_all_files("wordpress"); $source = "wordpress/"; foreach ($files as $file) { $file = substr($file, strlen("wordpress/")); if (in_array($file, array(".",".."))) continue; if (!is_dir($source.$file)){ echo '[FILE] '.$source.$file .' -> '.$file . PHP_EOL; rename($source.$file, $file); }else{ echo '[DIR] '.$file . PHP_EOL; @mkdir($file); } } // Remove wordpress dir foreach ($files as $file) { if (in_array($file, array(".",".."))) continue; if (is_dir($file)){ echo '[REM] '.$file . PHP_EOL; @rmdir($file); } } @rmdir('./wordpress'); // Check if copy was successful if(file_exists('index.php')){ // Redirect to WP installation page echo '<meta http-equiv="refresh" content="1;url=index.php" />'; }else{ echo 'Oops, that didn\'t work...'; } } else { echo 'Oops, that didn\'t work...'; } function find_all_files($dir) { $root = scandir($dir); foreach($root as $value) { if($value === '.' || $value === '..') {continue;} $result[]="$dir/$value"; if(is_file("$dir/$value")) {continue;} foreach(find_all_files("$dir/$value") as $value) { $result[]=$value; } } return $result; } ?>