. * * config.inc * * Homomm configuration settings. * * @author Daniele Bonini * @copyrights (c) 2021, 2024, 5 Mode */ define('DEBUG', true); define('APP_NAME', "Homomm"); define('APP_SPLASH', true); define('APP_PATH', "/var/www/YourWebApp/Public/static"); 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/Private/Repo"); define('APP_PIC_PATH', "/var/www/YourWebApp/Public/static/hmm-img"); define('APP_SERVER_TIMEZONE', "+2"); define('CMDLINE_VALIDCMDS', "~|sendmsg|refreshbrd|delmsg|delpic|openpic|"); define('HISTORY_MAX_ITEMS', 50); // SMS by using your Twilio account define('SMS_API_URL', ""); // Set here your Account SID define('SMS_USERNAME', ""); // Set here your Auth Token define('SMS_PASSWORD', ""); // Set here the Message Service to send message from.. define('SMS_MESSAGING_SERVICE', ""); // Set here the Message body define('SMS_BODY', "You have a new message on http://homomm.org"); $CONFIG = [ 'DEBUG' => true, 'APP' => [ 'NAME' => "Homomm", 'SPLASH' => true, 'PATH' => "/var/www/YourWebApp/Public/static", 'SCRIPT_PATH' => "/var/www/YourWebApp/Private/scripts", 'ERROR_PATH' => "/var/www/YourWebApp/Private/error", 'SALT' => "yoursalt", 'REPO_PATH' => "/var/www/YourWebApp/Private/Repo", 'PIC_PATH' => "/var/www/YourWebApp/Public/static/hmm-img", 'SERVER_TIMEZONE' => "+2" ], 'AUTH' => [ 'MASTER' => [ 'USERNAME' => "Dan", 'PHONE' => "+160612345567", 'REPO_FOLDER' => "master", 'PIC_FOLDER' => "master", // password: yourpassword // salt: yoursalt 'HASH' => "", 'TIMEZONE' => "+2" ], 'FRIEND_0' => [ 'USERNAME' => "John", 'PHONE' => "+16061234567", 'REPO_FOLDER' => "user", 'PIC_FOLDER' => "user", // password: yourpassword // salt: yoursalt 'HASH' => "", 'TIMEZONE' => "+2" ], 'FRIEND_1' => [ 'USERNAME' => "Nickname", 'PHONE' => "+16061234567", 'REPO_FOLDER' => "user", 'PIC_FOLDER' => "user", // password: yourpassword // salt: yoursalt 'HASH' => "", 'TIMEZONE' => "+2" ], 'FRIEND_2' => [ 'USERNAME' => "Nickname", 'PHONE' => "+16061234567", 'REPO_FOLDER' => "user", 'PIC_FOLDER' => "user", // password: yourpassword // salt: yoursalt 'HASH' => "", 'TIMEZONE' => "+2" ], ], 'CMDLINE' => [ 'VALIDCMDS' => "~|sendmsg|refreshbrd|delmsg|delpic|openpic|" ], 'HISTORY' => [ 'MAX_ITEMS' => 50 ], 'SMS' => [ 'API_URL' => "", 'USERNAME' => "", 'PASSWORD' => "", 'MESSAGING_SERVICE' => "", 'BODY' => "You have a new message on http://homomm.org" ] ]; $LOCALE = [ 'Monday' => "", 'Tuesday' => "", 'Wednesday' => "", 'Thursday' => "", 'Friday' => "", 'Saturday' => "", 'Sunday' => "", 'January' => "", 'February' => "", 'March' => "", 'April' => "", 'May' => "", 'June' => "", 'July' => "", 'August' => "", 'September' => "", 'October' => "", 'November' => "", 'December' => "" ]; $EMOTICONS = [ '[:-)]' => "🙂", '[:-p]' => "🤑", '[:c)]' => "😀", '[;-)]' => "😉", '[:-J]' => "😏", '[;-P]' => "😜", '[:-/]' => "😕", '[@-)]' => "😓", '[B-)]' => "😎", '[=]]' => '😃', '[=)]' => "😄", '[*-)]' => "😍" ];