Hi,
thankyou for your reply.
I’ve tryed the trial version on egroupware.de. It works.
So i think this is a server side configuration problem (not a Mac OS Bug).
My document root for the virtual host is the egroupware directory. Could be this configuration the problem ?
any tip, advice or suggestion ?
please help !
Thanks in advance
Here is the apache conf virtualhost
cat /etc/apache2/sites-enabled/001-mail
<VirtualHost *:443>
ServerAdmin webmaster@hidden.it
ServerName mail.hidden.it
SSLEngine on
SSLCertificateFile /etc/ssl/mail.**hidden**.it/mail.**hidden**.it.crt
SSLCertificateKeyFile /etc/ssl/mail.**hidden**.it/mail.**hidden**.it.key
ErrorLog /var/log/apache2/**hidden**_mail-error.log
CustomLog /var/log/apache2/**hidden**_mail-access.log combined
CustomLog /var/log/apache2/**hidden**_mail-access.log deflate
LogFormat '"%r" %{Accept-Encoding}i %{output_info}n/%{input_info}n (%{ratio_info}n%%)' deflate
SetOutputFilter DEFLATE
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
DeflateFilterNote Input input_info
DeflateFilterNote Output output_info
DeflateFilterNote Ratio ratio_info
DeflateBufferSize 80960
# Compression level (1 is less, 9 is more compression)
DeflateCompressionLevel 9
# How much memory should be used by zlib for compression
DeflateMemLevel 9
# Zlib compression window size. The higher this value, the better the compression. 1 - 15.
DeflateWindowSize 15
WEB DAV DEFINITION
Alias /zeus /home/dav/zeus
<Directory /home/dav/zeus>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Location /zeus>
DAV On
AuthType Basic
AuthName "WebDAV File Server"
AuthUserFile /etc/apache2/passwd.dav
Require valid-user
Require user **hidden**
</Location>
Alias /guest /home/dav/guest
<Directory /home/dav/guest>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
<Location /guest>
DAV On
AuthType Basic
AuthName "WebDAV File Server"
AuthUserFile /etc/apache2/passwd.dav
Require valid-user
Require user **hidden** **hidden**
</Location>
WEB DAV DEFINITION ENDED
Apache and PHP configuration for EGroupware
DocumentRoot /usr/share/egroupware
this makes EGroupware available for all vhosts
Alias /egroupware /usr/share/egroupware
<Directory /usr/share/egroupware/>
Options FollowSymLinks ExecCGI
AllowOverride FileInfo
Order allow,deny
Allow from all
DirectoryIndex index.html index.php
AddHandler cgi-script .cgi
AddDefaultCharset Off
php_flag file_uploads on
php_flag log_errors on
php_flag magic_quotes_gpc off
php_flag magic_quotes_runtime off
php_flag register_globals off
php_flag short_open_tag on
php_flag track_vars on
php_flag display_errors off
# E_ALL & ~E_NOTICE & ~E_STRICT = 8191 - 8 - 2048 = 6135
php_value error_reporting 6135
php_value max_execution_time 90
php_admin_value mbstring.func_overload 7
php_value memory_limit 64M
php_value session.gc_maxlifetime 14400
php_value include_path .:/usr/share/php:/usr/local/zend/share/pear
php_admin_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/tmp:/usr/share/php:/usr/local/zend/share/pear:/usr/bin/zip:/usr/share/jpgraph:/usr/bin/tnef:/usr/bin/aspell
php_value upload_max_filesize 64M
php_admin_value upload_tmp_dir /tmp
php_value post_max_size 65M
<Files ~ "\.inc\.php$">
Order allow,deny
Deny from all
</Files>
</Directory>
<Directory /usr/share/egroupware/phpsysinfo/>
php_admin_value open_basedir /
</Directory>
<Directory /usr/share/egroupware/gallery/>
php_admin_value open_basedir /usr/share/egroupware:/var/lib/egroupware:/tmp:/usr/share/php:/usr/local/zend/share/pear:/usr/bin:/bin
</Directory>
<Location /egroupware/rpc.php>
php_admin_value mbstring.func_overload 0
Order allow,deny
Allow from all
</Location>