• 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.
    • 👉 Is required to purchase a Chevereto license to participate in this community (doesn't apply to Pre-sales).
    • 💸 Purchase a Pro Subscription to get access to active software support and faster ticket response times.
  • Chevereto Support CLST

    Support response

    Support checklist

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