• Remember to address to the Bug Tracking guidelines and to follow the instructions in the post ticket template.
  • Welcome to the Chevereto user community!

    Here users from all over the world gather around to learn the latest about Chevereto and contribute with ideas to improve the software.

    Please keep in mind:

    • This community is user driven. Be polite with other users.
    • We recommend purchasing a Chevereto license to participate in this community.
    • Purchase a Community Subscription to get even faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

    • Got a Something went wrong message? Read this guide and provide the actual error. Do not skip this.
    • Confirm that the server meets the System Requirements
    • Check for any available Hotfix - your issue could be already reported/fixed
    • Read documentation - It will be required to Debug and understand Errors for a faster support response

Confirmed Update from 4.2.5 to 4.3.3 leads to unusable system when proc_open and proc_close are disabled

Version
4.3.3
Website URL
https://bilderhosting.baukultur.pictures/
PHP version
8.3.10
Database driver
MariaDB
Database version
10.6
Web browser
Firefox

silesien

Chevereto Member
I have just tried to update Chevereto to the latest version, the update seemed to work, however afterwards, I got the following errors;

in /home/qohuvosa/public_html/bilderhosting/app/vendor/symfony/process/Process.php:1392

# Message
Call to undefined function Symfony\Component\Process\proc_close()

# URI
/dashboard

# Method
GET

# Time
2025-05-24T06:08:52+00:00 [1748066932]

# Incident 68316274166dd

I have reinstalled 4.2.5 from my backup to make it work again.
 
For PHP setups where functions proc_open and proc_close are disabled, the software will fail to render the /dashboard unless you disable the usage of binary tools.

If you use app/env.php add the following directives:

PHP:
'CHEVERETO_BINARY_EXIFTOOL' => '',
'CHEVERETO_BINARY_EXIFTRAN' => '',
'CHEVERETO_BINARY_FFMPEG' => '',
'CHEVERETO_BINARY_FFPROBE' => '',

From Chevereto v4.3.4 (next patch) Chevereto will detect and expose the functions being restricted instead of crippling the application with a system level exception.
 
Back
Top