ImportAction - file size validation error - Need to increase maxSize limit
Hey everyone!
I'm having trouble with file size validation when importing a CSV file using Filament's ImportAction. Here's my setup:
My current ImportAction configuration: phpImportAction::make() ->label('Importar') ->color('primary') ->importer(BookImporter::class) ->headerOffset(0) ->csvDelimiter(',')
The issue:
I'm trying to upload a 17.5MB CSV file Getting "validation.max.file" error during upload My PHP settings are already configured: post_max_size = 120M and upload_max_filesize = 100M
What I've tried:
Verified PHP configuration is correct File uploads fine in other parts of the application The error seems to be coming from Filament's own validation