Tim Kelty

Results 332 comments of Tim Kelty

@cmalven my bad, you need a leading slash: ``` $this->run('/feed-me/feeds/queue', [1, 2, 3]) ```

@cmalven try an array with a single, comma-separated value: ``` class MyController extends yii\console\Controller { public function actionIndex() { return $this->run('/feed-me/feeds/queue', ['1,2,3']); } } ``` Seems to be working over...

Ah, yep. `$this->run` assumes calling from a console controller. > because I'm calling it from a widget In that case, you can just all the method directly: ``` (new \craft\feedme\console\controllers\FeedsController('feeds',...

@petebacondarwin You're right – it appears to not work at all, even when deployed I'm getting the same error. https://github.com/timkelty/esi-html-rewriter

> Tried to update that dependency, but it crashed our site completely on Craft Cloud. Failed with this error [craftcms/cloud#75](https://github.com/craftcms/cloud/discussions/75) > > I've reached out to Craft support for help....

@boboldehampsink on Craft Cloud, or not?

Is anyone able to share a db dump reproducing this behavior to [email protected]? /cc @boboldehampsink

Ideally, we can generically expose this capability on the Craft FS level. That way, AWS-S3 filesystems as well as Cloud ones would work, and Formie (or the dev implementing the...