We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using Contao 4.13 in a own DCA with this config:
`$GLOBALS['TL_DCA']['tl_member']['fields']['video_vorschau'] = [ 'label' => ['Video Vorschaubild', ''], 'exclude' => true, 'inputType' => 'fineUploader', 'eval' => [ 'multiple' => false, 'storeFile' => true, 'uploadFolder' => 'files/Videos auf Detailseite/Vorschaubilder', 'useHomeDir' => false, 'uploaderLimit' => 1, 'maxConnections' => 1, 'addToDbafs' => true, 'doNotOverwrite' => true, 'debug' => true,
// Validation 'extensions' => 'jpg,jpeg,png,webm', 'minlength' => 0, 'maxlength' => 2048000, // Chunking 'chunking' => false, // Rendering 'isGallery' => true, 'isDownloads' => false, 'sortable' => false, 'uploadButtonTitle' => '', 'directUpload' => true, ], 'sql' => "blob NULL"
];`
When i click the red cross, the entry goes away, but the file remains. What can i do? Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using Contao 4.13 in a own DCA with this config:
`$GLOBALS['TL_DCA']['tl_member']['fields']['video_vorschau'] = [
'label' => ['Video Vorschaubild', ''],
'exclude' => true,
'inputType' => 'fineUploader',
'eval' => [
'multiple' => false,
'storeFile' => true,
'uploadFolder' => 'files/Videos auf Detailseite/Vorschaubilder',
'useHomeDir' => false,
'uploaderLimit' => 1,
'maxConnections' => 1,
'addToDbafs' => true,
'doNotOverwrite' => true,
'debug' => true,
];`
When i click the red cross, the entry goes away, but the file remains.
What can i do? Thanks
The text was updated successfully, but these errors were encountered: