Kann Confixx Oberfläche nach Installtion nicht aufrufen.

pfreak

Member
Hallo,

Ich habe folgendes Problem. Ich habe mir auf mein Zweiten Root Server Confixx installirt, habe es so gemacht wie es in der Dokumentation von Confixx Stand. Lief auch bis jetzt ohne Probleme. Jetzt Ist mein Problem, wenn ich versuche die Confixx Oberfläche aufzurufen, erhalte ich folgende Fehlermeldung

Code:
Forbidden

You don't have permission to access /index.php on this server.
Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g Server at svr2.vluxhost.de Port 80

Da ich das Problem ja auf mein Dritten Root Server hatte, habe ich denn Confixx Ordner die Schreibrechte 755 gebenen. Das ganze habe ich so gemacht

Code:
chmod -R 755 /var/www/confixx

So, dann habe ich wieder versucht diie Oberfläche aufzurufen. Leider Ohne Erfolg. Die Error Log sagt:

Code:
[Sun Aug 23 17:50:55 2009] [notice] caught SIGTERM, shutting down
[Sun Aug 23 17:50:56 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Sun Aug 23 17:50:56 2009] [warn] RSA server certificate CommonName (CN) `Parallels Confixx' does NOT match server name!?
[Sun Aug 23 17:50:56 2009] [warn] Init: SSL server IP/port conflict: 80.82.223.37:443 (/etc/apache2/confixx_mhost.conf:127) vs. svr2.vluxhost.de:443 (/etc/apache2/confixx_mhost.conf:174)
[Sun Aug 23 17:50:56 2009] [warn] Init: You should not use name-based virtual hosts in conjunction with SSL!!
[Sun Aug 23 17:50:56 2009] [notice] suEXEC mechanism enabled (wrapper: /usr/lib/apache2/suexec)
[Sun Aug 23 17:50:56 2009] [notice] mod_python: Creating 8 session mutexes based on 150 max processes and 0 max threads.
[Sun Aug 23 17:50:56 2009] [notice] mod_python: using mutex_directory /tmp 
[Sun Aug 23 17:50:56 2009] [warn] RSA server certificate is a CA certificate (BasicConstraints: CA == TRUE !?)
[Sun Aug 23 17:50:56 2009] [warn] RSA server certificate CommonName (CN) `Parallels Confixx' does NOT match server name!?
[Sun Aug 23 17:50:56 2009] [warn] Init: SSL server IP/port conflict: 80.82.223.37:443 (/etc/apache2/confixx_mhost.conf:127) vs. svr2.vluxhost.de:443 (/etc/apache2/confixx_mhost.conf:174)
[Sun Aug 23 17:50:56 2009] [warn] Init: You should not use name-based virtual hosts in conjunction with SSL!!
[Sun Aug 23 17:50:56 2009] [notice] Apache/2.2.9 (Debian) PHP/5.2.6-1+lenny3 with Suhosin-Patch mod_python/3.3.1 Python/2.5.2 mod_ssl/2.2.9 OpenSSL/0.9.8g configured -- resuming normal operations

Jetzt weiß ich echt nicht mehr Weiter. Ich poste mal die "confixx_mhost.conf" und "ls -al /var/www" und "ls -al /var/www/confixx"

"confixx_mhost.conf"
Code:
############### PARALLELS CONFIXX APACHE MAIN CONFIG FILE #################
# created at Sun Aug 23 17:49:41 2009
#
#            !!! Do not make any changes in this file !!!
#
# 1. We cannot guarantee that the software will work properly, if 
# the contents of this file are modified.
# 2. This file would be rewritten after each Parallels Confixx software update and 
# in some other cases. Thus all your changes would be lost unless you made
# a backup of the file.
#
# If you need to modify this file, you can insert some custom "Include" 
# directives. E.g. 
#   Include /path/to/your/file
# Includes inserted directly after <VirtualHost> tag would keep their 
# location inchanged after the file is updated. Other includes would 
# be moved to be inserted before the </VirtualHost> tag.
##########################################################################

php_admin_value include_path .

<Directory "/var/www/confixx/html">

  AllowOverride all

  <IfModule mod_access.c>
    Allow from all
  </IfModule>
  <IfModule mod_authz_host.c>
    Allow from all
  </IfModule>
				
  <IfModule mod_rewrite.c>

    RewriteEngine On
    Options +FollowSymlinks

    RewriteRule ^reseller/res[0-9]+/(.*)$ reseller/$1 [L]

    RewriteRule ^user/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+/(.*)$ user/$1 [L]

    RewriteRule ^ftplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+/(.*)$ ftplogin/$1 [L]
    RewriteRule ^ftplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+f[0-9]+/(.*)$ ftplogin/$1 [L]

    RewriteRule ^poplogin/[a-zA-Z][-a-zA-Z0-9_]{0,4}[0-9]+p[0-9]+/(.*)$ poplogin/$1 [L]

  </IfModule>

  AddDefaultCharset off

  php_admin_flag engine on

