[Pkg-owncloud-commits] [owncloud] 18/215: Checks if getenv returns proper system variable results
David Prévot
taffit at moszumanska.debian.org
Tue May 5 01:01:14 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch stable8
in repository owncloud.
commit 35dbef55b5523f84db8674507c430804d3ca0572
Author: root <martin.mattel at diemattels.at>
Date: Thu Apr 23 10:58:13 2015 +0200
Checks if getenv returns proper system variable results
Updated texts and changed the variable name to match the query
Updated text + info which path for php config is used
removed the term ownCloud and squashed the commits
Updated text
---
settings/admin.php | 3 +++
settings/templates/admin.php | 10 ++++++++++
2 files changed, 13 insertions(+)
diff --git a/settings/admin.php b/settings/admin.php
index 976d0a5..bc9224f 100644
--- a/settings/admin.php
+++ b/settings/admin.php
@@ -118,6 +118,9 @@ $databaseOverload = (strpos(\OCP\Config::getSystemValue('dbtype'), 'sqlite') !==
$template->assign('databaseOverload', $databaseOverload);
$template->assign('cronErrors', $appConfig->getValue('core', 'cronErrors'));
+// warn if php is not setup properly to get system variables with getenv
+$template->assign('getenvServerNotWorking', empty(getenv('PATH')));
+
// warn if Windows is used
$template->assign('WindowsWarning', OC_Util::runningOnWindows());
diff --git a/settings/templates/admin.php b/settings/templates/admin.php
index 4bc497d..4b37389 100644
--- a/settings/templates/admin.php
+++ b/settings/templates/admin.php
@@ -67,6 +67,16 @@ if ($_['mail_smtpmode'] == 'qmail') {
<h2><?php p($l->t('Security & setup warnings'));?></h2>
<ul>
<?php
+// is php setup properly to query system environment variables like getenv('PATH')
+if ($_['getenvServerNotWorking']) {
+?>
+ <li>
+ <?php p($l->t('php does not seem to be setup properly to query system environment variables. The test with getenv("PATH") only returns an empty response.')); ?><br>
+ <?php p($l->t('Please check the installation documentation for php configuration notes and the php configuration of your server, especially when using php-fpm.')); ?>
+ </li>
+<?php
+}
+
// is read only config enabled
if ($_['readOnlyConfigEnabled']) {
?>
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git
More information about the Pkg-owncloud-commits
mailing list