blob: 8781a5fb8f34178916bcbf8965dee48c869c46ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
# init file to set up the database
# TODO: pretty html
$vfsdb = new vfsdb();
$vfsdb->createTables();
$vfsdb->close();
echo "<p>Successfully created the database.</p>";
# rename this file to avoid setting up the tables twice
rename(ABSPATH . 'setup.php', ABSPATH . '_setup.php');
|