• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space
  • 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

Wrong redirect on install V4

schultz-it-solutions

Chevereto Member
Hola Rodolfo,

I tried to install V4 in a subdirectory of my domain, but immediatly the installer redirected to [ROOT]/install

concrete example:
uploaded V4.0 to started the installation by opening this URL
immediatly got redirected to (instead of probably ), which of course creates a NOT-FOUND error...

This may be connected to this bug-report:

kind regards
Ruediger Schultz


Had to revert back to PHP 7.4, to keep my PROD gallery working (which resides on )
 
This is not a bug.

In Chevereto V4 the path defaults to / and if you want to install it in a sub-directory you must explicit indicate that path via Hostname environment variables.

If you are using app/env.php you need this:

PHP:
<?php

return [
    'CHEVERETO_HOSTNAME_PATH' => '/sub/',
];
 
Back
Top