avm99963 | 7099538 | 2020-09-23 01:03:01 +0200 | [diff] [blame^] | 1 | <?php |
| 2 | // core.php - El fitxer més elemental, estimat Watson |
| 3 | |
| 4 | // Get settings |
| 5 | require(__DIR__.'/config.php'); |
| 6 | |
| 7 | // Set composer |
| 8 | require(__DIR__.'/vendor/autoload.php'); |
| 9 | |
| 10 | // Set timezone and locale accordingly |
| 11 | date_default_timezone_set('Europe/Madrid'); |
| 12 | |
| 13 | // Connect to the DB |
| 14 | $con = new PDO('mysql:host='.$conf['db']['host'].';dbname='.$conf['db']['database'].';charset=utf8mb4', $conf['db']['user'], $conf['db']['password']); |
| 15 | |
| 16 | // Session settings |
| 17 | session_set_cookie_params([ |
| 18 | 'lifetime' => 0, |
| 19 | 'path' => ($conf['path'] ?? '/'), |
| 20 | 'httponly' => true |
| 21 | ]); |
| 22 | session_start(); |