Skip to content

Commit 51dd075

Browse files
committed
Fix issue in /etc/apache2/conf.d/phpmyadmin.conf
+ Prepare new version release
1 parent 3a38a0f commit 51dd075

File tree

8 files changed

+33
-14
lines changed

8 files changed

+33
-14
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55

66
## Features
77

8+
## [1.4.16] - Service release
9+
10+
### Bugfixes
11+
12+
- Fix bug with .json not loading on Apache2 due to rule in /etc/apache2/conf.d/hpmyadmin.conf
13+
814
### Bugfixes
915

1016
## [1.4.15] - Service release

install/deb/pma/apache.conf

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,4 @@ Alias /%pma_alias% /usr/share/phpmyadmin
4949
<Directory /usr/share/phpmyadmin/locale>
5050
Order Deny,Allow
5151
Deny from All
52-
</Directory>
53-
<Files ~ "\.json$">
54-
Order Deny,Allow
55-
Deny from all
56-
</Files>
57-
<Files ~ "\.lock$">
58-
Order Deny,Allow
59-
Deny from all
60-
</Files>
52+
</Directory>

install/hst-install-debian.sh

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

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.15'
26+
HESTIA_INSTALL_VER='1.4.16'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/hst-install-ubuntu.sh

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

2525
# Define software versions
26-
HESTIA_INSTALL_VER='1.4.15'
26+
HESTIA_INSTALL_VER='1.4.16'
2727
pma_v='5.1.1'
2828
rc_v="1.4.11"
2929
multiphp_v=("5.6" "7.0" "7.1" "7.2" "7.3" "7.4" "8.0")

install/upgrade/upgrade.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ rc_v="1.4.11"
6060
rl_v="1.16.0"
6161

6262
# Set version of File manager to update during upgrade if not already installed
63-
fm_v="7.6.0"
63+
fm_v="7.7.0"
6464

6565
# Set version of PHPMailer to update during upgrade if not already installed
6666
pm_v="6.5.0"

install/upgrade/versions/1.4.15.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# Hestia Control Panel upgrade script for target version 1.4.14
3+
# Hestia Control Panel upgrade script for target version 1.4.15
44

55
#######################################################################################
66
####### Place additional commands below. #######

install/upgrade/versions/1.4.16.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
3+
# Hestia Control Panel upgrade script for target version 1.4.16
4+
5+
#######################################################################################
6+
####### Place additional commands below. #######
7+
#######################################################################################
8+
####### Pass trough information to the end user incase of a issue or problem #######
9+
####### #######
10+
####### Use add_upgrade_message "My message here" to include a message #######
11+
####### to the upgrade email. Please add it using: #######
12+
####### #######
13+
####### add_upgrade_message "My message here" #######
14+
####### #######
15+
####### You can use \n within the string to create new lines. #######
16+
#######################################################################################
17+
18+
if [ ! -z "$DB_PMA_ALIAS" ]; then
19+
$HESTIA/bin/v-change-sys-db-alias 'pma' $DB_PMA_ALIAS
20+
fi
21+

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.4.15
4+
Version: 1.4.16
55
Section: admin
66
Maintainer: HestiaCP <info@hestiacp.com>
77
Homepage: https://www.hestiacp.com

0 commit comments

Comments
 (0)