| 12345678910111213 |
- <?php
- // PackIt – database configuration
- // Place this file ONE directory ABOVE the web-root (e.g. /var/www/config.php)
- // so it is never served directly by the web server.
- $host = 'localhost';
- $dbname = 'packit';
- $username = 'packer';
- $password = 'DEbWX9AHkzAgaNdLC0Qj605grG';
- $charset = 'utf8mb4';
- // Admin session secret – change to any random string
- define('ADMIN_SESSION_SECRET', 'fdgdffrsgjsjsrttdc4rtjuzi8edetjh');
|