2020-09-14 20:22:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This file currently only exists to set the path for files.
|
|
|
|
*
|
|
|
|
* This will be used for more!
|
|
|
|
* Namely, a database connection.
|
|
|
|
*/
|
|
|
|
|
|
|
|
$config = array(
|
|
|
|
"images" => "./photos/",
|
|
|
|
"thumbs" => "./backend/thumbs/"
|
|
|
|
);
|
|
|
|
|
|
|
|
ini_set("error_reporting", "true");
|
|
|
|
|
2020-10-08 06:04:46 +00:00
|
|
|
error_reporting(E_ALL | E_STRICT);
|