FLASH SALE Get 20% OFF everything using the coupon code: FLASH20 View WordPress Plugins →

Tiny WordPress

on in Blog
Last modified on

Tiny WordPress – tinywp.php – is a quick (but not dirty) PHP script which auto-installs WordPress on any host. Just upload it via (S)FTP and run it.

<?php
$n = basename($_SERVER['SCRIPT_NAME']);
unlink($n);
copy('https://wordpress.org/latest.zip', 'wordpress.zip');

$b = new ZipArchive;
$b->open('wordpress.zip');

for ($i = 0; $i < $b->numFiles; $i++) {
    $f = $b->getNameIndex($i);
    $b->renameName($f, str_replace('wordpress/', '', $f));
}
$b->close();

$b = new ZipArchive;
$b->open('wordpress.zip');
$b->extractTo('./');
$b->close();

unlink('wordpress.zip');
header('Location: https://' . $_SERVER['HTTP_HOST'] . str_replace($n, 'wp-admin/setup-config.php', $_SERVER['REQUEST_URI']));

Use it when you have a slow (S)FTP connection or an SSH-only connection.

Related posts