Parallels und XAMPP Keine Zugriffsrechte auf Mac Verzeichnis

Mondmann

Mondmann

Aktives Mitglied
Thread Starter
Dabei seit
21.07.2004
Beiträge
3.246
Reaktionspunkte
183
Hallole.
Ich erstelle Webseiten und teste diese lokal mit MAMPP und möchte diese nun auch gleichzeitig mit dem doofen IE unter Parallels/Windows XP testen.
Da habe ich XAMPP Installiert.

Da ich beim Apache kein Netzlaufwek angeben darf,habe ich eben das Laufwerk, indem meine php Dateien drin sind, als Shared Folder angegeben und dann unter Parallels als Laufwerk Z: eingebunden und dem Apache als Document Root mitgegeben.

Ich brauche XAMPP da ich ja php Dateien schreibe.
NUr wenn ich dann localhost aufrufen will kommt immer nur "Zugriff verweigert", obwohl ich unter MAc OS jedem alle Rechte gegeben habe.
Keine Chance.

Kann mir da wer helfen?
Warum habe ich keine Zugriffsrechte und/oder wie schaffe ich es, daß ich denselben Ordner unter MAc wie als auch unter Parallels ansprechen kann, ohne daß es unter Parallels ein NEtzlaufwerk ist?

Danke Mondmann
 
Wie sind die Freigabesicherheiten?

Ist der Shared Folder auch read/write oder nur read-only?
 
Die shared Folders sind read/write.

Was sind Freigabesicherheiten?
 
hmm
hab da was vertauscht
ist nur wenn du von Windows was freigibts.

Magst mal Deine apache.conf posten? Evt. liegt da der Fallstrick
 
Kann ich machen, könnte es nicht einfach daran liegen, daß es eben ein Netzlaufwerk ist?
 
Hier mal die conf

#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "C:/Dokumente und Einstellungen/Besitzer/Desktop/xampplite/htdocs">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks Includes ExecCGI

#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All

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

</Directory>

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml
</IfModule>

#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
</FilesMatch>


ErrorLog logs/error.log


LogLevel warn

<IfModule log_config_module>
#
# The following directives define some format nicknames for use with
# a CustomLog directive (see below).
#
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common

<IfModule logio_module>
# You need to enable mod_logio.c to use %I and %O
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>

CustomLog logs/access.log common

#
# If you prefer a logfile with access, agent, and referer information
# (Combined Logfile Format) you can use the following directive.
#
#CustomLog logs/access.log combined
</IfModule>

<IfModule alias_module>
#
# Redirect: Allows you to tell clients about documents that used to
# exist in your server's namespace, but do not anymore. The client
# will make a new request for the document at its new location.
# Example:
# Redirect permanent /foo http://www.example.com/bar


#
ScriptAlias /cgi-bin/ "C:/Dokumente und Einstellungen/Besitzer/Desktop/xampplite/cgi-bin/"

</IfModule>

#
# "C:/Dokumente und Einstellungen/Besitzer/Desktop/xampplite/cgi-bin" should be changed to whatever your ScriptAliased
# CGI directory exists, if you have that configured.
#
<Directory "C:/Dokumente und Einstellungen/Besitzer/Desktop/xampplite/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>



#!c:/program files/perl/perl

DefaultType text/plain

<IfModule mime_module>
#
# TypesConfig points to the file containing the list of mappings from
# filename extension to MIME-type.
#
TypesConfig conf/mime.types


<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>

[/QUOTE]
 
hmm..
apache 2

Wichtig wäre noch die conf-enable Datei (000-default)

Schau mal welcher Pfad bei "DirectoryRoot" steht..
es sollte dort Dein Netzwerkpfad stehen

Code:
<Directory "C:/Dokumente und Einstellungen/Besitzer/Desktop/xampplite/htdocs">

auch an den Netzwerkpfad anpassen.

Evt. auch das cgi-bin Verzeichnis.
Sonst wirds nix! :)
 
hm..und wo liegt diese Datei..kann sie nicht finden...
 
Zurück
Oben Unten