17 lines
311 B
PHP
17 lines
311 B
PHP
|
<?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");
|
||
|
|
||
|
error_reporting(E_ALL | E_STRCT);
|