]> git.pld-linux.org Git - packages/eventum.git/blob - eventum-paths.patch
up to 3.2.0
[packages/eventum.git] / eventum-paths.patch
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');
14 --- eventum-3.1.10-340-gfc2f2394/src/Controller/Setup/SetupController.php~      2017-05-04 23:47:50.000000000 +0300
15 +++ eventum-3.1.10-340-gfc2f2394/src/Controller/Setup/SetupController.php       2017-05-17 19:55:50.362400076 +0300
16 @@ -201,10 +201,6 @@
17                  = "The 'file_uploads' directive needs to be enabled in your PHP.INI file in order for Eventum to work properly.";
18          }
19  
20 -        $error = $this->checkPermissions(APP_CONFIG_PATH, "Directory '" . APP_CONFIG_PATH . "'", true);
21 -        if (!empty($error)) {
22 -            $errors[] = $error;
23 -        }
24          $error = $this->checkPermissions(APP_SETUP_FILE, "File '" . APP_SETUP_FILE . "'");
25          if (!empty($error)) {
26              $errors[] = $error;
27 --- eventum-3.0.8-100-g3543f89/src/Command/MonitorCommand.php~  2016-01-31 18:24:19.000000000 +0200
28 +++ eventum-3.0.8-100-g3543f89/src/Command/MonitorCommand.php   2016-02-01 00:16:28.751423105 +0200
29 @@ -31,17 +31,17 @@
30          $required_files = array(
31              APP_CONFIG_PATH . '/config.php' => [
32                  'check_owner' => true,
33 -                'owner' => 'apache',
34 +                'owner' => 'root',
35                  'check_group' => true,
36 -                'group' => 'apache',
37 +                'group' => 'http',
38                  'check_permission' => true,
39                  'permission' => 640,
40              ],
41              APP_CONFIG_PATH . '/setup.php' => [
42                  'check_owner' => true,
43 -                'owner' => 'apache',
44 +                'owner' => 'root',
45                  'check_group' => true,
46 -                'group' => 'apache',
47 +                'group' => 'http',
48                  'check_permission' => true,
49                  'permission' => 660,
50                  'check_filesize' => true,
51 --- eventum-3.1.5/config/sphinx.conf.php~       2016-11-13 12:05:37.000000000 +0200
52 +++ eventum-3.1.5/config/sphinx.conf.php        2016-11-23 03:10:05.855040510 +0200
53 @@ -1,7 +1,7 @@
54  #!/usr/bin/php
55  <?php
56  
57 -require_once __DIR__ . '/../init.php';
58 +require_once '/usr/share/eventum/init.php';
59  
60  if (!defined('SPHINX_LOG_PATH')) {
61      define('SPHINX_LOG_PATH', '/var/log/sphinx/');
This page took 0.042551 seconds and 4 git commands to generate.