Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-11 10:11:10 +02:00
committed by GitHub
parent 93c556d390
commit ab5402b470
5 changed files with 46 additions and 33 deletions

View File

@ -15,7 +15,7 @@
/**
* Image files directory.
*/
define('IMG_DIR', ROUTE_APP.'img/');
define('FILMS_DIR', ROUTE_APP.'img/films');
/**
* Utf-8 support settings, location (language and country) and time zone.
@ -44,4 +44,9 @@
* @see http://php.net/manual/en/language.types.callable.php
*/
register_shutdown_function(array($app, 'shutdown'));
//Depuración (BORRAR):
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
?>