nicht erreichbar

Irgendwelche Probleme mit XAMPP für Windows? Dann ist hier genau der richtige Ort um nachzufragen.

nicht erreichbar

Postby pk910 » 16. May 2006 17:01

Ich habe alles gemacht, beim Router Portforwarding aktiviert und eingerichetet, bei der Firwewall angemeldet...
Folgendes steht beimir:
<VirtualHost *:80>
ServerName www.pk910.de
ServerAdmin webmaster@pk910.de
DocumentRoot c:\webseiten\a\htdocs
<Directory "c:\webseiten\a\htdocs">
AllowOverride All
Options IncludesNoExec
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

Apache startet normal... Meine Webseite wird jedoch nicht gefunden
Wenn jemand lust hat: Remote unterstützung über MSN Messenger meine E-Mail: philipp0@hotmail.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55

Postby deepsurfer » 16. May 2006 17:22

Der Domainname ist nicht bekannt somit kann eine Verbindung gar nicht aufgebaut werden.

Hast du auch
#NameVirtualHost *:80
die raute entfernt, sonst werden die VHOSTs nicht angenommen.
chirio Deep
Wie sagte einst der MCP aus Tron auf dem Bildschirm zu schreiben Pflegte
" ... end of communication ... "
User avatar
deepsurfer
AF Moderator
 
Posts: 6440
Joined: 23. November 2004 10:44
Location: Cologne
Operating System: Win-XP / Win7 / Linux -Debian

Postby pk910 » 17. May 2006 19:02

Also so?

Code: Select all
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost www.pk910.de:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost *:80>
    ServerName www.pk910.de
    ServerAdmin webmaster@pk910.de
    DocumentRoot c:\webseiten\a\htdocs
<Directory "c:\webseiten\a\htdocs">
AllowOverride All
        Options IncludesNoExec
        Order allow,deny
        Allow from all
</Directory>
</VirtualHost>

##<VirtualHost *:80>
##    ServerAdmin webmaster@dummy-host2.example.com
##    DocumentRoot /www/docs/dummy-host2.example.com
##    ServerName dummy-host2.example.com
##    ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
##    CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common
##</VirtualHost>


Es geht aber nicht... Bitte gebt mir mal ne ganze konfiguration
Dies ist meine Webseite... Wenn ihr kostenlose Java, PHP scripts braucht kommt vorbei.
http://www.scripts-seite.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55

Postby pk910 » 18. May 2006 11:10

Ich bin euch sehr Dankbar, wenn ihr mir helft
Dies ist meine Webseite... Wenn ihr kostenlose Java, PHP scripts braucht kommt vorbei.
http://www.scripts-seite.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55

Postby pk910 » 18. May 2006 14:30

Hier noch die Fehler meldung:
Image

Dazu die config Datei:

Code: Select all
#
# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost 102.168.2.100:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#
<VirtualHost 102.168.2.100:80>
    ServerName www.pk910.de
    ServerAdmin webmaster@pk910.de
    DocumentRoot c:\webseiten\a\htdocs
<Directory "c:\webseiten\a\htdocs">
AllowOverride All
        Options IncludesNoExec
        Order allow,deny
        Allow from all
</Directory>
</VirtualHost>

##<VirtualHost *:80>
##    ServerAdmin webmaster@dummy-host2.example.com
##    DocumentRoot /www/docs/dummy-host2.example.com
##    ServerName dummy-host2.example.com
##    ErrorLog @rel_logfiledir@/dummy-host2.example.com-error_log
##    CustomLog @rel_logfiledir@/dummy-host2.example.com-access_log common
##</VirtualHost>





Bitte helft mir
Dies ist meine Webseite... Wenn ihr kostenlose Java, PHP scripts braucht kommt vorbei.
http://www.scripts-seite.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55

Postby deepsurfer » 19. May 2006 09:32

Laut der Fehlermeldung (siehe terminalBild) kann der Apache snicht starten weil wohl der Port 80 Blockiert.

Bitte checke jetzt erstmal ab..

- Skype ??
- IIS ??
- xapp-apache richtig gestop, sodass er auch in der Prozessliste nicht mehr auftaucht ?
chirio Deep
Wie sagte einst der MCP aus Tron auf dem Bildschirm zu schreiben Pflegte
" ... end of communication ... "
User avatar
deepsurfer
AF Moderator
 
Posts: 6440
Joined: 23. November 2004 10:44
Location: Cologne
Operating System: Win-XP / Win7 / Linux -Debian

Postby pk910 » 28. May 2006 11:59

Jetzt hab ichs so:
Code: Select all

# Virtual Hosts
#
# If you want to maintain multiple domains/hostnames on your
# machine you can setup VirtualHost containers for them. Most configurations
# use only name-based virtual hosts so the server doesn't need to worry about
# IP addresses. This is indicated by the asterisks in the directives below.
#
# Please see the documentation at
# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
# for further details before you try to setup virtual hosts.
#
# You may use the command line option '-S' to verify your virtual host
# configuration.

#
# Use name-based virtual hosting.
#
NameVirtualHost 192.168.2.24:80

#
# VirtualHost example:
# Almost any Apache directive may go into a VirtualHost container.
# The first VirtualHost section is used for all requests that do not
# match a ServerName or ServerAlias in any <VirtualHost> block.
#

<VirtualHost 192.168.2.24:80>
ServerAdmin webmaster@pk910.de
DocumentRoot /XAMPP/www/pk910
ServerName pk910.de.com
ErrorLog @rel_logfiledir@/pk910.de-error_log
CustomLog @rel_logfiledir@/pk910.de-access_log common
</VirtualHost>



Apache startet aber nicht... Nicht mal ne Fehlermeldung...
Dies ist meine Webseite... Wenn ihr kostenlose Java, PHP scripts braucht kommt vorbei.
http://www.scripts-seite.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55

Postby deepsurfer » 28. May 2006 12:01

Apache startet aber nicht... Nicht mal ne Fehlermeldung...

Öffne bitte eine DOSbox und starte den XAMPP-Apachen mal manuell mit apache_start.bat
Wenn er nicht startet muss eine Fehlermeldung erscheinen !
chirio Deep
Wie sagte einst der MCP aus Tron auf dem Bildschirm zu schreiben Pflegte
" ... end of communication ... "
User avatar
deepsurfer
AF Moderator
 
Posts: 6440
Joined: 23. November 2004 10:44
Location: Cologne
Operating System: Win-XP / Win7 / Linux -Debian

Postby pk910 » 28. May 2006 18:12

Mach ich doch... Aber da steht nur: Apache Server konnte nicht gestartet werden...
Aber kein Grund.
Dies ist meine Webseite... Wenn ihr kostenlose Java, PHP scripts braucht kommt vorbei.
http://www.scripts-seite.de
pk910
 
Posts: 25
Joined: 09. May 2006 16:55


Return to XAMPP für Windows

Who is online

Users browsing this forum: CptEureka and 37 guests