mirror of
https://github.com/YGGverse/YGGtracker.git
synced 2026-04-01 09:35:28 +00:00
move connections to the bootstrap
This commit is contained in:
parent
4135e70b62
commit
bf759f9dd7
13 changed files with 25 additions and 151 deletions
|
|
@ -41,4 +41,28 @@ require_once __DIR__ . '/../library/scrapeer.php';
|
|||
require_once __DIR__ . '/../library/time.php';
|
||||
|
||||
// Vendors autoload
|
||||
require_once __DIR__ . '/../../vendor/autoload.php';
|
||||
require_once __DIR__ . '/../../vendor/autoload.php';
|
||||
|
||||
// Connect database
|
||||
try {
|
||||
|
||||
$db = new Database(DB_HOST, DB_PORT, DB_NAME, DB_USERNAME, DB_PASSWORD);
|
||||
|
||||
} catch (Exception $e) {
|
||||
|
||||
var_dump($e);
|
||||
|
||||
exit;
|
||||
}
|
||||
|
||||
// Connect Sphinx
|
||||
try {
|
||||
|
||||
$sphinx = new Sphinx(SPHINX_HOST, SPHINX_PORT);
|
||||
|
||||
} catch(Exception $e) {
|
||||
|
||||
var_dump($e);
|
||||
|
||||
exit;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue