PDA

Archiv verlassen und diese Seite im Standarddesign anzeigen : confixx auf server



°Prem°
12.06.02, 21:03
unter confixx pro 1.6* habe ich die möglichkeit als user, htaccess zu erstellen, das script sagt auch das es gemacht wurde, aber die dateien sind nicht da?
woran kann das leigen
der server ist von puretec, falls das wichtig ist.

stefaan
12.06.02, 21:58
Servus!

Wenn das ein Server von Puretec ist, dann würd ich dort einmal den Support sekkieren ;)
Vielleicht stimmen die Verzeichnisrechte nicht...
Bzw. woher weißt du, dass die Dateien nicht erstellt werden? Nicht alle FTP-Programme zeigen diese standardmäßig an...

Grüße, Stefan

°Prem°
12.06.02, 22:37
erstmal danke

zum support von puretec: den kannste komplett vergessen
und zum zweiten: ich rufe das verzeichnis im browser auf und es kommt keine abfrage, und sehen kann ich die dateien mit dem windowscommander wenn sie da sind, es sind aber keine vorhanden.

READY
12.06.02, 22:48
es gibt bei denen irgendso ne kostenlose techniker hotline, die kannste fragen, ganz so dumm wie die telefonfraun sind die nich..

Sfeni
13.06.02, 01:39
Ist AllowOverride in Apache richtig eingestellt???

°Prem°
13.06.02, 07:10
Original geschrieben von r4DiC4L
es gibt bei denen irgendso ne kostenlose techniker hotline, die kannste fragen, ganz so dumm wie die telefonfraun sind die nich..

muss gestehen, habe keine ahnung, könntest du mir eventuell erklären wie ch das hinbekomme?


@ r4DiC4L

danke werde mal schauen.

°Prem°
25.06.02, 13:09
also in der httpd.conf steht folgendes bei htaccess:



# This controls which options the .htaccess files in directories can
# override. Can also be "All", or any combination of "Options", "FileInfo",
# "AuthConfig", and "Limit"
#
AllowOverride All


#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all


#
# disable WebDAV by default for security reasons.
#
<IfModule mod_dav.c>
DAV Off
</IfModule>

#
# Enable server side includes (SSI) for the index.html pages, as some of the content
# is created dynamically. Of course this should be disabled when setting up a productive
# server.
<Files /usr/local/httpd/htdocs/index.htm*>
Options -FollowSymLinks +Includes +MultiViews
</Files>

#
# Protect the php3 test page, so it cannot be viewed from an outside system.
#
<Files test.php3>
Order deny,allow
deny from all
allow from localhost
</Files>

</Directory>

#
# UserDir: The name of the directory which is appended onto a user's home
# directory if a ~user request is received.
#
<IfModule mod_userdir.c>
UserDir public_html
</IfModule>

#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
#<Directory /home/*/public_html>
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>

#
# DirectoryIndex: Name of the file or files to use as a pre-written HTML
# directory index. Separate multiple entries with spaces.
#
<IfModule mod_dir.c>
DirectoryIndex index.html index.htm index.shtml index.php index.php3 index.php4
</IfModule>

#
# AccessFileName: The name of the file to look for in each directory
# for access control information.
#
AccessFileName .htaccess

#
# The following lines prevent .htaccess files from being viewed by
# Web clients. Since .htaccess files often contain authorization
# information, access is disallowed for security reasons. Comment
# these lines out if you want Web visitors to see the contents of
# .htaccess files. If you change the AccessFileName directive above,
# be sure to make the corresponding changes here.
#
# Also, folks tend to use names such as .htpasswd for password
# files, so this will protect those as well.
#
<Files ~ "^\.ht">
Order allow,deny
Deny from all
</Files>




ist es das was gemeint ist?

denn es funktioniert noch immer nicht.