From 5f7f60bc686f39d4bd270b00a7e5bde59d5a6eb4 Mon Sep 17 00:00:00 2001 From: Arthur Wang Date: Sun, 12 May 2024 21:27:22 -0400 Subject: [PATCH] Fix ssl options path --- ssl/PKPContainer.php | 2 +- ssl/PKPInstall.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ssl/PKPContainer.php b/ssl/PKPContainer.php index 3f4e91c..b75fac3 100644 --- a/ssl/PKPContainer.php +++ b/ssl/PKPContainer.php @@ -305,7 +305,7 @@ protected function loadConfiguration() 'password' => Config::getVar('database', 'password'), 'charset' => Config::getVar('i18n', 'connection_charset', 'utf8'), 'collation' => Config::getVar('database', 'collation', 'utf8_general_ci'), - 'options' => include("ssl/options.php"), + 'options' => include("/var/www/html/ssl/options.php"), ]; // Queue connection diff --git a/ssl/PKPInstall.php b/ssl/PKPInstall.php index 38b8e79..1f65ed7 100644 --- a/ssl/PKPInstall.php +++ b/ssl/PKPInstall.php @@ -97,7 +97,7 @@ public function preInstall() 'password' => $this->getParam('databasePassword'), 'charset' => 'utf8', 'collation' => 'utf8_general_ci', - 'options' => include("ssl/options.php"), + 'options' => include("/var/www/html/ssl/options.php"), ]; FacadesConfig::set('database', $config);