. * * config.inc * * Homogram configuration settings. * * @author Daniele Bonini * @copyrights (c) 2021, 2024, 5 Mode */ define('DEBUG', true); define('APP_NAME', "Homogram"); // password: yourpassword // salt: yoursalt define('APP_HASH', ""); define('APP_SPLASH', true); define('APP_PATH', "/var/www/YourWebApp/Public/static"); define('APP_DATA_PATH', "/var/www/YourWebApp/Private/data"); define('APP_SCRIPT_PATH', "/var/www/YourWebApp/Private/scripts"); define('APP_ERROR_PATH', "/var/www/YourWebApp/Private/error"); define('APP_SALT', "yoursalt"); define('APP_REPO_PATH', "/var/www/YourWebApp/Public/static/HGRepo"); define('CMDLINE_VALIDCMDS', "~|privatify|publicify|del|makedir|refresh|openpic|"); $CONFIG = [ 'DEBUG' => true, 'APP' => [ 'NAME' => "Homegram", 'HASH' => "", 'SPLASH' => true, 'PATH' => "/var/www/YourWebApp/Public/static", 'DATA_PATH' => "/var/www/YourWebApp/Private/data", 'SCRIPT_PATH' => "/var/www/YourWebApp/Private/scripts", 'ERROR_PATH' => "/var/www/YourWebApp/Private/error", 'SALT' => "yoursalt", 'REPO_PATH' => "/var/www/YourWebApp/Public/static/HGRepo" ], 'CMDLINE' => [ 'VALIDCMDS' => "~|privatify|publicify|del|makedir|refresh|openpic|" ] ];