Page 1 of 1

no one can acceses my webserver

PostPosted: 18. April 2005 11:45
by mosko
i can see my webpages but no one else can.
i dont have a firewall, and the server is installed properly.
so what is the problem?

thanks,
Mosko.

PostPosted: 18. April 2005 12:22
by sckoh
I guess that it be hosting server problem.
Why don't you put the link here.

PostPosted: 18. April 2005 12:58
by mosko
http://mosko.ath.cx/

* this is my dynamic dns i will not post my ip here.

PostPosted: 18. April 2005 19:26
by mosko
some one?

PostPosted: 27. April 2005 17:10
by Nicklas
I got the same problem.. how did you fix it?

PostPosted: 09. May 2005 09:21
by sckoh
Please check DirectoryIndex, line 364 of apache/conf/httpd.conf
and DocumentRoot, line 312.

Code: Select all
DirectoryIndex index.html index.htm index.php index.php4 index.php3 index.cgi index.pl index.html.var index.phtml

DocumentRoot "/xampp/htdocs/home"
<Directory />
    Options FollowSymLinks
    AllowOverride None
</Directory>

<Directory "/xampp/htdocs/home">
    Options Indexes FollowSymLinks MultiViews Includes ExecCGI
   AddType text/html .shtml
        AddHandler server-parsed .shtml
        AddHandler cgi-script .cgi .pl
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>


1.Priority of DirectoryIndex is given from left to right.
2. Index.php or index.html must be in your DocumentRoot. In case of above, it should be in "/xampp/htdocs/home" folder.

Please let me know if you solve it.

PostPosted: 10. May 2005 11:35
by sckoh
Or, you can change DocumentRoot at xampp/htdocs/index.html, of which scripts are;
Code: Select all
<html>
<head>
<meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang">
<meta http-equiv="refresh" content="0;url=/xampp/splash.php">
</head>
<body bgcolor=#ffffff>
</body>
</html>


You can change like
Code: Select all
<html>
<head>
<meta name="author" content="Kai Oswald Seidler, Kay Vogelgesang">
<!--- <meta http-equiv="refresh" content="0;url=/xampp/splash.php"> --->
<meta http-equiv="refresh" content="0;url=/home/index.php">
</head>
<body bgcolor=#ffffff>
</body>
</html>