• 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:

  • 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

Problem installing Chevereto

Version
4.2.5
PHP version
8.3.15
Database driver
MariaDB
Database version
-
Web browser
Chrome

Azone

Chevereto Member
Hello, I'm facing an issue with a "Something went wrong" error during the installation process. When the files are being unpacked on the server, the site shows this error at the installation stage.
I've tried many times using different web servers like Apache, Nginx, and OpenLiteSpeed, and also different PHP versions, but nothing helps.
I don’t have much experience with configuration settings, but I tried to follow the official documentation as closely as possible. Unfortunately, I haven't been able to solve the problem.

REDACTED FOR PRIVACY.
 

Attachments

  • eror.PNG
    eror.PNG
    59.3 KB · Views: 3
Solution

Skip directly to this: https://v4-docs.chevereto.com/developer/how-to/debug.html#debug-development

Do the ENV way or the code editing way, in any case that happens early in the app so it should catch this one.

Skip directly to this: https://v4-docs.chevereto.com/developer/how-to/debug.html#debug-development

Do the ENV way or the code editing way, in any case that happens early in the app so it should catch this one.
 
Solution
When enabling debugging, it turns out that the PHP module "putenv" was disabled in disable_functions, then I needed to install the "mbstring" module in PHP, then I encountered the fact that the server icons were not shown, but I also solved this problem by writing in the site
location ~* \.(eot|ttf|woff|woff2|svg)$ {
add_header Access-Control-Allow-Origin *;
access_log off;
log_not_found off;
expires 30d;
}
This helped me.
I use a translator
 

Skip directly to this: https://v4-docs.chevereto.com/developer/how-to/debug.html#debug-development

Do the ENV way or the code editing way, in any case that happens early in the app so it should catch this one.
Thank you very much for your help
 
Back
Top