</Directory>


NameVirtualHost 80.82.223.37:80

<VirtualHost 80.82.223.37:80>

  ServerName 80.82.223.37

  DocumentRoot /var/www/confixx/html/gesperrt

  Options FollowSymLinks
  php_admin_flag safe_mode Off
  php_admin_flag file_uploads On
  php_admin_flag track_vars On
  php_admin_flag magic_quotes_runtime Off
  php_admin_flag magic_quotes_gpc Off
  php_admin_flag allow_url_fopen Off

  php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
  php_admin_value default_charset none
  php_admin_value open_basedir /var/www/confixx

  <IfModule mod_dir.c>
    DirectoryIndex index.php index.html index.htm index.shtml index.cgi
  </IfModule>


</VirtualHost>

<VirtualHost 80.82.223.37:80>

  ServerName svr2.vluxhost.de
	
  #User confixx
  #Group confixx
  DocumentRoot /var/www/confixx/html
  Options FollowSymLinks


  php_admin_flag safe_mode Off
  php_admin_flag file_uploads On
  php_admin_flag track_vars On
  php_admin_flag magic_quotes_runtime Off
  php_admin_flag magic_quotes_gpc Off
  php_admin_value upload_tmp_dir /var/www/confixx/tmp
  php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
  php_admin_value default_charset none
  php_admin_value open_basedir /var/www/confixx
  php_admin_flag allow_url_fopen Off

  php_admin_value session.cookie_path /
  php_admin_value session.auto_start 0
  php_admin_value session.gc_maxlifetime 1800
  php_admin_value session.use_cookies 1
  php_admin_value session.cookie_lifetime 0
  php_admin_value session.cookie_secure Off
  php_admin_value session.use_trans_sid 0

  ScriptAlias /cgi-bin/ /var/www/confixx/html/cgi-bin/
	
  <IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.shtml index.cgi index.php
  </IfModule>


  CustomLog /var/log/apache2/svr2.vluxhost.de_access.log "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-agent}i\""
  ErrorLog /var/log/apache2/svr2.vluxhost.de_error.log


</VirtualHost>

NameVirtualHost 80.82.223.37:443

<VirtualHost 80.82.223.37:443>

  ServerName 80.82.223.37

  DocumentRoot /var/www/confixx/html/gesperrt

  Options FollowSymLinks
  php_admin_flag safe_mode Off
  php_admin_flag file_uploads On
  php_admin_flag track_vars On
  php_admin_flag magic_quotes_runtime Off
  php_admin_flag magic_quotes_gpc Off
  php_admin_flag allow_url_fopen Off

  php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
  php_admin_value default_charset none
  php_admin_value open_basedir /var/www/confixx

  <IfModule mod_dir.c>
    DirectoryIndex index.php index.html index.htm index.shtml index.cgi
  </IfModule>


  <IfModule mod_ssl.c>

    SSLEngine on
    SSLCertificateKeyFile /etc/apache2/ssl.key/svr2.vluxhost.de.key
    SSLCertificateFile /etc/apache2/ssl.crt/svr2.vluxhost.de.crt
		
    

    SetEnvIf User-Agent ".*MSIE.*" \
      nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0

    <Files ~ "\.(cgi|shtml|phtml|php3?)$">
      SSLOptions +StdEnvVars
    </Files>

    <Directory "/var/www/confixx/html/cgi-bin">
      SSLOptions +StdEnvVars
    </Directory>

  </IfModule>
		

</VirtualHost>

<VirtualHost 80.82.223.37:443>

  ServerName svr2.vluxhost.de
	
  #User confixx
  #Group confixx
  DocumentRoot /var/www/confixx/html
  Options FollowSymLinks


  php_admin_flag safe_mode Off
  php_admin_flag file_uploads On
  php_admin_flag track_vars On
  php_admin_flag magic_quotes_runtime Off
  php_admin_flag magic_quotes_gpc Off
  php_admin_value upload_tmp_dir /var/www/confixx/tmp
  php_admin_value include_path ".:/var/www/confixx/html/include:/var/www/confixx/html:/var/www/confixx/html/PEAR"
  php_admin_value default_charset none
  php_admin_value open_basedir /var/www/confixx
  php_admin_flag allow_url_fopen Off

  php_admin_value session.cookie_path /
  php_admin_value session.auto_start 0
  php_admin_value session.gc_maxlifetime 1800
  php_admin_value session.use_cookies 1
  php_admin_value session.cookie_lifetime 0
  php_admin_value session.cookie_secure Off
  php_admin_value session.use_trans_sid 0

  ScriptAlias /cgi-bin/ /var/www/confixx/html/cgi-bin/
	
  <IfModule mod_dir.c>
    DirectoryIndex index.html index.htm index.shtml index.cgi index.php
  </IfModule>


  <IfModule mod_ssl.c>

    SSLEngine on
    SSLCertificateKeyFile /etc/apache2/ssl.key/svr2.vluxhost.de.key
    SSLCertificateFile /etc/apache2/ssl.crt/svr2.vluxhost.de.crt
		
    

    SetEnvIf User-Agent ".*MSIE.*" \
      nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0

    <Files ~ "\.(cgi|shtml|phtml|php3?)$">
      SSLOptions +StdEnvVars
    </Files>

    <Directory "/var/www/confixx/html/cgi-bin">
      SSLOptions +StdEnvVars
    </Directory>

  </IfModule>
		

  CustomLog /var/log/apache2/svr2.vluxhost.de_access.ssl.log "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-agent}i\""
  ErrorLog /var/log/apache2/svr2.vluxhost.de_error.ssl.log


