]> git.pld-linux.org Git - packages/eventum.git/blame - eventum-paths.patch
Up to 3.9.6
[packages/eventum.git] / eventum-paths.patch
CommitLineData
56ec18ac
ER
1--- eventum-3.9.6/src/Config/Paths.php~ 2020-08-21 18:50:08.000000000 +0300
2+++ eventum-3.9.6/src/Config/Paths.php 2020-10-14 14:34:44.081698316 +0300
3@@ -22,19 +22,17 @@
7d2cac86
ER
4 public const APP_PUBLIC_PATH = APP_PATH . '/htdocs';
5 public const APP_INC_PATH = APP_PATH . '/lib/eventum';
6
7- // "/var" path for writable data
8- private const APP_VAR_PATH = APP_PATH . '/var';
4e8519f7
ER
9- public const APP_CACHE_PATH = self::APP_VAR_PATH . '/cache';
10+ public const APP_CACHE_PATH = '/var/cache/eventum';
1beb4932 11
4e8519f7
ER
12 // define other paths
13 public const APP_TPL_PATH = APP_PATH . '/templates';
14 public const APP_TPL_COMPILE_PATH = self::APP_CACHE_PATH . '/smarty';
15- public const APP_LOG_PATH = self::APP_VAR_PATH . '/log';
16+ public const APP_LOG_PATH = '/var/log/eventum';
7d2cac86 17 /** @deprecated */
4e8519f7
ER
18 public const APP_ERROR_LOG = self::APP_LOG_PATH . '/errors.log';
19- public const APP_LOCKS_PATH = self::APP_VAR_PATH . '/lock';
20+ public const APP_LOCKS_PATH = '/var/run/eventum';
21
22 // fonts directory for phplot
23- public const APP_FONTS_PATH = APP_PATH . '/vendor/fonts/liberation';
24+ public const APP_FONTS_PATH = '/usr/share/fonts/TTF';
56ec18ac 25 public const APP_HELP_PATH = APP_PATH . '/docs/help';
4e8519f7 26 }
4a203501
ER
27--- eventum-3.5.6-98-g5b87d2b0/src/Setup/Requirements.php~ 2019-01-23 01:50:42.000000000 +0200
28+++ eventum-3.5.6-98-g5b87d2b0/src/Setup/Requirements.php 2019-01-24 22:18:56.047816296 +0200
29@@ -64,10 +64,6 @@
290540fe
ER
30 $configPath = Setup::getConfigPath();
31 $setupFile = Setup::getSetupFile();
abac5638 32
290540fe 33- $error = $this->checkPermissions($configPath, "Directory '" . $configPath . "'", true);
1beb4932
ER
34- if (!empty($error)) {
35- $errors[] = $error;
36- }
290540fe 37 $error = $this->checkPermissions($setupFile, "File '" . $setupFile . "'");
1beb4932
ER
38 if (!empty($error)) {
39 $errors[] = $error;
9913db86
ER
40--- eventum-3.9.0/src/Console/Command/MonitorCommand.php~ 2019-10-21 22:17:43.000000000 +0300
41+++ eventum-3.9.0/src/Console/Command/MonitorCommand.php 2020-07-02 00:40:16.042698823 +0300
42@@ -68,9 +68,9 @@
290540fe 43 $required_files = [
290540fe 44 $configPath . '/setup.php' => [
549721ab
ER
45 'check_owner' => true,
46- 'owner' => 'apache',
9913db86 47+ 'owner' => 'http',
549721ab
ER
48 'check_group' => true,
49- 'group' => 'apache',
50+ 'group' => 'http',
51 'check_permission' => true,
52 'permission' => 660,
53 'check_filesize' => true,
cb60690e
ER
54--- eventum-3.1.5/config/sphinx.conf.php~ 2016-11-13 12:05:37.000000000 +0200
55+++ eventum-3.1.5/config/sphinx.conf.php 2016-11-23 03:10:05.855040510 +0200
9d207070
ER
56@@ -1,7 +1,7 @@
57 #!/usr/bin/php
58 <?php
59
cb60690e 60-require_once __DIR__ . '/../init.php';
858c6f2a
ER
61+require_once '/usr/share/eventum/init.php';
62
63 if (!defined('SPHINX_LOG_PATH')) {
64 define('SPHINX_LOG_PATH', '/var/log/sphinx/');
4e8519f7
ER
65--- eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php~ 2019-08-11 22:49:07.000000000 +0300
66+++ eventum-3.7.4-440-gcc5ad3db5/src/Attachment/StorageManager.php 2019-08-21 23:33:19.325911295 +0300
67@@ -33,7 +33,7 @@
9dd475ab
ER
68 *
69 * @var string
70 */
4e8519f7
ER
71- private const STORAGE_PATH = Paths::APP_PATH . '/var/storage/';
72+ private const STORAGE_PATH = '/var/lib/eventum/storage/';
ac6bab4c 73
9dd475ab
ER
74 /**
75 * @var MountManager
This page took 0.0476 seconds and 4 git commands to generate.