Skip to content

Commit 9cb2ec1

Browse files
committed
Merge branch 'staging/1.6.4' into main
2 parents 56bc511 + f6ea123 commit 9cb2ec1

File tree

13 files changed

+26
-21
lines changed

13 files changed

+26
-21
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@ All notable changes to this project will be documented in this file.
33

44
## [1.6.4] - Service release
55

6-
Still in development
6+
### Bugfixes
7+
8+
- Fixed an issue with downloading log files ()
9+
- Fixed an issue with installing Quick Installers (#2762, #2760, @divinity76)
10+
- Fixed an issue with Apache Access / Awstats logs IP after using v-update-sys-ip (#2759 @adion-gorani)
711

812
## [1.6.3] - Service release
913

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[Hestia Control Panel](https://www.hestiacp.com/)
44
==================================================
5-
**Latest stable release:** Version 1.6.3 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md) | [![Build Status](https://drone.hestiacp.com/api/badges/hestiacp/hestiacp/status.svg?ref=refs/heads/main)](https://drone.hestiacp.com/hestiacp/hestiacp) <br>
5+
**Latest stable release:** Version 1.6.4 | [View Changelog](https://github.com/hestiacp/hestiacp/blob/release/CHANGELOG.md) | [![Build Status](https://drone.hestiacp.com/api/badges/hestiacp/hestiacp/status.svg?ref=refs/heads/main)](https://drone.hestiacp.com/hestiacp/hestiacp) <br>
66

77
**Web:** [www.hestiacp.com](https://www.hestiacp.com/)<br>
88
**Documentation:** [docs.hestiacp.com](https://docs.hestiacp.com/)<br>

install/hst-install-debian.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
3131
VERBOSE='no'
3232

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.6.4~alpha'
34+
HESTIA_INSTALL_VER='1.6.4'
3535
# Dependencies
3636
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1")
3737
fpm_v="8.0"

install/hst-install-ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ HESTIA_INSTALL_DIR="$HESTIA/install/deb"
3131
VERBOSE='no'
3232

3333
# Define software versions
34-
HESTIA_INSTALL_VER='1.6.4~alpha'
34+
HESTIA_INSTALL_VER='1.6.4'
3535
# Dependencies
3636
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0" "8.1")
3737
fpm_v="8.0"

src/deb/hestia/control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Source: hestia
22
Package: hestia
33
Priority: optional
4-
Version: 1.6.4~alpha
4+
Version: 1.6.4
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

web/src/app/System/HestiaApp.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ public function run(string $cmd, $args, &$cmd_result=null): bool
2323
throw new \Exception($errstr);
2424
}
2525
$cli_script = '/usr/bin/sudo ' . escapeshellarg($cli_script);
26-
26+
27+
$cli_arguments = '';
2728
if (!empty($args) && is_array($args)) {
2829
foreach ($args as $arg) {
2930
$cli_arguments .= escapeshellarg((string)$arg) . ' ';

web/src/app/WebApp/Installers/Drupal/DrupalSetup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ public function install(array $options=null) : bool
5252
$tmp_configpath = $this->saveTempFile($htaccess_rewrite);
5353
$this->appcontext->runUser('v-move-fs-file',[$tmp_configpath, $this->getDocRoot(".htaccess")], $result);
5454

55-
$php_version = $this -> appcontext -> getSupportedPHP($this -> config['server']['php']['supported']);
55+
5656
$this -> appcontext -> runUser('v-run-cli-cmd', [
57-
"/usr/bin/php$php_version",
57+
"/usr/bin/php".$options['php_version'],
5858
$this -> getDocRoot('/vendor/drush/drush/drush'),
5959
'site-install',
6060
'standard',

web/src/app/WebApp/Installers/Grav/GravSetup.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,20 @@ public function install(array $options = null)
4545

4646
if ( $options['admin'] == true ){
4747
chdir($this->getDocRoot());
48-
$php_version = $this -> appcontext -> getSupportedPHP($this -> config['server']['php']['supported']);
49-
$this -> appcontext -> runUser('v-run-cli-cmd', ["/usr/bin/php$php_version",
48+
49+
$this -> appcontext -> runUser('v-run-cli-cmd', ["/usr/bin/php".$options['php_version'],
5050
$this->getDocRoot('/bin/gpm'),
5151
'install admin'
5252
], $status);
53-
$this -> appcontext -> runUser('v-run-cli-cmd', ["/usr/bin/php$php_version",
53+
$this -> appcontext -> runUser('v-run-cli-cmd', ["/usr/bin/php".$options['php_version'],
5454
$this->getDocRoot('/bin/plugin'),
5555
'login new-user',
5656
'-u '.$options['username'],
5757
'-p '.$options['password'],
5858
'-e '.$options['email'],
5959
'-P a',
60-
'-N '.$options['username']
60+
'-N '.$options['username'],
61+
'-l en'
6162
], $status);
6263
}
6364
return ($status -> code === 1);

web/src/app/WebApp/Installers/MediaWiki/MediaWikiSetup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ public function install(array $options = null)
5858
$this->appcontext->runUser('v-copy-fs-directory', [
5959
$this->getDocRoot($this->extractsubdir . "/mediawiki-1.37.2/."),
6060
$this->getDocRoot()], $result);
61-
$php_version = $this -> appcontext -> getSupportedPHP($this -> config['server']['php']['supported']);
62-
$this->appcontext->runUser('v-run-cli-cmd', ["/usr/bin/php$php_version",
61+
62+
$this->appcontext->runUser('v-run-cli-cmd', ["/usr/bin/php".$options['php_version'],
6363
$this->getDocRoot('maintenance/install.php'),
6464
'--dbserver=localhost',
6565
'--dbname=' . $this->appcontext->user() . '_' . $options['database_name'],

web/src/app/WebApp/Installers/Nextcloud/NextcloudSetup.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ public function install(array $options = null): bool
4242

4343
// install nextcloud
4444
$php_version = $this -> appcontext -> getSupportedPHP($this -> config['server']['php']['supported']);
45-
$this->appcontext->runUser('v-run-cli-cmd', ["/usr/bin/php$php_version",
45+
46+
$this->appcontext->runUser('v-run-cli-cmd', ["/usr/bin/php".$options['php_version'],
4647
$this->getDocRoot('occ'),
4748
'maintenance:install',
4849
'--database mysql',
@@ -55,7 +56,7 @@ public function install(array $options = null): bool
5556

5657
$this->appcontext->runUser(
5758
'v-run-cli-cmd',
58-
['/usr/bin/php',
59+
["/usr/bin/php".$options['php_version'],
5960
$this->getDocRoot('occ'),
6061
'config:system:set',
6162
'trusted_domains 2 --value='.$this->domain

0 commit comments

Comments
 (0)