yhsiao
Chevereto Member
Today, I upgraded Chevereto from version 4.2.5 to 4.3.0. After the upgrade, the dashboard displayed the following errors:
In fact, I have already installed ExifTool, ExifTran, ffmpeg, and ffprobe on my server. I verified the binary paths using the which command, and the results were as follows:
Additionally, I added the binary path configurations in app/env.php, as shown below:
Could you please help me identify where the issue might be and how to resolve it? Thank you!
- ExifTool binary not found
- ExifTran binary not found
- Error: Unable to load FFProbe [Executable not found, proposed: avprobe, ffprobe]
In fact, I have already installed ExifTool, ExifTran, ffmpeg, and ffprobe on my server. I verified the binary paths using the which command, and the results were as follows:
Code:
which exiftran
/usr/bin/exiftran
which exiftool
/usr/bin/exiftool
which ffmpeg
/usr/bin/ffmpeg
which ffprobe
/usr/bin/ffprobe
Additionally, I added the binary path configurations in app/env.php, as shown below:
Code:
'CHEVERETO_BINARY_FFMPEG' => '/usr/bin/ffmpeg',
'CHEVERETO_BINARY_FFPROBE' => '/usr/bin/ffprobe',
'CHEVERETO_BINARY_EXIFTOOL' => '/usr/bin/exiftool',
'CHEVERETO_BINARY_EXIFTRAN' => '/usr/bin/exiftran',
Could you please help me identify where the issue might be and how to resolve it? Thank you!