Моя проблема заключается в том, что при попытке загрузить файл mp3 с помощью VichUploadBundler в сочетании с sonata-admin при загрузке файла появляется следующая ошибка.
"The file "" was not found"
У меня уже есть другая форма в моем проекте, где я загружаю некоторые изображения, и у меня нет проблем с ними, поэтому я очень шокирован, потому что я думал, что аудио файлы будут проще
Вот мой файл Entity
/**
* NOTE: This is not a mapped field of entity metadata, just a simple property.
*
* @Vich\UploadableField(mapping="episode_audio", fileNameProperty="audioName")
*
* @var File
*/
private $audioFile;
/**
* @ORM\Column(type="string", length=255)
*
* @var string
*/
private $audioName;
/**
* @ORM\Column(type="datetime")
*
* @var \DateTime
*/
private $updatedAt;
/**
* If manually uploading a file (i.e. not using Symfony Form) ensure an instance
* of 'UploadedFile' is injected into this setter to trigger the update. If this
* bundle's configuration parameter 'inject_on_load' is set to 'true' this setter
* must be able to accept an instance of 'File' as the bundle will inject one here
* during Doctrine hydration.
*
* @param File|\Symfony\Component\HttpFoundation\File\UploadedFile $audioFile
*/
public function setAudioFile(?File $audioFile = null): void
{
$this->audioFile = $audioFile;
if (null !== $audioFile) {
// It is required that at least one field changes if you are using doctrine
// otherwise the event listeners won't be called and the file is lost
$this->updatedAt = new \DateTimeImmutable();
}
}
public function getAudioFile(): ?File
{
return $this->audioFile;
}
public function setAudioName(?string $audioName): void
{
$this->audioName = $audioName;
}
public function getAudioName(): ?string
{
return $this->audioName;
}
Мой файл vich_uploader.yaml
vich_uploader:
db_driver: orm
mappings:
..//
episode_audio:
uri_prefix: /audio
upload_destination: '%kernel.project_dir%/public/audio/'
delete_on_update: true
delete_on_remove: true
inject_on_load: true
И, наконец, мой админ класс
protected function configureFormFields(FormMapper $formMapper) {
$formMapper
->add('audioName')
->add('audioFile', VichFileType::class, [
'label' => 'Audio'
]);
}
Я просто хочу видеть свои аудиофайлы в своей папке, как и изображения, я уверен, что это что-то глупое, если вам, ребята, нужно увидеть что-то еще в моем коде, просто спросите, чтобы я мог обновить вопрос