Nextcloud PHP version check

  • NC 25 supported offiziell kein PHP >8.2. Der Check dafür befindet sich in

    Code
    find / -type f -name "*.*" -exec grep -q "not compatible with PHP" {} \; -print

    -> lib/versioncheck.php

    Code
    // Show warning if >= PHP 8.2 is used as Nextcloud is not compatible with >= PHP 8.2 for now
    if (PHP_VERSION_ID >= 80220) {

    ich habe hier schon auf 8.2.2 geändert. Dadurch kommt es nat. zu einer Checksummenänderung der Datei die richtigerweise beim Installationcheck angemeckert wird

    Quote
    Manche Dateien haben die Integritätsprüfung nicht bestanden. Weitere Informationen um den Fehler zu beheben findest du in unserer Dokumentation↗.

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!