Browse Source

Fix missing methods (#1275)

Some Heimdall apps uses method simplexml_load_string() which depends on php-xml package. Since Heimdall uses php 7.4 I added such dependency.
LordXaosa 2 years ago
parent
commit
ca8ed4f5cb
1 changed files with 1 additions and 0 deletions
  1. 1 0
      install/heimdalldashboard-install.sh

+ 1 - 0
install/heimdalldashboard-install.sh

@@ -23,6 +23,7 @@ msg_info "Installing PHP"
 $STD apt-get install -y php
 $STD apt-get install -y php-sqlite3
 $STD apt-get install -y php-zip
+$STD apt-get install -y php7.4-xml
 msg_ok "Installed PHP"
 
 RELEASE=$(curl -sX GET "https://api.github.com/repos/linuxserver/Heimdall/releases/latest" | awk '/tag_name/{print $4;exit}' FS='[""]')