Zarafa Problemliste (Install webaccess-mobile, z-push, etc)


sTaN

Member
Hallo liebe Community,

da noch einige Fehlerchen meines Zarafa 6.40 Servers auf meinem Debian 5.0 VServer behoben werden müssen, ein etwas allgemeinerer Thread, welcher mit allen bestehenden Problemen gefüllt werden soll.

Angefangen beim Installieren vom Zarafa webaccess-mobile 6.40.
Die Vorgehensweise war wie folgt:

Code:
a. tar -xvzf zarafa-webaccess-mobile-6.40.0.tar.gz
b. cp -r php-mobile-webaccess /usr/share/
c. mkdir /var/lib/zarafa-webaccess-mobile/cache
d. mkdir /var/lib/zarafa-webaccess-mobile/templates_c
e. chown www-data:www-data /var/lib/zarafa-webaccess-mobile/cache
f. chown www-data:www-data /var/lib/zarafa-webaccess-mobile/templates_c
g. Hinzufügen der Zeile in /var/www/vhosts/domain.de/conf/vhost_ssl.conf
Alias /webaccess-mobile /usr/share/php-mobile-webaccess/index.php
h. /usr/local/psa/admin/sbin/websrvmng -u --vhost-name=domain.de -r -a
i. /etc/init.d/apache2 restart
Fehler -> blank Page
j. wget http://www.smarty.net/do_download.php?download_file=Smarty-2.6.26.tar.gz
k. tar -xvzf Smarty-2.6.26.tar.gz
l. cp -r internals/ plugins/ Smarty.class.php  Smarty_Compiler.class.php /usr/share/php-mobile-webaccess/smarty
m. vi errors.txt -> Fehlermeldung

Leider erhalte ich trotz dem Einfügen der Smarty Dateien eine leere weiße Seite beim Aufruf von http://domain.de/webaccess-mobile. Die /usr/share/php-mobile-webaccess/error.txt spuckt folgende Fehlermeldung aus:

Code:
[28-Jan-2010 23:09:44] PHP Warning:  Smarty error: problem writing temporary file '/var/lib/zarafa-webaccess-mobile/templates_c/wrt4b620b288ec41' in /usr/share/php-mobile-webaccess/smarty/Smarty.class.php on line 1093
[28-Jan-2010 23:09:44] PHP Warning:  Smarty::include() [<a href='smarty.include'>smarty.include</a>]: Unable to access /var/lib/zarafa-webaccess-mobile/templates_c/%%6A^6A5^6A537DD8%%login.tpl.php in /usr/share/php-mobile-webaccess/smarty/Smarty.class.php on line 1256
[28-Jan-2010 23:09:44] PHP Warning:  Smarty::include(/var/lib/zarafa-webaccess-mobile/templates_c/%%6A^6A5^6A537DD8%%login.tpl.php) [<a href='smarty.include'>smarty.include</a>]: failed to open stream: No such file or directory in /usr/share/php-mobile-webaccess/smarty/Smarty.class.php on line 1256
[28-Jan-2010 23:09:44] PHP Warning:  Smarty::include() [<a href='function.include'>function.include</a>]: Failed opening '/var/lib/zarafa-webaccess-mobile/templates_c/%%6A^6A5^6A537DD8%%login.tpl.php' for inclusion (include_path='/usr/share/php-mobile-webaccess/include/:/usr/share/php-mobile-webaccess/:.:/usr/share/php/') in /usr/share/php-mobile-webaccess/smarty/Smarty.class.php on line 1256

In den php Dateien stehen eigentlich nur Fehlerhandlings drin.
Folgendes steht in der Zeile 1093 der Smarty.class.php (fett gedruckt):

Code:
    /**
     * trigger Smarty error
     *
     * @param string $error_msg
     * @param integer $error_type
     */
    function trigger_error($error_msg, $error_type = E_USER_WARNING)
    {
       [B] trigger_error("Smarty error: $error_msg", $error_type);[/B]
    }

und in Zeile 1256 (fett gedruckt):

Code:
        // if we just need to display the results, don't perform output
        // buffering - for speed
        $_cache_including = $this->_cache_including;
        $this->_cache_including = false;
        if ($display && !$this->caching && count($this->_plugins['outputfilter']) == 0) {
            if ($this->_is_compiled($resource_name, $_smarty_compile_path)
                    || $this->_compile_resource($resource_name, $_smarty_compile_path))
            {
[B]                include($_smarty_compile_path);[/B]
            }

Weitere Probleme folgen nach Klärung :rolleyes:

Grüße,
sTaN
 

Back
Top