Kimai - Zeiterfassung: Unterschied zwischen den Versionen

Aus Wikizone
Wechseln zu: Navigation, Suche
Zeile 3: Zeile 3:
 
http://forum.kimai.org
 
http://forum.kimai.org
  
Installation
+
== Installation ==
 +
 
 +
== Update ==
 +
https://www.kimai.org/documentation/updates/
  
 
==Probleme und Lösungen==
 
==Probleme und Lösungen==

Version vom 14. Juni 2018, 08:31 Uhr

Kimai ist ein Web basiertes Open Source Zeiterfassungs Tool

http://forum.kimai.org

Installation

Update

https://www.kimai.org/documentation/updates/

Probleme und Lösungen

Einträge lassen sich nicht editieren

Abspeichern funktioniert nicht. OK Button zeigt keine Reaktion.

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ß im $_options Array 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
    );