• 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

Monolog 2.0 & Chevereto 3.13.5

Wink

Chevereto Member
Current Chevereto version (3.13.5) start using Monolog 2.0 in /app/vendor/monolog folder. But this version not support PHP 5.6

Monolog 2.x works with PHP 7.2 or above, use Monolog ^1.0 for PHP 5.3+ support.

As a result we have broken Google authentication on PHP 5.6 sites

Code:
PHP Warning:  Unsupported declare 'strict_types' in /***/app/vendor/monolog/monolog/src/Monolog/Logger.php on line 1, referer: https://accounts.google.com/signin/oauth/oauthchooseaccount?client_id=...
PHP Parse error:  syntax error, unexpected 'const' (T_CONST), expecting variable (T_VARIABLE) in /***/app/vendor/monolog/monolog/src/Monolog/Logger.php on line 33, referer: https://accounts.google.com/sign...

Do we really need Monolog 2.0? Version 1.24.0 still work correct.
 
I believe in the new version of the installer (I don't know how long it has been like) is talking about a minimum version of php 7.

[CODE lang="php" title="installer.php" highlight="1"]const PHP_VERSION_MIN = '7.0';
const PHP_VERSION_RECOMMENDED = '7.3';[/CODE]

On the following page, however, is still the speech of php 5.6.
For reasons of stability and security, you should no longer use php 5.6.
 
5.6 is the minimum version supported but the recommendation at this time is either 7.3 or 7.4.
 
Back
Top