- Overrides
- Changed the
rootdirective in the Caddyfile towebinstead ofpublic - Used
-v $PWD:/appinstead of/app/public - Added
error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICTtophp.iniand used-v $PWD/php.ini:/usr/local/lib/php.inito suppress warnings. Deprecations were still being printed out.
- Changed the
- Observations
- Many warnings like this one:
**Warning**: ini_set(): Session ini settings cannot be changed after headers have already been sent in **/app/web/core/lib/Drupal/Core/DrupalKernel.php** on line **1000** - Many deprecations were printed out, such as:
__Deprecated function__: Creation of dynamic property Drupal\Core\Installer\InstallerKernel::$_serviceId is deprecated in __Drupal\Core\DependencyInjection\ContainerBuilder->set()__ (line __83__ of __/app/web/core/lib/Drupal/Core/DependencyInjection/ContainerBuilder.php__). - Drupal is still not compatible with PHP 8.2: https://www.drupal.org/project/drupal/issues/3283358
- Many warnings like this one:
- FrankenPHP compiles PHP
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # METEOR CORE: | |
| Anywhere: Meteor.isClient | |
| Anywhere: Meteor.isServer | |
| Anywhere: Meteor.startup(func) | |
| Anywhere: Meteor.absoluteUrl([path], [options]) | |
| Anywhere: Meteor.settings | |
| Anywhere: Meteor.release | |