You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
379 B
18 lines
379 B
3 years ago
|
<?php
|
||
|
|
||
|
// Debug
|
||
|
ini_set('display_errors', '1');
|
||
|
ini_set('display_startup_errors', '1');
|
||
|
error_reporting(E_ALL);
|
||
|
|
||
|
// Application
|
||
|
define('STEP_BLOCK_LIMIT', 50); // Blocks per query
|
||
|
define('CRAWLER_DEBUG', true); // Debug output
|
||
|
|
||
|
// Database
|
||
|
define('DB_HOST', '127.0.0.1');
|
||
|
define('DB_PORT', '3306');
|
||
|
define('DB_NAME', '');
|
||
|
define('DB_USERNAME', '');
|
||
|
define('DB_PASSWORD', '');
|