</VirtualHost>

Include /etc/apache2/confixx_vhost.conf
# ^- Dieser Eintrag sollte unbedingt am Ende der Datei bleiben
## /PARALLELS CONFIXX

ausgabe von "ls -al /var/www"
Code:
insgesamt 28
drwxr-xr-x  6 root    root     4096 23. Aug 16:33 .
drwxr-xr-x 17 root    root     4096 14. Jun 12:57 ..
drwxr-xr-x  2 root    root     4096 20. Jul 18:29 awstats
drwxr-xr-x  7 confixx www-data 4096 23. Aug 16:33 confixx
-rw-r--r--  1 root    root     1417 29. Jun 15:05 index.html
drwxr-xr-x  3 root    root     4096 23. Aug 16:33 kunden
drwxr-xr-x  2 root    root     4096 23. Aug 16:20 webalizer

ausgabe von "ls -al /var/www/confixx"
Code:
insgesamt 36
drwxr-xr-x  7 confixx www-data 4096 23. Aug 16:33 .
drwxr-xr-x  6 root    root     4096 23. Aug 16:33 ..
drwxr-xr-x  2 confixx confixx  4096 23. Aug 16:33 awstats
drwxr-xr-x  2 confixx confixx  4096 23. Aug 16:33 bin
-rwxr-xr-x  1 confixx www-data  812 23. Aug 16:33 events.inc.php
drwxr-xr-x 22 confixx confixx  4096 23. Aug 16:33 html
drwxr-xr-x  4 confixx www-data 4096 23. Aug 16:33 sbin
-rwxr-xr-x  1 confixx www-data 3019 23. Aug 16:33 settings.inc.php
drwxr-xr-x  3 confixx confixx  4096 23. Aug 16:33 tmp

Danke schonmal im Vorraus.

MFG
pfreak
 
Was ist denn die Ausgabe von:
Code:
ls -al /var/www/confixx/html
Der error.log ist nicht der einzige error.log unter Confixx. Schau mal in /var/log/apache2 nacht, dort müsste auch noch sowas wie: hostname_error.log sein.
 
Die Ausgabe "ls -al /var/www/confixx/html" sagt

