/framework-installer

Download and unzip your framework.

Primary LanguagePHPMIT LicenseMIT

Framework Installer

Framework Installer

How To Use

# Download and unzip Wordpress (or a framework of your choosing).

$install = new installer();
$install->download($install->framework['wordpress']);
$install->unpack();

or

# Download and unzip your custom framework.  Then create the database connection file.

$install = new installer();
$install->download('http://your-domain.com/framework.zip');
$install->unpack();
$cred = array(
	'DB_HOST' => 'localhost', 
	'DB_DATABASE' => 'user_db12', 
	'DB_USER' => 'user_kewl', 
	'DB_PASSWORD' => 'abc123456'
	);
$install->create($cred, 'db-config.php');