]> git.pld-linux.org Git - packages/eventum.git/blame - eventum-paths.patch
php-pear-Mail no longer used
[packages/eventum.git] / eventum-paths.patch
CommitLineData
1beb4932
ER
1--- eventum-3.1.10-340-gfc2f2394/globals.php~ 2017-05-16 18:18:37.000000000 +0300
2+++ eventum-3.1.10-340-gfc2f2394/globals.php 2017-05-17 19:54:53.436574941 +0300
3@@ -25,7 +25,7 @@
4
5 // define other paths
6 define('APP_TPL_PATH', APP_PATH . '/templates');
7-define('APP_TPL_COMPILE_PATH', APP_VAR_PATH . '/cache');
8-define('APP_LOCKS_PATH', APP_VAR_PATH . '/lock');
9-define('APP_LOG_PATH', APP_VAR_PATH . '/log');
10+define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
11+define('APP_LOCKS_PATH', '/var/run/eventum');
12+define('APP_LOG_PATH', '/var/log/eventum');
13 define('APP_ERROR_LOG', APP_LOG_PATH . '/errors.log');
947341a2
ER
14--- eventum-3.0.3-287-ge48a790/htdocs/setup/index.php~ 2015-10-26 21:45:35.367554219 +0200
15+++ eventum-3.0.3-287-ge48a790/htdocs/setup/index.php 2015-10-26 21:47:31.775849576 +0200
16@@ -47,10 +47,10 @@
7a906e31 17 define('APP_CONFIG_PATH', APP_PATH . '/config');
ae3e48e6
ER
18 define('APP_SETUP_FILE', APP_CONFIG_PATH . '/setup.php');
19 define('APP_TPL_PATH', APP_PATH . '/templates');
947341a2
ER
20-define('APP_TPL_COMPILE_PATH', APP_VAR_PATH . '/cache');
21-define('APP_LOG_PATH', APP_VAR_PATH . '/log');
31dabce6 22+define('APP_TPL_COMPILE_PATH', '/var/cache/eventum');
ae3e48e6
ER
23+define('APP_LOG_PATH', '/var/log/eventum');
24 define('APP_ERROR_LOG', APP_LOG_PATH . '/errors.log');
947341a2 25-define('APP_LOCKS_PATH', APP_VAR_PATH . '/lock');
ae3e48e6 26+define('APP_LOCKS_PATH', '/var/run/eventum');
7a906e31 27 define('APP_LOCAL_PATH', APP_CONFIG_PATH);
31dabce6 28
ae3e48e6 29 header('Content-Type: text/html; charset=' . APP_CHARSET);
1beb4932
ER
30--- eventum-3.1.10-340-gfc2f2394/src/Controller/Setup/SetupController.php~ 2017-05-04 23:47:50.000000000 +0300
31+++ eventum-3.1.10-340-gfc2f2394/src/Controller/Setup/SetupController.php 2017-05-17 19:55:50.362400076 +0300
32@@ -201,10 +201,6 @@
33 = "The 'file_uploads' directive needs to be enabled in your PHP.INI file in order for Eventum to work properly.";
34 }
abac5638 35
1beb4932
ER
36- $error = $this->checkPermissions(APP_CONFIG_PATH, "Directory '" . APP_CONFIG_PATH . "'", true);
37- if (!empty($error)) {
38- $errors[] = $error;
39- }
40 $error = $this->checkPermissions(APP_SETUP_FILE, "File '" . APP_SETUP_FILE . "'");
41 if (!empty($error)) {
42 $errors[] = $error;
549721ab
ER
43--- eventum-3.0.8-100-g3543f89/src/Command/MonitorCommand.php~ 2016-01-31 18:24:19.000000000 +0200
44+++ eventum-3.0.8-100-g3543f89/src/Command/MonitorCommand.php 2016-02-01 00:16:28.751423105 +0200
45@@ -31,17 +31,17 @@
46 $required_files = array(
a8005c48 47 APP_CONFIG_PATH . '/config.php' => [
549721ab
ER
48 'check_owner' => true,
49- 'owner' => 'apache',
50+ 'owner' => 'root',
51 'check_group' => true,
52- 'group' => 'apache',
53+ 'group' => 'http',
54 'check_permission' => true,
55 'permission' => 640,
a8005c48
ER
56 ],
57 APP_CONFIG_PATH . '/setup.php' => [
549721ab
ER
58 'check_owner' => true,
59- 'owner' => 'apache',
60+ 'owner' => 'root',
61 'check_group' => true,
62- 'group' => 'apache',
63+ 'group' => 'http',
64 'check_permission' => true,
65 'permission' => 660,
66 'check_filesize' => true,
cb60690e
ER
67--- eventum-3.1.5/config/sphinx.conf.php~ 2016-11-13 12:05:37.000000000 +0200
68+++ eventum-3.1.5/config/sphinx.conf.php 2016-11-23 03:10:05.855040510 +0200
9d207070
ER
69@@ -1,7 +1,7 @@
70 #!/usr/bin/php
71 <?php
72
cb60690e 73-require_once __DIR__ . '/../init.php';
858c6f2a
ER
74+require_once '/usr/share/eventum/init.php';
75
76 if (!defined('SPHINX_LOG_PATH')) {
77 define('SPHINX_LOG_PATH', '/var/log/sphinx/');
This page took 0.042802 seconds and 4 git commands to generate.