2015-02-12 01:03:26 -05:00
|
|
|
<?php
|
|
|
|
//********** PLEASE EDIT THE FOLLOWING **********//
|
|
|
|
// Paths and directories must include a trailing slash!!!
|
2015-02-20 02:03:11 -05:00
|
|
|
$yaptc_dirpath = '/usr/share/nginx/html/yaptc/'; // Absolute directory path to the root of this program
|
|
|
|
$yaptc_webpath = 'http://server-ip/yaptc/'; // Absolute URL to the root of this program
|
|
|
|
$yaptc_appname = 'Timecard System'; // Program name to display in title bar
|
|
|
|
$yaptc_company = 'Widgets, Inc.'; // Your company name
|
|
|
|
$yaptc_db = new PDO('mysql:host=localhost;dbname=YOUR_DATABASE;charset=utf8', 'YOUR_USER', 'YOUR_PASSWORD'); // Database connection string
|
|
|
|
$yaptc_adminmsg = ''; // Message will display on all pages!
|
2015-02-23 10:49:32 -05:00
|
|
|
$yaptc_allowadvancedpunch = 'yes'; // Should we allow users to make manual punch entries? set to yes or no
|
2015-02-24 10:37:52 -05:00
|
|
|
$yaptc_min_password = '8'; // Minimum password length
|
2015-02-20 02:03:11 -05:00
|
|
|
|
|
|
|
|
2015-02-18 20:01:47 -05:00
|
|
|
|
2015-02-20 02:03:11 -05:00
|
|
|
|
2015-02-20 05:16:28 -05:00
|
|
|
//********** NO NEED TO EDIT PAST HERE **********//
|
|
|
|
$yaptc_db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); // Advanced PDO handling
|
|
|
|
$yaptc_db->setAttribute(PDO::ATTR_EMULATE_PREPARES, false); // Advanced PDO handling
|
|
|
|
$_SESSION['yaptc_dir'] = $yaptc_dirpath; // Put absolute directory path in session
|
|
|
|
$_SESSION['yaptc_url'] = $yaptc_webpath; // Put absolute url path in session
|
|
|
|
$yaptc_inc = $yaptc_dirpath . 'includes/'; // Concatenate an includes directory path
|
|
|
|
$yaptc_incweb = $yaptc_webpath . 'includes/'; // Concatenate an includes url path
|
|
|
|
$yaptc_lib = $yaptc_dirpath . 'lib/'; // Concatenate a lib directory path
|
|
|
|
$yaptc_libweb = $yaptc_webpath . 'lib/'; // Concatenate a lib url path
|
2015-02-12 01:03:26 -05:00
|
|
|
?>
|