Toon posts:

Apache laat niemand toe :(

Pagina: 1
Acties:

Verwijderd

Topicstarter
Ik heb nu sinds kort easyphp 1.5
werkt allemaal perfect alleen als ik iemand me ip geeft dan komt hij er niet door... was eerst wel met oudere versie van easyphp..

De fout ligt zeker in me httpd.conf file... wat moet ik daar veranderen dat iedreeen toegang krijgt?

  • JoostBaksteen
  • Registratie: December 2000
  • Laatst online: 27-03 19:32
Wat voor een error krijgt hij? Heb je niet een firewall aan? En is de poort wel goed ingesteld?

Verwijderd

Topicstarter
hij vind de server gewoon niet.... pagina niet gevonden... en ik heb geen firewall

  • JoostBaksteen
  • Registratie: December 2000
  • Laatst online: 27-03 19:32
Kan hij jou wel pingen?

Verwijderd

Topicstarter
Op vrijdag 28 december 2001 13:47 schreef joostbaksteen het volgende:
Kan hij jou wel pingen?
yep... ik kan ook gewoon serv u gebruiken en me ftp open zetten enzo...

dit is me httpd.conf file
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#
# Based upon the NCSA server configuration files originally by Rob McCool.
#

# This is the main Apache server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See <URL:http://www.apache.org/docs/> for detailed information about
# the directives.

#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# After this file is processed, the server will look for and process
# C:/Program Files/EasyPHP/apache/conf/srm.conf and then $path$/Aapache/conf/access.conf
# unless you have overridden these with ResourceConfig and/or
# AccessConfig directives here.
#
# The configuration directives are grouped into three basic sections:
#  1. Directives that control the operation of the Apache server process as a
#     whole (the 'global environment').
#  2. Directives that define the parameters of the 'main' or 'default' server,
#     which responds to requests that aren't handled by a virtual host.
#     These directives also provide default values for the settings
#     of all virtual hosts.
#  3. Settings for virtual hosts, which allow Web requests to be sent to
#     different IP addresses or hostnames and have them handled by the
#     same Apache server process.
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with "/" (or "drive:/" for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
# with ServerRoot set to "/usr/local/apache" will be interpreted by the
# server as "/usr/local/apache/logs/foo.log".
#
# NOTE: Where filenames are specified, you must use forward slashes
# instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
# If a drive letter is omitted, the drive on which Apache.exe is located
# will be used by default.  It is recommended that you always supply
# an explicit drive letter in absolute paths, however, to avoid
# confusion.
# NOTE FOR WIN32 USERS: You should use quotes for any path and file name.
# Use "C:/opensa/apache/htdocs/" instead of C:/opensa/apache/htdocs/. This
# will avoid the problems with long file names under Win32, which have spaces,
# like "C:/program files/".

ServerType standalone

ServerRoot "C:/Program Files/EasyPHP/apache"

PidFile logs/httpd.pid

ScoreBoardFile logs/apache_status

Timeout 300

KeepAlive On

MaxKeepAliveRequests 100

KeepAliveTimeout 15

MaxRequestsPerChild 0

ThreadsPerChild 50


# NOTE: DO NOT REMOVE THE FOLLOWING LINE !!!
LoadModule php4_module "C:/Program Files/EasyPHP/php/php4apache.dll"
LoadModule anon_auth_module modules/mod_auth_anon.so
#LoadModule gzip_module modules/ApacheModuleGzip.dll
AddType application/x-httpd-php .phtml .pwml .php3 .php4 .php .php2 .inc

Port 80

ServerAdmin webmaster@localhost

ServerName localhost

DocumentRoot "C:/Program Files/EasyPHP/www"

AccessFileName .htaccess

<Directory />
    Options FollowSymLinks
    AllowOverride All
</Directory>

<Directory "C:/Program Files/EasyPHP/www">
    Options Indexes FollowSymLinks Includes
    AllowOverride All
    Order allow,deny
    Allow from all
</Directory>

DirectoryIndex index.html index.htm index.shtml index.wml index.pwml index.php index.php3

AccessFileName .htaccess

<Files .htaccess>
    Order allow,deny
    Deny from all
</Files>

UseCanonicalName On

TypesConfig conf/mime.types

DefaultType text/plain

<IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
</IfModule>

HostnameLookups Off

ErrorLog logs/error.log

LogLevel warn

LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent

CustomLog logs/access.log common

ServerSignature EMail

Alias /icons/ "C:/Program Files/EasyPHP/apache/icons/"
Alias /mysql/ "C:/Program Files/EasyPHP/phpmyadmin/"
Alias /images_easyphp/ "C:/Program Files/EasyPHP/home/images_easyphp/"

ScriptAlias /cgi-bin/ "C:/Program Files/EasyPHP/cgi-bin/"


<Directory "C:/Program Files/EasyPHP/apache/cgi-bin">
    AllowOverride None
    Options None
</Directory>


AddDescription "GZIP compressed document" .gz
AddDescription "tar archive" .tar
AddDescription "GZIP compressed tar archive" .tgz
AddDescription "ZIP archive" .zip
AddDescription "CAB archive" .cab
AddDescription "Win32 Executable" .exe

ReadmeName README
HeaderName HEADER

IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t

AddEncoding x-compress Z
AddEncoding x-gzip gz

AddType text/vnd.wap.wml .wml
AddType application/vnd.wap.wmlc .wmlc
AddType text/vnd.wap.wmlscript .wmls
AddType text/vnd.wap.wmlscriptc .wmlsc
AddType image/vnd.wap.wbmp .wbmp



AddHandler cgi-script .cgi
AddType text/html .shtml
AddHandler server-parsed .shtml


BrowserMatch "Mozilla/2" nokeepalive
BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
BrowserMatch "RealPlayer 4\.0" force-response-1.0
BrowserMatch "Java/1\.0" force-response-1.0
BrowserMatch "JDK/1\.0" force-response-1.0

#<Location /server-status>
#    SetHandler server-status
#    Order deny,allow
#    Deny from all
#    Allow from localhost
#</Location>

#alias
#alias