Daniel Shields
Daniel Shields
I've started getting the same problem on Github Actions. I was going crazy trying to figure it out but it's the same message: ``` (Unable to copy file from source://containers/assets/journals/camelot-journal.png/xxx.png...
Yeah. I use the same error template across the entire site, and use `{{ trans }}` tag to show the error warning depending on the current language, it's quite simple:...
Sorry to drop into the conversation, but I thought I would add something and see if it could help clarify this issue because I think I have the opposite problem?...
I've been spending a bit of time thinking of an elegant way to do the pagination without generating lots of static sub pages like `/articles/1` `/articles/2` and I've created an...
@owenconti That's a good question. I find it just a little bit cleaner but also I want my URLs to stay the same between my Statamic site and my static...
I've made a bit more progress on this idea of mine on the frontend, but I'm getting caught up on the routes. ```php Route::statamic('/api/partials/news/{page}', 'news-feed._pagination', ['layout' => null]); ``` In...
I've updated my [code example](https://github.com/tao/statamic-ssg-pagination) with an Artisan command that runs after boot in the AppServiceProvider, so that it figures out the number of pages and creates them automatically, so...
I have [another example](https://github.com/tao/ssg-pagination) of achieving static pagination using some custom tags. It works fine for this example but can become a bit complicated if you start to use filters,...
I've created an [example repo](https://github.com/tao/ssg-trusted-proxies) with this issue. ``` protected $proxies; ``` It works fine until you change this line to this: ``` protected $proxies = '*'; ```
It's been a couple months so I'm having trouble remembering exactly but it might have come up when I moved my SSG action to a github pipeline because it was...