Kimai - Zeiterfassung: Unterschied zwischen den Versionen
Aus Wikizone
Steff (Diskussion | Beiträge) |
|||
| Zeile 5: | Zeile 5: | ||
Installation | Installation | ||
| − | Probleme und Lösungen | + | ==Probleme und Lösungen== |
| − | + | === Einträge lassen sich nicht editieren === | |
| + | Abspeichern funktioniert nicht. | ||
| + | |||
http://forum.kimai.org/index.php?topic=2318.0 | http://forum.kimai.org/index.php?topic=2318.0 | ||
| + | |||
| + | '''Lösung:''' | ||
| + | |||
| + | zend cache datei muß vollen Pfad enthalten | ||
| + | |||
| + | vor v1.0: | ||
| + | libraries/Zend/Cache/Backend/File.php | ||
| + | nach 1.0 liegt die Datei unter | ||
| + | libraries/zendframework/zendframework/library/Zend/Cache/Backend/File.php | ||
| + | |||
| + | Hier muß in Options der absolute Pfad zur temporary Datei eingetragen werden. | ||
| + | |||
| + | statt: | ||
| + | <syntaxhighlight lang="php"> | ||
| + | protected $_options = array( | ||
| + | 'cache_dir' => 'null', | ||
| + | 'file_locking' => true, | ||
| + | 'read_control' => true, | ||
| + | 'read_control_type' => 'crc32', | ||
| + | 'hashed_directory_level' => 0, | ||
| + | 'hashed_directory_umask' => 0700, | ||
| + | 'file_name_prefix' => 'zend_cache', | ||
| + | 'cache_file_umask' => 0600, | ||
| + | 'metadatas_array_max_size' => 100 | ||
| + | ); | ||
| + | </syntaxhighlight> | ||
| + | z.B. | ||
| + | <syntaxhighlight lang="php"> | ||
| + | protected $_options = array( | ||
| + | 'cache_dir' => '/www/htdocs/bitneun/time.stephanschlegel.de/temporary', | ||
| + | 'file_locking' => true, | ||
| + | 'read_control' => true, | ||
| + | 'read_control_type' => 'crc32', | ||
| + | 'hashed_directory_level' => 0, | ||
| + | 'hashed_directory_umask' => 0700, | ||
| + | 'file_name_prefix' => 'zend_cache', | ||
| + | 'cache_file_umask' => 0600, | ||
| + | 'metadatas_array_max_size' => 100 | ||
| + | ); | ||
| + | </syntaxhighlight> | ||
Version vom 29. Juli 2016, 08:28 Uhr
Kimai ist ein Web basiertes Open Source Zeiterfassungs Tool
Installation
Probleme und Lösungen
Einträge lassen sich nicht editieren
Abspeichern funktioniert nicht.
http://forum.kimai.org/index.php?topic=2318.0
Lösung:
zend cache datei muß vollen Pfad enthalten
vor v1.0:
libraries/Zend/Cache/Backend/File.php
nach 1.0 liegt die Datei unter
libraries/zendframework/zendframework/library/Zend/Cache/Backend/File.php
Hier muß in Options der absolute Pfad zur temporary Datei eingetragen werden.
statt:
protected $_options = array(
'cache_dir' => 'null',
'file_locking' => true,
'read_control' => true,
'read_control_type' => 'crc32',
'hashed_directory_level' => 0,
'hashed_directory_umask' => 0700,
'file_name_prefix' => 'zend_cache',
'cache_file_umask' => 0600,
'metadatas_array_max_size' => 100
);
z.B.
protected $_options = array(
'cache_dir' => '/www/htdocs/bitneun/time.stephanschlegel.de/temporary',
'file_locking' => true,
'read_control' => true,
'read_control_type' => 'crc32',
'hashed_directory_level' => 0,
'hashed_directory_umask' => 0700,
'file_name_prefix' => 'zend_cache',
'cache_file_umask' => 0600,
'metadatas_array_max_size' => 100
);