Hello Forum!
I needed to upgrade my php version 7.0.33 to at least 7.2 - I picked 7.3. I followed those steps https://ayesh.me/Ubuntu-PHP-7.3.
I am using a Turnkey solution on my Proxmox server ( based on debian ).
Although I updated all the packages and diff /etc/php/7.0/mods-available/ /etc/php/7.3/mods-available/
gives me no âOnly in 7.0âŚâ Iâd get an error.
When opening Nextcloud on the Web, I get:
<?php
/**
*
- Your webserver seems to be not configured to use PHP or PHP is not installed.
- Please contact your administrator or follow our documentation:
- https://docs.nextcloud.com/server /15/admin_manual/installation/source_installation.html
*/
require_once DIR . â/lib/versioncheck.phpâ;
try {
require_once __DIR__ . '/lib/base.php';
OC::handleRequest();
} catch(\OC\ServiceUnavailableException $ex) {
\OC::$server->getLogger()->logException($ex, array(âappâ => âindexâ));
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 503);
} catch (\OC\HintException $ex) {
try {
OC_Template::printErrorPage($ex->getMessage(), $ex->getHint(), 503);
} catch (Exception $ex2) {
try {
\OC::$server->getLogger()->logException($ex, array(âappâ => âindexâ));
\OC::$server->getLogger()->logException($ex2, array(âappâ => âindexâ));
} catch (Throwable $e) {
// no way to log it properly - but to avoid a white page of death we try harder and ignore this one here
}
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 500);
}
} catch (\OC\User\LoginException $ex) {
OC_Template::printErrorPage($ex->getMessage(), $ex->getMessage(), 403);
} catch (Exception $ex) {
\OC::$server->getLogger()->logException($ex, array(âappâ => âindexâ));
//show the user a detailed error page
OC_Template::printExceptionErrorPage($ex, 500);
} catch (Error $ex) {
try {
\OC::$server->getLogger()->logException($ex, array(âappâ => âindexâ));
} catch (Error $e) {
http_response_code(500);
header(âContent-Type: text/plain; charset=utf-8â);
print(âInternal Server Error\n\nâ);
print(âThe server encountered an internal error and was unable to complete your request.\nâ);
print(âPlease contact the server administrator if this error reappears multiple times, please include the technical details below in your report.\nâ);
print(âMore details can be found in the webserver log.\nâ);
throw $ex;
}
OC_Template::printExceptionErrorPage($ex, 500);
}
Anybody knows what I have to do?
Thank you!