blob: c78a09d8555af8b10eee4b3c34eb9425e6ff99ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
/**
* @version $Header$
* @package install
* @subpackage functions
*/
/**
* Global flag to indicate we are installing
* @ignore
*/
namespace Bitweaver;
define( 'BIT_INSTALL', 'true' );
global $failedcommands;
// keep some crappy notices from spewing
$_SERVER['HTTP_HOST'] = 'shell';
$_SERVER['SERVER_SOFTWARE'] = 'command_line';
/**
* required setup
*/
require_once 'includes/install_lib.php';
include '../kernel/includes/setup_inc.php';
if( count( $argv ) < 2) {
print "Please enter name of SQL file in db/ directory to process\n";
} else {
// avoid errors in ADONewConnection() (wrong darabase driver etc...)
$gBitDb = ADONewConnection($gBitDbType);
if( $gBitDb->Connect($gBitDbHost, $gBitDbUser, $gBitDbPassword, $gBitDbType != 'pdo' ? $gBitDbName : NULL ) ) {
process_sql_file( $argv[1], $gBitDbType, BIT_DB_PREFIX );
}
}
|