✖ Das Passwort fehlt!
'; } else { $name = strip_tags($_POST['name']); $passwort = crypt($_POST['passwort']); $path = trim(dirname(str_replace("\\\\","/",__FILE__))); $htaccess = fopen(".htaccess", "w"); fputs($htaccess, "AuthType Basic\n". "AuthName Verzeichnisschutz\n". "AuthUserFile $path/.htpasswd\n". "require valid-user\n"); fclose($htaccess); $htpasswd = fopen(".htpasswd", "w"); fputs ($htpasswd, "$name:$passwort\n"); fclose ($htpasswd); if (file_exists(".htaccess") && file_exists(".htpasswd")) { echo '✔ Verzeichnisschutz erfolgreich erstellt.
'; } else { echo '✖ Verzeichnisschutz konnte nicht erstellt werden!
'; } } } ?>