Quote:Can you provide an error message? There should be one in the apache error log.
Uwe
I would love to, at least at would give me some kind of hint what's wrong, but only status-updates are listet - nothing serious, I guess.
/var/log/httpd/error_log
Code:
[Wed Apr 25 10:46:53 2012] [notice] caught SIGTERM, shutting down
Attempt to free unreferenced scalar: SV 0x15d0998, Perl interpreter: 0x1607520 durin
g global destruction.
[Wed Apr 25 11:50:04 2012] [warn] Init: Session Cache is not configured [hint: SSLSe
ssionCache]
[Wed Apr 25 11:50:04 2012] [notice] suEXEC mechanism enabled (wrapper: /usr/sbin/sue
xec)
Attempt to free unreferenced scalar: SV 0x277e788, Perl interpreter: 0x275dea0 durin
g global destruction.
[Wed Apr 25 11:50:04 2012] [notice] Digest: generating secret for digest authenticat
ion ...
[Wed Apr 25 11:50:04 2012] [notice] Digest: done
[Wed Apr 25 11:50:06 2012] [notice] Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.
1a DAV/2 PHP/5.3.10 with Suhosin-Patch mod_perl/2.0.5 Perl/v5.14.2 configured -- res
uming normal operations
[Thu Apr 26 08:32:30 2012] [notice] SIGHUP received. Attempting to restart
Attempt to free unreferenced scalar: SV 0x2777fa8, Perl interpreter: 0x27d2850 durin
g global destruction.
[Thu Apr 26 08:32:30 2012] [notice] Digest: generating secret for digest authenticat
ion ...
[Thu Apr 26 08:32:30 2012] [notice] Digest: done
[Thu Apr 26 08:32:31 2012] [notice] Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.
1a DAV/2 PHP/5.3.10 with Suhosin-Patch mod_perl/2.0.5 Perl/v5.14.2 configured -- res
uming normal operations
[Thu Apr 26 08:50:50 2012] [notice] SIGHUP received. Attempting to restart
Attempt to free unreferenced scalar: SV 0x276b968, Perl interpreter: 0x2763250 durin
g global destruction.
[Thu Apr 26 08:50:50 2012] [notice] Digest: generating secret for digest authenticat
ion ...
[Thu Apr 26 08:50:50 2012] [notice] Digest: done
[Thu Apr 26 08:50:51 2012] [notice] Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.
1a DAV/2 PHP/5.3.10 with Suhosin-Patch mod_perl/2.0.5 Perl/v5.14.2 configured -- resuming normal operations
[Thu Apr 26 08:54:39 2012] [notice] SIGHUP received. Attempting to restart
Attempt to free unreferenced scalar: SV 0x27cadc8, Perl interpreter: 0x27de020 during global destruction.
[Thu Apr 26 08:54:39 2012] [notice] Digest: generating secret for digest authentication ...
[Thu Apr 26 08:54:39 2012] [notice] Digest: done
[Thu Apr 26 08:54:40 2012] [notice] Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1a DAV/2 PHP/5.3.10 with Suhosin-Patch mod_perl/2.0.5 Perl/v5.14.2 configured -- resuming normal operations
[Thu Apr 26 09:03:38 2012] [notice] SIGHUP received. Attempting to restart
Attempt to free unreferenced scalar: SV 0x27cb048, Perl interpreter: 0x27aaa10 during global destruction.
[Thu Apr 26 09:03:38 2012] [notice] Digest: generating secret for digest authentication ...
[Thu Apr 26 09:03:38 2012] [notice] Digest: done
[Thu Apr 26 09:03:39 2012] [notice] Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.1a DAV/2 PHP/5.3.10 with Suhosin-Patch mod_perl/2.0.5 Perl/v5.14.2 configured -- resuming normal operations
One thing I did add in my configuration is, that I included a virtual server in my Apache-Config. Maybe there is something wrong there. I also checked the two corresponding log files configured there - but both are empty.
/etc/httpd/conf/extra/letodms.conf
Code:
<IfModule mod_alias.c>
Alias /letodms /srv/http/letodms/
</IfModule>
<Directory /srv/http/letodms/>
Options None
Order allow,deny
allow from all
</Directory>
<VirtualHost *>
ServerAdmin foo@foofarm.com
DocumentRoot /srv/http/letodms
ServerName letodms.foo.com
ErrorLog logs/letodms.foo.info-error_log
CustomLog logs/letodms.foo.info-access_log common
</VirtualHost>
EDIT
Since yesterday I got an older version of LetoDMS in my virtual ubuntu-server running and I just tried it with the added Apache-Conf-Settings from there. But changing options and putting that Virtualhost stuff out of the file didn't solve the problem.
/etc/httpd/conf/extra/letodms.conf - edited to:
Code:
<IfModule mod_alias.c>
Alias /letodms "/srv/http/letodms"
</IfModule>
<Directory "/srv/http/letodms">
Options -Indexes MultiViews FollowSymLinks
AllowOverride None
Order allow,deny
allow from all
</Directory>