Code:
insgesamt 432
drwxr-xr-x 22 confixx confixx   4096 23. Aug 16:33 .
drwxr-xr-x  7 confixx www-data  4096 23. Aug 16:33 ..
-rwxr-xr-x  1 confixx confixx     43 23. Aug 16:33 1px.gif
-rwxr-xr-x  1 confixx confixx     43 23. Aug 16:33 1x1.gif
drwxr-xr-x  3 confixx confixx  12288 23. Aug 16:33 admin
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 anbieter
-rwxr-xr-x  1 confixx confixx    119 23. Aug 16:33 back.gif
-rwxr-xr-x  1 confixx confixx   4234 23. Aug 16:33 bckg.gif
-rwxr-xr-x  1 confixx confixx   1800 23. Aug 16:33 bottom.html
-rwxr-xr-x  1 confixx confixx  16186 23. Aug 16:33 box.jpg
drwxr-xr-x  5 confixx confixx   4096 23. Aug 16:33 cgi-bin
-rwxr-xr-x  1 confixx confixx   5773 23. Aug 16:33 dnr.php
-rwxr-xr-x  1 confixx confixx     64 23. Aug 16:33 emailtransf.gif
-rwxr-xr-x  1 confixx confixx     50 23. Aug 16:33 events.inc.php
-rwxr-xr-x  1 confixx confixx  17542 23. Aug 16:33 favicon.ico
-rwxr-xr-x  1 confixx confixx   3468 23. Aug 16:33 fehler.inc.php
-rwxr-xr-x  1 confixx confixx    128 23. Aug 16:33 file.gif
-rwxr-xr-x  1 confixx confixx    132 23. Aug 16:33 folder.gif
drwxr-xr-x  3 confixx confixx   4096 23. Aug 16:33 ftplogin
-rwxr-xr-x  1 confixx confixx     64 23. Aug 16:33 ftptransf.gif
-rwxr-xr-x  1 confixx confixx  34743 23. Aug 16:33 functions.inc.php
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 gesperrt
-rwxr-xr-x  1 confixx confixx   3642 23. Aug 16:33 head_tile_confixx.jpg
-rwxr-xr-x  1 confixx confixx   2751 23. Aug 16:33 head_tile.jpg
drwxr-xr-x 11 confixx confixx   4096 23. Aug 16:33 include
-rwxrwxrwx  1 confixx confixx    219 23. Aug 16:33 index.php
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 install
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 js
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 kunde
drwxr-xr-x 10 confixx confixx   4096 23. Aug 16:33 languages
-rwxr-xr-x  1 confixx confixx    302 23. Aug 16:33 left.html
-rwxr-xr-x  1 confixx confixx   4381 23. Aug 16:33 load_ext_check.php
-rwxr-xr-x  1 confixx confixx   9081 23. Aug 16:33 loginform.php
-rwxr-xr-x  1 confixx confixx  10841 23. Aug 16:33 login-header.gif
-rwxr-xr-x  1 confixx confixx   4147 23. Aug 16:33 login.html
-rwxr-xr-x  1 confixx confixx  12133 23. Aug 16:33 login.php
-rwxr-xr-x  1 confixx confixx   2916 23. Aug 16:33 loginscreen.gif
-rwxr-xr-x  1 confixx confixx   2174 23. Aug 16:33 logo_confixx.gif
-rwxr-xr-x  1 confixx confixx   2198 23. Aug 16:33 logo.gif
-rwxr-xr-x  1 confixx confixx    841 23. Aug 16:33 logout.php
-rwxr-xr-x  1 confixx confixx   6068 23. Aug 16:33 lostpwd.php
drwxr-xr-x  2 confixx confixx  12288 23. Aug 16:33 master
-rwxr-xr-x  1 confixx confixx  31448 23. Aug 16:33 mc_default_help.htm
-rwxr-xr-x  1 confixx confixx   1863 23. Aug 16:33 noaccess.inc.php
-rwxr-xr-x  1 confixx confixx   1832 23. Aug 16:33 parallels_but.gif
-rwxr-xr-x  1 confixx confixx    999 23. Aug 16:33 parallels_logo_confixx.gif
-rwxr-xr-x  1 confixx confixx   2524 23. Aug 16:33 parallels_logo.gif
drwxr-xr-x  5 confixx confixx   4096 23. Aug 16:33 PEAR
drwxr-xr-x  3 confixx confixx   4096 23. Aug 16:33 poplogin
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 reg
drwxr-xr-x  4 confixx confixx   4096 23. Aug 16:33 reseller
-rwxr-xr-x  1 confixx confixx    235 23. Aug 16:33 right.html
-rwxr-xr-x  1 confixx confixx  18038 23. Aug 16:33 sessions.inc.php
-rwxr-xr-x  1 confixx confixx     52 23. Aug 16:33 settings.inc.php
drwxr-xr-x 16 confixx www-data  4096 23. Aug 16:33 skins
-rwxr-xr-x  1 confixx confixx     43 23. Aug 16:33 spacer.gif
-rwxr-xr-x  1 confixx confixx    798 23. Aug 16:33 style.css
-rwxr-xr-x  1 confixx confixx    801 23. Aug 16:33 swsoftpoweredby.gif
-rwxr-xr-x  1 confixx confixx   2465 23. Aug 16:33 swsoftpoweredby.png
-rwxr-xr-x  1 confixx confixx   3590 23. Aug 16:33 title.html
-rwxr-xr-x  1 confixx confixx   2370 23. Aug 16:33 toolbar.html
drwxr-xr-x  6 confixx confixx   4096 23. Aug 16:33 user
-rwxr-xr-x  1 confixx confixx    405 23. Aug 16:33 version.php
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 webalizer
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 webftp
drwxr-xr-x  2 confixx confixx   4096 23. Aug 16:33 webmail
-rwxr-xr-x  1 confixx confixx     64 23. Aug 16:33 webtransf.gif

Und die Error Log des Hostname

Code:
[Sun Aug 23 16:39:57 2009] [error] [client 77.20.27.24] File does not exist: /var/www/confixx/html/<, referer: http://svr2.vluxhost.de/title.html
[Sun Aug 23 20:09:22 2009] [error] [client 87.155.243.148] File does not exist: /var/www/confixx/html/<, referer: http://svr2.vluxhost.de/title.html

MFG
pfreak
 
Back
Top