Page 24 of 36,922, showing 100 records out of 3,692,143 total, starting on record 2,301, ending on 2,400
# | Username | Text | |
---|---|---|---|
# | Jun 23rd 2021, 20:16 | steinkel | |
# | Jun 23rd 2021, 20:16 | kevin.pfeifer | |
# | Jun 23rd 2021, 20:16 | steinkel | |
# | Jun 23rd 2021, 20:15 | steinkel | |
# | Jun 23rd 2021, 20:14 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:14 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:14 | steinkel | |
# | Jun 23rd 2021, 20:13 | steinkel | |
# | Jun 23rd 2021, 20:13 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:12 | steinkel | |
# | Jun 23rd 2021, 20:12 | steinkel | |
# | Jun 23rd 2021, 20:12 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:12 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:11 | steinkel | |
# | Jun 23rd 2021, 20:11 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:10 | steinkel | |
# | Jun 23rd 2021, 20:10 | steinkel | |
# | Jun 23rd 2021, 20:09 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:04 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:02 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 20:02 | kevin.pfeifer | |
# | Jun 23rd 2021, 20:00 | kevin.pfeifer | |
# | Jun 23rd 2021, 19:56 | sebastiansperandio093 | |
# | Jun 23rd 2021, 19:55 | sebastiansperandio093 | |
# | Jun 23rd 2021, 19:55 | sebastiansperandio093 | |
# | Jun 23rd 2021, 19:54 | sebastiansperandio093 | |
# | Jun 23rd 2021, 19:52 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 19:52 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 19:52 | tyler.adam.lazenby | |
# | Jun 23rd 2021, 15:01 | joacir.santos | |
# | Jun 23rd 2021, 14:52 | joepferguson | |
# | Jun 23rd 2021, 14:46 | joepferguson | |
# | Jun 23rd 2021, 14:44 | dereuromark | |
# | Jun 23rd 2021, 14:42 | chris301 | |
# | Jun 23rd 2021, 14:39 | ndm | |
# | Jun 23rd 2021, 14:39 | amanda.goff | |
# | Jun 23rd 2021, 14:39 | ndm | |
# | Jun 23rd 2021, 14:39 | slackebot | saved, ie the decoded value returned from your getter will land in the database. Basically your code is a complex noop. |
# | Jun 23rd 2021, 14:38 | joacir.santos | |
# | Jun 23rd 2021, 14:34 | jamison508 | |
# | Jun 23rd 2021, 14:33 | joacir.santos | |
# | Jun 23rd 2021, 14:30 | joacir.santos | |
# | Jun 23rd 2021, 14:26 | jamison508 | |
# | Jun 23rd 2021, 14:25 | jamison508 | |
# | Jun 23rd 2021, 14:24 | kevin.pfeifer | |
# | Jun 23rd 2021, 14:23 | jamison508 | |
# | Jun 23rd 2021, 14:22 | joacir.santos | |
# | Jun 23rd 2021, 14:22 | slackebot | $this->Users->get(1, ['fields' => ['id', 'name']]); $this->assertEquals('joacir', $saved->name); // success $this->assertEquals('joacir', $user->name); // fail, why???? I think it suppose to be saved in base64 ``` |
# | Jun 23rd 2021, 14:21 | martin | |
# | Jun 23rd 2021, 14:17 | amanda.goff | |
# | Jun 23rd 2021, 11:32 | drashti.b.patel | |
# | Jun 23rd 2021, 09:42 | drashti.b.patel | |
# | Jun 23rd 2021, 09:35 | drashti.b.patel | |
# | Jun 23rd 2021, 09:15 | slackebot | Configure::read('Config.CDN_IMG_URL')); Configure::write('App.cssBaseUrl', Configure::read('Config.CDN_CSS_URL')); Configure::write('App.jsBaseUrl', Configure::read('Config.CDN_JS_URL')); $transactionListener = new TransactionListener(); EventManager::instance()->on($transactionListener);``` |
# | Jun 23rd 2021, 09:15 | slackebot | correctly pluralize or singularize * table, model, controller names or whatever other string is passed to the * inflection functions. */ //Inflector::rules('plural', ['/^(inflect)or$/i' => '\1ables']); //Inflector::rules('irregular', ['red' => 'redlings']); //Inflector::rules('uninflected', ['dontinflectme']); //Inflector::rules('transliteration', ['/å/' => 'aa']); Configure::write('App.imageBaseUrl', |
# | Jun 23rd 2021, 09:15 | slackebot | enables the automatic conversion of * locale specific date formats. For details see * @link https://book.cakephp.org/3.0/en/core-libraries/internationalization-and-localization.html#parsing-localized-datetime-data */ Type::build('time') ->useImmutable(); Type::build('date') ->useImmutable(); Type::build('datetime') ->useImmutable(); Type::build('timestamp') ->useImmutable(); /* * Custom Inflector rules, can be set to |
# | Jun 23rd 2021, 09:15 | slackebot | ServerRequest::addDetector('mobile', function ($request) { $detector = new \Detection\MobileDetect(); return $detector->isMobile(); }); ServerRequest::addDetector('tablet', function ($request) { $detector = new \Detection\MobileDetect(); return $detector->isTablet(); }); /* * Enable immutable time objects in the ORM. * * You can enable default locale format parsing by adding calls * to `useLocaleParser()`. This |
# | Jun 23rd 2021, 09:15 | slackebot | Email::setConfig(Configure::consume('Email')); Log::setConfig(Configure::consume('Log')); Security::setSalt(Configure::consume('Security.salt')); /* * The default crypto extension in 3.0 is OpenSSL. * If you are migrating from 2.x uncomment this code to * use a more compatible Mcrypt based implementation */ //Security::engine(new \Cake\Utility\Crypto\Mcrypt()); /* * Setup detectors for mobile and tablet. */ |
# | Jun 23rd 2021, 09:15 | slackebot | risks * and decreased performance on each request. The purpose of the .env file is to emulate * the presence of the environment variables like they would be present in production. */ // if (!env('APP_NAME') andand file_exists(CONFIG . '.env')) { // $dotenv = new \josegonzalez\Dotenv\Loader([CONFIG . '.env']); // $dotenv->parse() // ->putenv() // ->toEnv() // ->toServer(); // } /* * Read configuration file |
# | Jun 23rd 2021, 09:15 | slackebot | and inject configuration into various * CakePHP classes. * * By default there is only one configuration file. It is often a good * idea to create multiple configuration files, and separate the configuration * that changes from configuration that does not. This makes deployment simpler. */ try { Configure::config('default', new PhpConfig()); Configure::load('app', 'default', false); } catch (\Exception $e) { |
# | Jun 23rd 2021, 09:15 | slackebot | exit($e->getMessage() . "\n"); } /* * Load an environment local configuration file. * You can use a file like app_local.php to provide local overrides to your * shared configuration. */ //Configure::load('app_local', 'default'); /* * When debug = true the metadata cache should only last * for a short time. */ if (Configure::read('debug')) { Configure::write('Cache._cake_model_.duration', '+1 years'); |
# | Jun 23rd 2021, 09:15 | slackebot | Configure::write('Cache._cake_core_.duration', '+1 years'); // disable router cache during development Configure::write('Cache._cake_routes_.duration', '+1 years'); } /* * Set the default server timezone. Using UTC makes time calculations / conversions easier. * Check http://php.net/manual/en/timezones.php for list of valid timezone strings. */ date_default_timezone_set('UTC'); /* * Configure the mbstring extension to use the |
# | Jun 23rd 2021, 09:15 | slackebot | correct encoding. */ mb_internal_encoding(Configure::read('App.encoding')); /* * Set the default locale. This controls how dates, number and currency is * formatted and sets the default language to use for translations. */ ini_set('intl.default_locale', Configure::read('App.defaultLocale')); /* * Register application error and exception handlers. */ $isCli = PHP_SAPI === 'cli'; if ($isCli) { (new |
# | Jun 23rd 2021, 09:15 | slackebot | ConsoleErrorHandler(Configure::read('Error')))->register(); } else { (new ErrorHandler(Configure::read('Error')))->register(); } /* * Include the CLI bootstrap overrides. */ if ($isCli) { require __DIR__ . '/bootstrap_cli.php'; } /* * Set the full base URL. * This URL is used as the base of all absolute links. * * If you define fullBaseUrl in your config file you can remove this. */ if (!Configure::read('App.fullBaseUrl')) |
# | Jun 23rd 2021, 09:15 | slackebot | { $s = null; if (env('HTTPS')) { $s = 's'; } $httpHost = env('HTTP_HOST'); if (isset($httpHost)) { Configure::write('App.fullBaseUrl', 'http' . $s . '://' . $httpHost); } unset($httpHost, $s); } Cache::setConfig(Configure::consume('Cache')); ConnectionManager::setConfig(Configure::consume('Datasources')); TransportFactory::setConfig(Configure::consume('EmailTransport')); |
# | Jun 23rd 2021, 09:15 | drashti.b.patel | |
# | Jun 23rd 2021, 09:15 | slackebot | Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 0.10.8 * @license https://opensource.org/licenses/mit-license.php MIT License */ /* * Configure paths required to find CakePHP + general filepath constants */ require __DIR__ . '/paths.php'; /* * Bootstrap CakePHP. * * Does the various bits of setup that CakePHP needs to do. * This includes: * * - |
# | Jun 23rd 2021, 09:15 | slackebot | Registering the CakePHP autoloader. * - Setting the default application paths. */ require CORE_PATH . 'config' . DS . 'bootstrap.php'; use Cake\Cache\Cache; use Cake\Console\ConsoleErrorHandler; use Cake\Core\Configure; use Cake\Core\Configure\Engine\PhpConfig; use Cake\Core\Plugin; use Cake\Database\Type; use Cake\Datasource\ConnectionManager; use Cake\Error\ErrorHandler; use Cake\Http\ServerRequest; use Cake\Log\Log; use |
# | Jun 23rd 2021, 09:15 | slackebot | Cake\Mailer\Email; use Cake\Mailer\TransportFactory; use Cake\Utility\Inflector; use Cake\Utility\Security; use Cake\Event\EventManager; use App\Event\TransactionListener; /** * Uncomment block of code below if you want to use `.env` file during development. * You should copy `config/.env.default to `config/.env` and set/modify the * variables as required. * * It is HIGHLY discouraged to use a .env file in production, due to security |
# | Jun 23rd 2021, 09:06 | a.vanniel | |
# | Jun 23rd 2021, 08:46 | drashti.b.patel | |
# | Jun 23rd 2021, 08:46 | slackebot | http://cakephp.org CakePHP(tm) Project * @since 3.0.0 * @license MIT License (http://www.opensource.org/licenses/mit-license.php) */ /** * Use the DS to separate the directories in other defines */ if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); } /** * These defines should only be edited if you have cake installed in * a directory layout other than the way it is distributed. * When using custom |
# | Jun 23rd 2021, 08:46 | slackebot | settings be sure to use the DS and do not add a trailing DS. */ /** * The full path to the directory which holds "src", WITHOUT a trailing DS. */ define('ROOT', dirname(__DIR__)); /** * The actual directory name for the application directory. Normally * named 'src'. */ define('APP_DIR', 'src'); /** * Path to the application's directory. */ define('APP', ROOT . DS . APP_DIR . DS); /** * Path to the config directory. */ |
# | Jun 23rd 2021, 08:46 | slackebot | define('CONFIG', ROOT . DS . 'config' . DS); /** * File path to the webroot directory. */ define('WWW_ROOT', ROOT . DS . 'webroot' . DS); /** * Path to the tests directory. */ define('TESTS', ROOT . DS . 'tests' . DS); /** * Path to the temporary files directory. */ define('TMP', ROOT . DS . 'tmp' . DS); /** * Path to the logs directory. */ define('LOGS', ROOT . DS . 'logs' . DS); /** * Path to the cache files directory. It |
# | Jun 23rd 2021, 08:46 | slackebot | can be shared between hosts in a multi-server setup. */ define('CACHE', TMP . 'cache' . DS); /** * The absolute path to the "cake" directory, WITHOUT a trailing DS. * * CakePHP should always be installed with composer, so look there. */ define('CAKE_CORE_INCLUDE_PATH', ROOT . DS . 'vendor' . DS . 'cakephp' . DS . 'cakephp'); /** * Path to the cake directory. */ define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS); define('CAKE', |
# | Jun 23rd 2021, 08:46 | slackebot | CORE_PATH . 'src' . DS);``` |
# | Jun 23rd 2021, 08:26 | neon1024 | |
# | Jun 23rd 2021, 08:26 | neon1024 | |
# | Jun 23rd 2021, 08:23 | drashti.b.patel | |
# | Jun 23rd 2021, 08:23 | slackebot | (include_path='.:/usr/share/php') in /var/www/html/project/ src/Controller/Component/MyComponent.php on line 28``` When I tried to check with the phpstan plugin also showing same error. Please let me know if anyone has any idea about it. Thanks. |
# | Jun 23rd 2021, 02:03 | kevin.pfeifer | |
# | Jun 22nd 2021, 23:04 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:53 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:26 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:25 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:25 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:24 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:23 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:20 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:20 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:20 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:20 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:13 | kevin.pfeifer | |
# | Jun 22nd 2021, 22:07 | kevin.pfeifer | |
# | Jun 22nd 2021, 22:03 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 22:03 | tyler.adam.lazenby | |
# | Jun 22nd 2021, 20:15 | umer936 | |
# | Jun 22nd 2021, 19:04 | admad | |
# | Jun 22nd 2021, 18:20 | umer936 | |
# | Jun 22nd 2021, 18:20 | slackebot1 | if we make the "template" into a vendor app and composer include it into each "Site A" "Site B" app, correct? Or does the "template" website work better as it's own app and the Plugin "Site A" "Site B" s work better as git submodules and we solely clone the one needed for that build? |