Ey @sahsanu can you give me a hand?
The installation and operation is excellent, I have no problems.
But over time passed and I found a problem… PHP 8.3 and 8.4 are not active.
Although I go to Configuration > Webserver > I have the options 8.3 and 8.4 checked but with I edit a user account (although I am myself, I make a user account for each web page) I’m stuck in 8.2 and it won’t let me use the higher ones.
I try to disable there for them enabled, but I can’t… I get a server error 500 (hestiacp template).
I logged in via SSH and gave an apt update && apt upgrade and is all at day.
Also I try to install manually with
/usr/local/hestia/bin/v-add-web-php 8.3
But don’t like it…
Output:
Installing PHP-8.3, please wait…
ERROR: Installation failed, please run the following command manually for debugging:
apt-get install php8.3-common php8.3-mbstring php8.3-bcmath php8.3-cli php8.3-curl
php8.3-fpm php8.3-gd php8.3-intl php8.3-mysql
php8.3-soap php8.3-xml php8.3-zip php8.3-bz2
php8.3-pspell php8.3-imagick php8.3-imap php8.3-ldap php8.3-apcu
cp: cannot create regular file ‘/etc/php/8.3/fpm/pool.d/’: No such file or directory
sed: can’t read /etc/php/8.3/fpm/pool.d/dummy.conf: No such file or directory
cp: cannot create regular file ‘/etc/php/8.3/fpm/’: Not a directory
sed: can’t read /etc/php/8.3/fpm/php-fpm.conf: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
sed: can’t read /etc/php/8.3/fpm/php.ini: No such file or directory
so… I try to delete it (for late install it)
I do a /usr/local/hestia/bin/v-delete-web-php 8.3
But no…
Output:
ERROR: Specified PHP version is not installed.
I look this file:
vi /usr/local/hestia/web/edit/server/index.php
and get this:
the file containt:
// Get server hostname
$v_hostname = exec(“hostname”);
// List available timezones and get current one
exec(HESTIA_CMD . “v-get-sys-timezone”, $output, $return_var);
$v_timezone = $output[0];
unset($output);
exec(HESTIA_CMD . “v-get-sys-timezones json”, $output, $return_var);
$v_timezones = json_decode(implode(“”, $output), true);
unset($output);
// List supported php versions
exec(HESTIA_CMD . “v-list-web-templates-backend json”, $output, $return_var);
$backend_templates = json_decode(implode(“”, $output), true);
unset($output);
$v_php_versions = [
“php-5.6”,
“php-7.0”,
“php-7.1”,
“php-7.2”,
“php-7.3”,
“php-7.4”,
“php-8.0”,
“php-8.1”,
“php-8.2”,
“php-8.3”,
“php-8.4”,
];
sort($v_php_versions);
What I can do in this situation? Delete php-8.3/8.4 of that file and try again? I ask before broke something.
Thanks!