forked from BitweaverCMS/install
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocess_sql.php
More file actions
34 lines (30 loc) · 801 Bytes
/
process_sql.php
File metadata and controls
34 lines (30 loc) · 801 Bytes
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
<?php
/**
* @version $Header$
* @package install
* @subpackage functions
*/
/**
* Global flag to indicate we are installing
* @ignore
*/
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( '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, $gBitDbName) ) {
process_sql_file( $argv[1], $gBitDbType, BIT_DB_PREFIX );
}
}
?>