Wie kann ich den genauen Pfad meiner Website feststellen?
- Im Installationsverzeichnis der Website die Datei fullpath.php erstellen
- In diese Datei folgendes einfügen
- <?php $dir = dirname(__FILE__);
echo „<p>Full path to this dir: “ . $dir . „</p>“;
echo „<p>Full path to a .htpasswd file in this dir: “ . $dir . „/.htpasswd“ . „</p>“; ?> - Die Website wie folgt aufrufen
<Name der Website>/fullpath.php