Changeset 1071

Show
Ignore:
Timestamp:
03/22/08 00:23:49 (9 months ago)
Author:
joximu
Message:

some smaller fixes: suse and for r1069...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/CHANGELOG

    r1070 r1071  
    22~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    33 
    4 2008-03-20 Benedikt Heintel 
     42008-03-22 Christian Hernmarck 
     5        - DISTS: 
     6                * Fixed: openSuSE small things (DirectoryIndex not only master vhost, *creating* scoreboard dir, /etc/*authlib*/userdb 
     7        - GUI: 
     8                * Fixed #1129: Errors after upgrading to r1069 
     9 
     102008-03-21 Benedikt Heintel 
    511        - DATABASE: 
    612                * Fixed #1085: disable protocols in server status which are not available by default 
  • trunk/Makefile.opensuse

    r1069 r1071  
    6363        $(SYSTEM_MAKE_DIRS) $(SYSTEM_VIRTUAL) 
    6464        $(SYSTEM_MAKE_DIRS) $(SYSTEM_FCGI) 
     65        $(SYSTEM_MAKE_DIRS) $(SYSTEM_SCOREBOARDS) 
    6566        $(SYSTEM_MAKE_DIRS) $(SYSTEM_AWSTATS) 
    6667        $(SYSTEM_MAKE_DIRS) $(SYSTEM_MAIL_VIRTUAL) 
     
    8687        rm -rf $(SYSTEM_VIRTUAL) 
    8788        rm -rf $(SYSTEM_FCGI) 
     89        rm -rf $(SYSTEM_SCOREBOARDS) 
    8890        rm -rf $(SYSTEM_MAIL_VIRTUAL) 
    8991        rm -rf $(SYSTEM_APACHE_BACK_LOG) 
  • trunk/configs/dists/opensuse/apache/00_master.conf

    r1069 r1071  
    6767            Allow from all 
    6868        </Directory> 
    69         DirectoryIndex index.html index.html.var index.php 
    7069    </IfModule> 
    7170 
  • trunk/configs/dists/opensuse/apache/httpd.conf

    r1026 r1071  
    3333 
    3434# 
     35# openSuSE: there is no system wide .php DirectoryIndex with fastcgi 
     36# 
     37 
     38<IfModule mod_fastcgi.c> 
     39    DirectoryIndex index.html index.html.var index.php 
     40</IfModule> 
     41 
     42# 
    3543# Header End 
    3644# 
  • trunk/configs/dists/opensuse/ispcp.conf

    r1068 r1071  
    267267# 
    268268 
    269 # maybe /etc/authlib... has to be tested.. 
    270 AUTHLIB_CONF_DIR = /etc/courier 
     269AUTHLIB_CONF_DIR = /etc/authlib 
    271270 
    272271CMD_MAKEUSERDB = /usr/sbin/makeuserdb 
  • trunk/gui/include/ispcp-config.php

    r1068 r1071  
    1919 */ 
    2020 
    21 if (file_exists("/usr/local/etc/ispcp/ispcp.conf")) { 
     21if (@file_exists("/usr/local/etc/ispcp/ispcp.conf")) { 
    2222        $cfg = "/usr/local/etc/ispcp/ispcp.conf"; 
    2323}