Hi.
Quote:Apache
You're missing the master configuration file (/etc/apache2/sites-available/00_master.conf) or the corresponding symlink to enable it (/etc/apache2/sites-enabled/00_master.conf -> /etc/apache2/sites-available/00_master.conf).
I've this:
Quote:panel:/etc/apache2/sites-enabled# ls -lh
total 0
lrwxrwxrwx 1 root root 43 2009-09-05 15:40 00_master.conf -> /etc/apache2/sites-available/00_master.conf
lrwxrwxrwx 1 root root 44 2009-09-05 15:40 01_awstats.conf -> /etc/apache2/sites-available/01_awstats.conf
lrwxrwxrwx 1 root root 39 2009-09-05 15:41 ispcp.conf -> /etc/apache2/sites-available/ispcp.conf
and this:
Quote:panel:/etc/apache2/sites-available# ls -lh
total 456K
-rw-r--r-- 1 root root 2.8K 2010-02-15 19:11 00_master.conf
-rw-r--r-- 1 root root 1.5K 2010-02-15 19:11 01_awstats.conf
-rw-r--r-- 1 root root 950 2009-07-14 17:00 default
-rw-r--r-- 1 root root 7.2K 2009-07-14 17:00 default-ssl
-rw-r--r-- 1 root root 432K 2010-02-16 09:41 ispcp.conf
How ever, I haven't this file:
Quote:panel:/etc/apache2/sites-available# ls -lh /etc/ispcp/apache2/00_master.conf
ls: cannot access /etc/ispcp/apache2/00_master.conf: No such file or directory
my a2ensite reply
Quote:panel:/etc/apache2/sites-enabled# a2ensite 00_master.conf
Site 00_master.conf already enabled
And my 00_master.conf
Quote:panel:~# cat /etc/apache2/sites-enabled/00_master.conf
#
# ispCP Ï (OMEGA) a Virtual Hosting Control System
#
# @copyright 2001-2006 by moleSoftware GmbH
# @copyright 2006-2009 by ispCP | http://isp-control.net
# @version SVN: $Id: 00_master.conf 1574 2009-03-05 05:57:05Z benedikt $
# @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 version 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 XX.YY.ZZ.TT:80>
ServerAdmin uuuuuuu@gmail.com
DocumentRoot /var/www/ispcp/gui
ServerName panel.dimensionip.com.ar
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
#
I don't know why have a 404 reply from apache.
Any website or panel or webmail get next:
Quote:The requested URL / was not found on this server.
Have you any hint ?
thank you very much