FullyLoadedTech
Forge Load balancer issues and forceScheme https
I found this message which resolved the issue: https://discord.com/channels/883083792112300104/1231472887555428352/1234161551779299358
3 replies
filament:upgrade causing asset changes in certain dev envs
@awcodes I created an issue for this with easily reproducible steps https://github.com/filamentphp/filament/issues/14278
15 replies
filament:upgrade causing asset changes in certain dev envs
Right I'm aware of all of that, but in this case it's with a locked Filament version so there is no upgrade being done just an install where all the JS/etc assets are already published and already committed. So it has to do with composer re-publishing the same assets but differently which is causing modifications. That's what I'm confused about. So I don't know if it's an older version of composer causing the issue, or some weird composer configuration problem. In all other envs it republishes the assets upon composer install but there are no changes. In the troublesome env, it republishes all assets as expected but it modifies all the files. This is with the exact same composer.lock so Filament version being used is not changing. I've been using Filament for nearly 3 years and never seen this before. I think it's more of a composer issue than Filament. So just wondering if anyone else has seen something like this.
15 replies
filament:upgrade causing asset changes in certain dev envs
The problem is after
composer install
it's resulting in like 20 file changes in just this one env when normally you would only expect that after a composer update
or something if Filament changed a bunch of things.15 replies
filament:upgrade causing asset changes in certain dev envs
Right, in 3 out of 4 dev envs that is working as expected. But for some reason on one Windows env it republishes as expected, but then modifies all of the js/css assets (despite no changes to composer.lock). So I'm trying to figure out if this is a known issue with an older version of composer on Windows or what. Going to try switching that env to Herd I guess.
15 replies
Table search/filter by json array?
I figured out a partial solution... for the TextColumn::make('myjson.myattribute') and then for SelectFilter::make('myjson->myattribute') works. This still results in an error if you use ->searchable() on the TextColumn but at least the SelectFilter is working with just typecasting the json to array. Was unaware of Eloquent's
->
notation for where queries.6 replies
How to set meta alt+title with SpatieMediaLibraryFileUpload field?
Mainly I just wanted to use the
->responsiveImages()
part plus all the Spatie config settings. I see though that it has Curator::curationPresets
for different thumb sizes, don't remember that from the last I looked at it. Alright maybe that's the solution then thanks.19 replies
How to set meta alt+title with SpatieMediaLibraryFileUpload field?
Yeah it is more work than it's worth, that's why I haven't been able to switch to Filament yet. The ML pro plugin doesn't exactly work the way I need it to, and Curator is incompatible with Spatie ML.
19 replies
How to set meta alt+title with SpatieMediaLibraryFileUpload field?
Would be similar to
insertDownloadLink
or insertOpenLink
to dispatch event for modal which then uses this Filepond metadata plugin? https://pqina.nl/filepond/docs/api/plugins/file-metadata/19 replies
How to set meta alt+title with SpatieMediaLibraryFileUpload field?
If I want to try extending the field, how would I compile in a new
components/file-upload.js
? Is that documented anywhere? I see how to customize field with the class and blade part, but not sure how to combine with the Alpine JS file... https://filamentphp.com/docs/2.x/forms/fields#building-custom-fields19 replies