Mike iLL Kilmer
Mike iLL Kilmer
Not sure if it makes sense to [add composer ](https://stackoverflow.com/questions/46786589/running-composer-install-within-a-dockerfile)and [PHPUnit Polyfills](https://github.com/Yoast/PHPUnit-Polyfills) to the pulled in image, or if the included image (five years old) is out of date. Looking...
This [person's fork of this repo](https://github.com/CBDfx/internel-connector) appears to address the issue by adding [Composer](https://github.com/CBDfx/internel-connector/blob/master/Dockerfile#L19), also a [composer.json file](https://github.com/CBDfx/internel-connector/blob/master/composer.json). I ended up going a [different route altogether](https://stackoverflow.com/a/73960645/2223106).
Thanks for the link. That hadn't crossed my radar yet.
@dmgawel Does this fix work at this point? From your EDIT note above I am gathering not.
Hey thanks @dmgawel I'm almost there. However, `illuminate/view/FileViewFinder.php` is looking for blades in ``` partials.page-headerArray ( [0] => /var/www/html/wp-content/themes/MyTheme/resources/views [1] => /var/www/html/wp-content/themes/MyTheme/resources/views ) ``` If I _copy_ the views directory...
Found it. Update `config/views.php`. 'paths' => [ get_theme_file_path().'/resources/views', get_parent_theme_file_path().'/resources/views', ], Remove `/resources` from the paths.
I'm developing on macOS as well and, when running the BLEmulator, getting: ``` Target of URI doesn't exist: 'package:blemulator_example/example_peripherals/generic_peripheral.dart'. Try creating the file referenced by the URI, or Try using...
I had to first run `flutter packages get`. Then got following message: ``` flutter packages get Running "flutter pub get" in blemulator_flutter... 4.6s Running "flutter pub get" in example... 2,450ms...
I would open up the file referenced in the warning: `/server/path/hidden/wp-content/plugins/bootstrap-4-shortcodes-master/app/Utilities.php` and add a `print_r()` to the `loadHTML` method to print out parameter 2. That way you hopefully see in...
I just discovered [using templates in plugins](https://konstantin.blog/2013/get_template_part-within-shortcodes ) that way and like it a lot. Feels very MVC. > On Mar 30, 2018, at 8:55 AM, Michael W. Delaney wrote:...