blob: 74b0e10731ecfd61a0b85c8dc52269f9821d8e69 (
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.";
# rename this file to avoid setting up the tables twice
rename(ABSPATH . 'setup.php', ABSPATH . '_setup.php');
|