HestiaCP File Manager shows blank page

my problem was here File Manager error 500 After new installed so I This error occurs because HestiaCP overwrites the original SessionStorage.php file from FileGator with its own version, which does not include the required migrate() method. This causes a fatal PHP error because the class does not implement all the methods defined in the interface.

To fix this issue on your server,
follow the steps below as root user:
Log in via SSH to your server.
Go to the FileGator session adapters directory in HestiaCP:
bash
cd /usr/local/hestia/web/fm/backend/Services/Session/Adapters/
Use code wisely.
Make a backup of the current, faulty file:
bash
mv SessionStorage.php SessionStorage.php.bak
Use code wisely.
Download the corrected version of the file that contains the missing migrate() method:
bash
curl -fssLm20 https://raw.githubusercontent.com/sahsanu/hestiacp/90e175baed239cccab8761dbfdc693bc9642c066/install/deb/filemanager/filegator/backend/Services/Session/Adapters/SessionStorage.php -o SessionStorage.php
Use code wisely.
Make sure the permissions are correct (optional, usually the file downloaded by curl will keep the standard permissions):
bash
chown hestiaweb:hestiaweb SessionStorage.php
Use code wisely.

Hestia Control Panel
After executing these commands, File Manager should start working properly without having to restart the entire server.
This problem mainly affects newer HestiaCP installations on systems such as Ubuntu 22.04/24.04 or Debian 12.
And start working fine for me