<?php use Cake\Core\Configure; /** * ------------------------------------------------------------------------------------------------------------------ * Application Configure * ------------------------------------------------------------------------------------------------------------------ */ /** * * Database Configure * @author sarawutt.b */ Configure::write('DATABASE.HOST', '122.155.223.38'); Configure::write('DATABASE.NAME', 'connect06'); Configure::write('DATABASE.ROLE', 'connect06'); Configure::write('DATABASE.PASSWORD', 'c0nn@6'); Configure::write('DATABASE.PORT', '5432'); Configure::write('DATABASE.DRIVER', 'Cake\Database\Driver\Postgres'); /** * @var Connect API Testing server */ //Configure::write('API_SERVER', 'http://connect-api-uat-connect-pakgon'); /** * @var Connect API Production Server */ Configure::write('API_SERVER', 'http://connect05.pakgon.com/api'); /** * Core Currency format * @author sarawutt.b */ Configure::write('CORE.CURRENCY', '฿'); /** * * Document type * @author sarawutt.b */ Configure::write('CORE.DOCUMENT.ALL', 'application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel,image/gif,image/jpeg,image/png'); Configure::write('CORE.DOCUMENT.IMG', 'image/gif,image/jpeg,image/png'); Configure::write('CORE.DOCUMENT.PDF', 'application/pdf'); Configure::write('CORE.DOCUMENT.OFFICE', 'application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel'); Configure::write('CORE.DOCUMENT.IMG_PDF', 'application/pdf,image/gif,image/jpeg,image/png'); Configure::write('CORE.DOCUMENT.OFFICE_PDF', 'application/pdf,application/msword,application/vnd.openxmlformats-officedocument.wordprocessingml.document,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet,application/vnd.ms-excel'); /** * @var Configuration for multiple language * @author sarawutt.b */ //Configure::write('Config.language', 'tha'); Configure::write('CORE.LANGUAGE', 'tha'); /** * @var Configuration for pagination on cake render in paginate of each page * @author sarawutt.b */ Configure::write('PAGINATION.PREV.TEXT', 'Prev'); Configure::write('PAGINATION.NEXT.TEXT', 'Next'); Configure::write('PAGINATION.NEXT.CLASS', 'next disabled'); Configure::write('PAGINATION.PREV.CLASS', 'prev disabled'); Configure::write('PAGINATION.MODULE', 9); Configure::write('PAGINATION.SEPARATE', ''); Configure::write('PAGINATION.LIMIT', 20); /** * * Application Configure * @author sarawutt.b */ Configure::write('APP.NAME', 'CAKEPHP DEMO APPLICATION'); Configure::write('APP.VERSION', '3.5.4'); /** * @var Configuration for production deployment if is deploy time make this to TRUE * @author sarawutt.b */ Configure::write('APP.DEPLOY_TO_PRODUCTION_TIME', false); /** * @var Configuration not found data language * @author sarawutt.b */ Configure::write('APP.DISPLAY.NO_RESULT', 'Result Not Found'); return [ /** * Debug Level: * * Production Mode: * false: No error messages, errors, or warnings shown. * * Development Mode: * true: Errors and warnings shown. */ 'debug' => filter_var(env('DEBUG', true), FILTER_VALIDATE_BOOLEAN), /** * Configure basic information about the application. * * - namespace - The namespace to find app classes under. * - defaultLocale - The default locale for translation, formatting currencies and numbers, date and time. * - encoding - The encoding used for HTML + database connections. * - base - The base directory the app resides in. If false this * will be auto detected. * - dir - Name of app directory. * - webroot - The webroot directory. * - wwwRoot - The file path to webroot. * - baseUrl - To configure CakePHP to *not* use mod_rewrite and to * use CakePHP pretty URLs, remove these .htaccess * files: * /.htaccess * /webroot/.htaccess * And uncomment the baseUrl key below. * - fullBaseUrl - A base URL to use for absolute links. * - imageBaseUrl - Web path to the public images directory under webroot. * - cssBaseUrl - Web path to the public css directory under webroot. * - jsBaseUrl - Web path to the public js directory under webroot. * - paths - Configure paths for non class based resources. Supports the * `plugins`, `templates`, `locales` subkeys, which allow the definition of * paths for plugins, view templates and locale files respectively. */ 'App' => [ 'namespace' => 'App', 'encoding' => env('APP_ENCODING', 'UTF-8'), 'defaultLocale' => env('APP_DEFAULT_LOCALE', 'en_US'), 'base' => false, 'dir' => 'src', 'webroot' => 'webroot', 'wwwRoot' => WWW_ROOT, // 'baseUrl' => env('SCRIPT_NAME'), 'fullBaseUrl' => false, 'imageBaseUrl' => 'img/', 'cssBaseUrl' => 'css/', 'jsBaseUrl' => 'js/', 'paths' => [ 'plugins' => [ROOT . DS . 'plugins' . DS], 'templates' => [APP . 'Template' . DS], 'locales' => [APP . 'Locale' . DS], ], ], /** * Security and encryption configuration * * - salt - A random string used in security hashing methods. * The salt value is also used as the encryption key. * You should treat it as extremely sensitive data. */ 'Security' => [ 'salt' => env('SECURITY_SALT', '34f67849d2c770a24d70fcffa3c44f32fd532e338060fbeb5a9de575b4e4ea17'), ], /** * Apply timestamps with the last modified time to static assets (js, css, images). * Will append a querystring parameter containing the time the file was modified. * This is useful for busting browser caches. * * Set to true to apply timestamps when debug is true. Set to 'force' to always * enable timestamping regardless of debug value. */ 'Asset' => [ // 'timestamp' => true, ], /** * Configure the cache adapters. */ 'Cache' => [ 'default' => [ 'className' => 'File', 'path' => CACHE, 'url' => env('CACHE_DEFAULT_URL', null), ], /** * Configure the cache used for general framework caching. * Translation cache files are stored with this configuration. * Duration will be set to '+2 minutes' in bootstrap.php when debug = true * If you set 'className' => 'Null' core cache will be disabled. */ '_cake_core_' => [ 'className' => 'File', 'prefix' => 'myapp_cake_core_', 'path' => CACHE . 'persistent/', 'serialize' => true, 'duration' => '+1 years', 'url' => env('CACHE_CAKECORE_URL', null), ], /** * Configure the cache for model and datasource caches. This cache * configuration is used to store schema descriptions, and table listings * in connections. * Duration will be set to '+2 minutes' in bootstrap.php when debug = true */ '_cake_model_' => [ 'className' => 'File', 'prefix' => 'myapp_cake_model_', 'path' => CACHE . 'models/', 'serialize' => true, 'duration' => '+1 years', 'url' => env('CACHE_CAKEMODEL_URL', null), ], ], /** * Configure the Error and Exception handlers used by your application. * * By default errors are displayed using Debugger, when debug is true and logged * by Cake\Log\Log when debug is false. * * In CLI environments exceptions will be printed to stderr with a backtrace. * In web environments an HTML page will be displayed for the exception. * With debug true, framework errors like Missing Controller will be displayed. * When debug is false, framework errors will be coerced into generic HTTP errors. * * Options: * * - `errorLevel` - int - The level of errors you are interested in capturing. * - `trace` - boolean - Whether or not backtraces should be included in * logged errors/exceptions. * - `log` - boolean - Whether or not you want exceptions logged. * - `exceptionRenderer` - string - The class responsible for rendering * uncaught exceptions. If you choose a custom class you should place * the file for that class in src/Error. This class needs to implement a * render method. * - `skipLog` - array - List of exceptions to skip for logging. Exceptions that * extend one of the listed exceptions will also be skipped for logging. * E.g.: * `'skipLog' => ['Cake\Network\Exception\NotFoundException', 'Cake\Network\Exception\UnauthorizedException']` * - `extraFatalErrorMemory` - int - The number of megabytes to increase * the memory limit by when a fatal error is encountered. This allows * breathing room to complete logging or error handling. */ 'Error' => [ 'errorLevel' => E_ALL, 'exceptionRenderer' => 'Cake\Error\ExceptionRenderer', 'skipLog' => [], 'log' => true, 'trace' => true, ], /** * Email configuration. * * By defining transports separately from delivery profiles you can easily * re-use transport configuration across multiple profiles. * * You can specify multiple configurations for production, development and * testing. * * Each transport needs a `className`. Valid options are as follows: * * Mail - Send using PHP mail function * Smtp - Send using SMTP * Debug - Do not send the email, just return the result * * You can add custom transports (or override existing transports) by adding the * appropriate file to src/Mailer/Transport. Transports should be named * 'YourTransport.php', where 'Your' is the name of the transport. */ 'EmailTransport' => [ 'default' => [ 'className' => 'Mail', // The following keys are used in SMTP transports 'host' => 'localhost', 'port' => 25, 'timeout' => 30, 'username' => 'user', 'password' => 'secret', 'client' => null, 'tls' => null, 'url' => env('EMAIL_TRANSPORT_DEFAULT_URL', null), ], 'gmail'=> [ 'className' => 'Smtp', 'host' => 'ssl://smtp.gmail.com', 'port' => 465, 'username' => 'developer@pakgon.com', //your gmail address 'password' => 'pakgon#pwd', //your gmail password 'log' => true, 'context' => [ 'ssl' => [ 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ] ] ], ], /** * Email delivery profiles * * Delivery profiles allow you to predefine various properties about email * messages from your application and give the settings a name. This saves * duplication across your application and makes maintenance and development * easier. Each profile accepts a number of keys. See `Cake\Mailer\Email` * for more information. */ 'Email' => [ 'default' => [ 'transport' => 'default', 'from' => 'you@localhost', 'charset' => 'utf-8', 'headerCharset' => 'utf-8', ] ], /** * Connection information used by the ORM to connect * to your application's datastores. * Do not use periods in database name - it may lead to error. * See https://github.com/cakephp/cakephp/issues/6471 for details. * Drivers include Mysql Postgres Sqlite Sqlserver * See vendor\cakephp\cakephp\src\Database\Driver for complete list */ 'Datasources' => [ 'default' => [ 'className' => 'Cake\Database\Connection', 'driver' => Configure::read('DATABASE.DRIVER'), 'persistent' => false, 'host' => Configure::read('DATABASE.HOST'), 'port' => Configure::read('DATABASE.PORT'), 'username' => Configure::read('DATABASE.ROLE'), 'password' => Configure::read('DATABASE.PASSWORD'), 'database' => Configure::read('DATABASE.NAME'), 'schema' => 'core', 'encoding' => 'utf8', 'timezone' => Configure::read('CORE.DEFAULT_TIMEZONE'), 'flags' => [], 'cacheMetadata' => true, 'log' => false, 'quoteIdentifiers' => false, 'url' => env('DATABASE_URL', null), ], 'core' => [ 'className' => 'Cake\Database\Connection', 'driver' => Configure::read('DATABASE.DRIVER'), 'persistent' => false, 'host' => Configure::read('DATABASE.HOST'), 'port' => Configure::read('DATABASE.PORT'), 'username' => Configure::read('DATABASE.ROLE'), 'password' => Configure::read('DATABASE.PASSWORD'), 'database' => Configure::read('DATABASE.NAME'), 'schema' => 'core', 'encoding' => 'utf8', 'timezone' => Configure::read('CORE.DEFAULT_TIMEZONE'), 'flags' => [], 'cacheMetadata' => true, 'log' => false, 'quoteIdentifiers' => false, 'url' => env('DATABASE_URL', null), ], 'db_master' => [ 'className' => 'Cake\Database\Connection', 'driver' => Configure::read('DATABASE.DRIVER'), 'persistent' => false, 'host' => Configure::read('DATABASE.HOST'), 'port' => Configure::read('DATABASE.PORT'), 'username' => Configure::read('DATABASE.ROLE'), 'password' => Configure::read('DATABASE.PASSWORD'), 'database' => Configure::read('DATABASE.NAME'), 'schema' => 'master', 'encoding' => 'utf8', 'timezone' => Configure::read('CORE.DEFAULT_TIMEZONE'), 'flags' => [], 'cacheMetadata' => true, 'log' => false, 'quoteIdentifiers' => false, 'url' => env('DATABASE_URL', null), ], 'db_education' => [ 'className' => 'Cake\Database\Connection', 'driver' => Configure::read('DATABASE.DRIVER'), 'persistent' => false, 'host' => Configure::read('DATABASE.HOST'), 'port' => Configure::read('DATABASE.PORT'), 'username' => Configure::read('DATABASE.ROLE'), 'password' => Configure::read('DATABASE.PASSWORD'), 'database' => Configure::read('DATABASE.NAME'), 'schema' => 'education', 'encoding' => 'utf8', 'timezone' => Configure::read('CORE.DEFAULT_TIMEZONE'), 'flags' => [], 'cacheMetadata' => true, 'log' => false, 'quoteIdentifiers' => false, 'url' => env('DATABASE_URL', null), ], /** * The test connection is used during the test suite. */ 'test' => [ 'className' => 'Cake\Database\Connection', 'driver' => 'Cake\Database\Driver\Mysql', 'persistent' => false, 'host' => 'localhost', //'port' => 'non_standard_port_number', 'username' => 'my_app', 'password' => 'secret', 'database' => 'test_myapp', 'encoding' => 'utf8', 'timezone' => 'UTC', 'cacheMetadata' => true, 'quoteIdentifiers' => false, 'log' => false, //'init' => ['SET GLOBAL innodb_stats_on_metadata = 0'], 'url' => env('DATABASE_TEST_URL', null), ], 'db_temp' => [ 'className' => 'Cake\Database\Connection', 'driver' => Configure::read('DATABASE.DRIVER'), 'persistent' => false, 'host' => Configure::read('DATABASE.HOST'), 'port' => Configure::read('DATABASE.PORT'), 'username' => Configure::read('DATABASE.ROLE'), 'password' => Configure::read('DATABASE.PASSWORD'), 'database' => Configure::read('DATABASE.NAME'), 'encoding' => 'utf8', 'schema' => 'temp', 'timezone' => Configure::read('CORE.DEFAULT_TIMEZONE'), 'cacheMetadata' => true, 'quoteIdentifiers' => false, 'log' => false, //'init' => ['SET GLOBAL innodb_stats_on_metadata = 0'], 'url' => env('DATABASE_TEST_URL', null), ], ], /** * Configures logging options */ 'Log' => [ 'debug' => [ 'className' => 'Cake\Log\Engine\FileLog', 'path' => LOGS, 'file' => 'debug', 'levels' => ['notice', 'info', 'debug'], 'url' => env('LOG_DEBUG_URL', null), ], 'error' => [ 'className' => 'Cake\Log\Engine\FileLog', 'path' => LOGS, 'file' => 'error', 'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'], 'url' => env('LOG_ERROR_URL', null), ], ], /** * Session configuration. * * Contains an array of settings to use for session configuration. The * `defaults` key is used to define a default preset to use for sessions, any * settings declared here will override the settings of the default config. * * ## Options * * - `cookie` - The name of the cookie to use. Defaults to 'CAKEPHP'. Avoid using `.` in cookie names, * as PHP will drop sessions from cookies with `.` in the name. * - `cookiePath` - The url path for which session cookie is set. Maps to the * `session.cookie_path` php.ini config. Defaults to base path of app. * - `timeout` - The time in minutes the session should be valid for. * Pass 0 to disable checking timeout. * Please note that php.ini's session.gc_maxlifetime must be equal to or greater * than the largest Session['timeout'] in all served websites for it to have the * desired effect. * - `defaults` - The default configuration set to use as a basis for your session. * There are four built-in options: php, cake, cache, database. * - `handler` - Can be used to enable a custom session handler. Expects an * array with at least the `engine` key, being the name of the Session engine * class to use for managing the session. CakePHP bundles the `CacheSession` * and `DatabaseSession` engines. * - `ini` - An associative array of additional ini values to set. * * The built-in `defaults` options are: * * - 'php' - Uses settings defined in your php.ini. * - 'cake' - Saves session files in CakePHP's /tmp directory. * - 'database' - Uses CakePHP's database sessions. * - 'cache' - Use the Cache class to save sessions. * * To define a custom session handler, save it at src/Network/Session/<name>.php. * Make sure the class implements PHP's `SessionHandlerInterface` and set * Session.handler to <name> * * To use database sessions, load the SQL file located at config/schema/sessions.sql */ 'Session' => [ 'defaults' => 'php', 'ini' => [ 'session.cookie_path' => '/', 'session.cookie_domain' => '.pakgon.com' ] ], 'OAuth2Client' => [ 'routes' => [ 'base_uri' => 'http://oauth-uat.connect.pakgon.com', 'access_token_path' => '/oauth', 'refresh_token_path' => '/oauth/access_token', ], 'keys' => [ 'client_id' => 'NWFmYTdjYzA3OTI4M2Jj', 'client_secret' => '2cf5e8f82bfaa9971e8af9ed06c23d94ef1326ba' ] ], 'Muffin/OAuth2', [ 'providers' => [ 'generic' => [ 'className' => 'League\OAuth2\Client\Provider\GenericProvider', // all options defined here are passed to the provider's constructor 'options' => [ 'clientId' => 'NWFmYTdjYzA3OTI4M2Jj', 'clientSecret' => '2cf5e8f82bfaa9971e8af9ed06c23d94ef1326ba', ], 'mapFields' => [ 'username' => 'login', // maps the app's username to github's login ], // ... add here the usual AuthComponent configuration if needed like fields, etc. ], ], ], 'OAUTH2_PROVIDER' => [ 'URL' => 'http://oauth-uat.connect.pakgon.com', 'CLIENT_ID' => 'NWFmYTdjYzA3OTI4M2Jj', 'CLIENT_SECRET' => '2cf5e8f82bfaa9971e8af9ed06c23d94ef1326ba', 'REDIRECT_URI' => 'http://commu-uat.connect.pakgon.com/home/callback', 'ACCESS_TOKEN_URL' => 'http://oauth-uat.connect.pakgon.com/oauth/access_token.json', 'REFRESH_TOKEN_URL' => 'xxx' ], 'Config' => [ 'apiCore' => [ 'createAccount' => Configure::read('API_SERVER') . '/Signups', //Signup 'verifyPinCode' => Configure::read('API_SERVER') . '/Signups/verify', //PicCode 'signin' => Configure::read('API_SERVER') . '/Signins', //Signin 'changePassword' => Configure::read('API_SERVER') . '/Profiles/changePassword', //ChangePassword 'forgotPassword' => Configure::read('API_SERVER') . '/Profiles/forgetPassword', //ForgotPassword 'profile' => Configure::read('API_SERVER') . '/Profiles', //Profile 'connectProfile' => Configure::read('API_SERVER') . '/Connects/profile', //Profile 'Contact' => Configure::read('API_SERVER') . '/Contacts', //Contacts ], 'apiCommunication' => [ 'getCategoriesHome' => Configure::read('API_SERVER') . '/communication/Api/getCategoriesHome.json', 'getNewsHome' => Configure::read('API_SERVER') . '/communication/Api/getNewsHome.json', 'getNotification' => Configure::read('API_SERVER') . '/Notifications/push', 'getNotificationType' => Configure::read('API_SERVER') . '/communication/Api/getNotificationType.json', 'getNotificationMessage' => Configure::read('API_SERVER') . '/communication/Api/getNotificationMessage.json', 'updateReadStatus' => Configure::read('API_SERVER') . '/communication/Api/updateReadStatus.json', 'setNotificationMessage' => Configure::read('API_SERVER') . '/communication/Api/setNotificationMessage.json', 'getNewsDetail' => Configure::read('API_SERVER') . '/communication/Api/getNewsDetail.json', 'notification' => Configure::read('API_SERVER') . '/communication/Api/getNotificationType.json', ] ], 'RedirectApplicationURL' => 'http://commu-uat.connect.pakgon.com' ];