Probleme bei der Installation von ISPCP

ererbus

New Member
Hallo,

auf meinen eigenen Server wollte ich heute das Tool ISPCP installieren, ich habe jahrelang mit dem Vorgänger VHCS2 gearbeitet und auch 2 mal installiert, weswegen ich davon ausging, dass die Installation mit ISPCP genauso gut abläuft (lief sie eigentlich auch).

Genutzt wird ein Debian 4 Linux Server .

Nun das folgende Problem bestand:

Nach der vollständigen (Anleitung habe ich von der offiziellen Seite genommen) Installation des Tools, unter verwendung der Adresse isp.gamelion.de, welche auf diesem Server verweist (ich habs selbst so eingestellt und vor der Installation von ISPCP wurde mir beim aufrufen der Domain auch diese Standard Apache ich bin da MEldung angezeigt), wollte ich diese aufrufen. Leider wurde mir statt des Programms ein "Seite Ladefehler" im Firefox angezeigt ... Apache2 läuft.

Da ich im Netz geschaut habe, obs eine Lösung gibt, diese jedoch nicht finden konnte, wende ich mich nun an euch. Ich hoffe ihr könnt mir bei meinem Problem helfen.

Anbei noch der Inhalt der 00_master.conf aus dem Verzeichnis /etc/apache2/sites-available, welche identisch mit der 00_master.conf aus dem Verzeichnis /etc/apache2/sites-enabled ist:

PHP:
#
# ispCP ω (OMEGA) a Virtual Hosting Control System
#
# @copyright	2001-2006 by moleSoftware GmbH
# @copyright	2006-2008 by ispCP | http://isp-control.net
# @version		SVN: $Id$
# @link			http://isp-control.net
# @author		ispCP Team
#
# @license
#   This program is free software; you can redistribute it and/or modify it under
#   the terms of the MPL General Public License as published by the Free Software
#   Foundation; either ver	sion 1.1 of the License, or (at your option) any later
#   version.
#   You should have received a copy of the MPL Mozilla Public License along with
#   this program; if not, write to the Open Source Initiative (OSI)
#   http://opensource.org | osi@opensource.org
#
################################################################################
#
# Master Begin
#

<VirtualHost 217.172.165.126:80>

    ServerAdmin     server@gamelion.de
    DocumentRoot    /var/www/ispcp/gui

    ServerName      isp.gamelion.de

    Alias /errors   /var/www/ispcp/gui/errordocs/

    ErrorDocument 401 /errors/401.html
    ErrorDocument 403 /errors/403.html
    ErrorDocument 404 /errors/404.html
    ErrorDocument 500 /errors/500.html
    ErrorDocument 503 /errors/503.html

    Alias /pma      /var/www/ispcp/gui/tools/pma/
    Alias /webmail  /var/www/ispcp/gui/tools/webmail/
    Alias /ftp      /var/www/ispcp/gui/tools/filemanager/

    <IfModule suexec_module>
           SuexecUserGroup vu2000 vu2000
    </IfModule>

    <Directory /var/www/ispcp/gui>
        Options -Indexes Includes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>

    <IfModule mod_fcgid.c>
        <Directory /var/www/ispcp/gui>
            FCGIWrapper /var/www/fcgi/master/php5-fcgi-starter .php
            Options +ExecCGI
        </Directory>
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>
    <IfModule mod_fastcgi.c>
        ScriptAlias /php5/ /var/www/fcgi/master/
        <Directory "/var/www/fcgi/master">
            AllowOverride None
            Options +ExecCGI MultiViews -Indexes
            Order allow,deny
            Allow from all
        </Directory>
    </IfModule>

    <IfModule mod_php5.c>
        <Directory /var/www/ispcp/gui>
            php_admin_value open_basedir "/var/www/ispcp/gui/:/etc/ispcp/:/var/run/ispcp.lock:/proc/:/bin/df:/bin/mount:/var/log/rkhunter.log:/var/log/chkrootkit.log:/usr/share/php/"
            php_admin_value session.save_path "/var/www/ispcp/gui/phptmp/"
            php_admin_value upload_tmp_dir "/var/www/ispcp/gui/phptmp/"
        </Directory>
    </IfModule>

</VirtualHost>

#
# Master End
#

Vielen Dank im Vorraus für eure Hilfe

Viele Grüße
Andreas
 
Back
Top