initial commit
This commit is contained in:
commit
1cc4bf3572
254 changed files with 63622 additions and 0 deletions
htdocs/includes
36
htdocs/includes/config.inc.php.example
Normal file
36
htdocs/includes/config.inc.php.example
Normal file
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
/* Database-Connection */
|
||||
|
||||
// Data Source Name.
|
||||
define('DB_DSN', 'pgsql:host=localhost dbname=feedizer');
|
||||
|
||||
// Username for DB connection
|
||||
define('DB_USER', 'feedizer');
|
||||
|
||||
// Password for DB connection
|
||||
define('DB_PASS', '');
|
||||
|
||||
define('DB_OPTIONS', array(
|
||||
// Make a persistent connection
|
||||
PDO::ATTR_PERSISTENT => true,
|
||||
));
|
||||
|
||||
|
||||
/* Logging */
|
||||
|
||||
// Send errors to stdout?
|
||||
ini_set('display_errors', 0);
|
||||
|
||||
// What to report?
|
||||
error_reporting(E_ALL);
|
||||
|
||||
|
||||
/* Admin user */
|
||||
|
||||
#define('ADMIN_NAME', 'fanir');
|
||||
#define('ADMIN_PASS', '');
|
||||
|
||||
/* Crawler */
|
||||
|
||||
define('CRAWLER_LOG_FILE', BASE_PATH . 'logs/crawl.log');
|
Loading…
Add table
Add a link
Reference in a new issue