J'ai besoin de protéger par mot de passe de mon site.
- ad
- Born


- Inscription: Juin 19, 2003
- Messages: 1
- Status: Offline
- Anonymous
- Bot


- Inscription: 25 Feb 2008
- Messages: ?
- Loc: Ozzuland
- Status: Online
Juin 19th, 2003, 9:16 pm
- Bigwebmaster
- Site Admin


- Inscription: Déc 20, 2002
- Messages: 8926
- Loc: Seattle, WA & Phoenix, AZ
- Status: Offline
Essayez d'utiliser le texte suivant:
Nombreuses il ya plus énumérés ici: http://javascript.internet.com/passwords/
Comme il est dit sur cette page, gardez cela à l'esprit:
Ces scripts ont tous trait à des scripts JavaScript mot de passe. Ils sont une tentative élémentaires pour protéger un site et ne doivent être utilisés pour protéger les renseignements top secret. They just keep les amateurs Out. Pros peuvent s'infiltrer dans ces sites avec ces formes de protection. Mais, à titre gratuit, ils font du bon travail.
Tout type de protection JavaScript peut être rompu ou piratés, la meilleure façon de protéger vos pages serait de configurer votre serveur pour la protection de mot de passe. Avec les serveurs Web Apache vous pouvez normalement faire en utilisant le fichier. Htaccess pour définir certains répertoires de sorte qu'ils ont besoin d'un mot de passe.
Code: [ Select ]
<!-- ONE STEP TO INSTALL LOGIN CODER:
1. Add the first code into the BODY of your HTML document -->
<!-- STEP ONE: Add the first code into the BODY of your HTML document -->
<BODY>
<center><table border=1>
<tr><form name=members><td rowspan=4>
<select name=memlist size=10 onChange="showmem(this.form)">
<!-- Original: Dion -->
<!-- Web Site: http://www.iinet.net.au/~biab/ -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- "member name | password | destination pagename |" -->
<option selected value="John Smith|password|mainpage|">John Smith
<option value="Peter Jones|theirpwd|endpages|">Peter Jones
<option value="Sue Brown|asdfvcxz|nowheres|">Sue Brown
<option value="Sally West|zaqxswde|logintop|">Sally West
</select></td>
<td align=right>User:</td><td><input type=hidden value="0" name=entry>
<input type=text name=memname size=8 value=""></td></tr>
<tr><td align=right>Password:</td><td><input type=text name=password size=8 maxlength=8><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
<tr><td align=right>Page Name:</td><td><input type=text name=pagename size=8 maxlength=8><b>.html</b><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
<tr><td colspan=2 align=center>
<input type=button value="New User" onclick="addnew(this.form);">
<input type=button value="Delete User" onclick="delthis(this.form);">
<input type=button value="Update/Show Coding" onclick="update(this.form); create(this.form);"></td></tr>
<tr><td colspan=3 align=center>
<input type=text size=60 name=message value="Note: Password/Page Name must be exactly 8 letters! (a-z)">
<input type=hidden name=num value=1></td>
</form></tr>
</table>
<hr size=2 width=75%>
<form name=js><textarea cols=75 rows=10 name=scrpt wrap=virtual>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var params=new Array(4);
var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
function check(form) {
which=form.memlist.selectedIndex;
choice = form.memlist.options[which].value+"|";
if (choice=="x|") {
alert("Please Select Your Name From The List");
return;
}
p=0;
for (i=0;i<3;i++) {
a=choice.indexOf("|",p);
params[i]=choice.substring(a,p);
p=a+1;
}
h1=makehash(form.pass.value,3);
h2=makehash(form.pass.value,10)+" ";
if (h1!=params[1]) {
alert("Incorrect Password!"); return; };
var page="";
for (var i=0;i<8;i++) {
letter=params[2].substring(i,i+1)
ul=letter.toUpperCase();
a=alpha.indexOf(ul,0);
a-=(h2.substring(i,i+1)*1);
if (a<0) a+=26;
page+=alpha.substring(a,a+1); };
top.location=page.toLowerCase()+".html";
}
function makehash(pw,mult) {
pass=pw.toUpperCase();
hash=0;
for (i=0;i<8;i++) {
letter=pass.substring(i,i+1);
c=alpha.indexOf(letter,0)+1;
hash=hash*mult+c;
}
return(hash);
}
// End -->
</script>
</textarea>
</form>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var params=new Array(4);
var script=document.js.scrpt.value;
document.js.scrpt.value="Create your users, their passwords, and their destination pages using the form above.\n\nThen, click 'Show Coding' to see the login HTML and JavaScript that you need to put on your page to password-protect your site with that info.\n\nQuestions about this script or how to put it on your site should be directed to it's author via email: dion@mailhub.omen.com.au\n\n*Honestly, we don't even totally understand this JavaScript!*";
var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
showmem(document.members);
function showmem(form) {
document.members.num.value=document.members.memlist.length;
var which=form.memlist.selectedIndex;
splt(form.memlist[which].value);
form.entry.value=which+1;
for (i=2;i<5;i++) {
form.elements[i].value=params[i-2]; };
}
function splt(choice) {
p=0;
for (i=0;i<3;i++) {
a=choice.indexOf("|",p);
params[i]=choice.substring(a,p);
p=a+1;
}
}
function addnew(form) {
newmem=getfields(form);
var who=prompt("New User's Name:","");
form.memlist[form.memlist.length] = new Option(who, newmem, false, true);
if (navigator.appName=="Netscape") {
document.js.scrpt.value=script;
history.go(0);
}
else {
showmem(document.members);
}
}
function getfields(form) {
newmem="";
for (i=2;i<5;i++) {
newmem+=form.elements[i].value+"|"; };
for (i=3;i<5;i++) {
a=form.elements[i];
for (k=0;k<8;k++) {
}
}
return(newmem);
}
function delthis(form) {
if (confirm("Delete "+form.memname.value+"?")) {
form.memlist.options[form.entry.value-1]=null;
form.message.value=form.memname.value+" Deleted";
form.memlist.selectedIndex=0;
if (navigator.appName=="Netscape") {
document.js.scrpt.value=script;
history.go(0);
}
else {
showmem(document.members);
}
}
}
function update(form) {
msg="no";
a=form.elements[i];
for (k=0;k<8;k++) {
b=a.value.substring(k,k+1);
c=b.toUpperCase();
form.memlist[form.entry.value-1].value=getfields(form);
form.message.value=form.memname.value+"'s record was updated";
}
}
function create(form) {
var html="<center><form name=login>\n";
html+="<table border=1 cellpadding=3>\n\n";
html+="<!-- Original: Dion -->\n";
html+="<!-- Web Site: http://www.iinet.net.au/~biab/ -->\n";
html+="<!-- This script and many more are available free online at -->\n";
html+="<!-- The JavaScript Source!! http://javascript.internet.com -->\n\n";
html+='<tr><td colspan=2 align=center><font size="+2">';
html+='<b>Members-Only Area!</b></font></td></tr>\n';
html+="<tr><td>Username:</td><td><select name=memlist>\n<option value='x'>";
for (j=0;j<form.memlist.length;j++) {
splt(form.memlist.options[j].value);
h1=makehash(params[1],3);
h2=makehash(params[1],10)+" ";
var page="";
for (var i=0;i<8;i++) {
letter=params[2].substring(i,i+1);
ul=letter.toUpperCase();
a=alpha.indexOf(ul,0);
a+=(h2.substring(i,i+1)*1);
page+=alpha.substring(a,a+1);
}
html+="\n<option value='"+params[0]+"|"+h1+"|"+page+"'>"+params[0];
};
html+="\n</select></td></tr>\n";
html+="<tr><td>Password:</td><td><input type=password size=10 maxlength=8 name=pass></td></tr>\n";
html+='<tr><td colspan=2 align=center><input type=button value="Login" onclick="check(this.form)"></td>\n';
html+="</tr>\n</table>\n</form>\n";
document.js.scrpt.value=html+script+"</center>";
}
function makehash(pw,mult) {
pass=pw.toUpperCase();
hash=0;
for (i=0;i<8;i++) {
letter=pass.substring(i,i+1);
c=alpha.indexOf(letter,0)+1;
hash=hash*mult+c;
}
return(hash);
}
// End -->
</script>
</center>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>
<!-- Script Size: 6.50 KB -->
1. Add the first code into the BODY of your HTML document -->
<!-- STEP ONE: Add the first code into the BODY of your HTML document -->
<BODY>
<center><table border=1>
<tr><form name=members><td rowspan=4>
<select name=memlist size=10 onChange="showmem(this.form)">
<!-- Original: Dion -->
<!-- Web Site: http://www.iinet.net.au/~biab/ -->
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- "member name | password | destination pagename |" -->
<option selected value="John Smith|password|mainpage|">John Smith
<option value="Peter Jones|theirpwd|endpages|">Peter Jones
<option value="Sue Brown|asdfvcxz|nowheres|">Sue Brown
<option value="Sally West|zaqxswde|logintop|">Sally West
</select></td>
<td align=right>User:</td><td><input type=hidden value="0" name=entry>
<input type=text name=memname size=8 value=""></td></tr>
<tr><td align=right>Password:</td><td><input type=text name=password size=8 maxlength=8><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
<tr><td align=right>Page Name:</td><td><input type=text name=pagename size=8 maxlength=8><b>.html</b><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
<tr><td colspan=2 align=center>
<input type=button value="New User" onclick="addnew(this.form);">
<input type=button value="Delete User" onclick="delthis(this.form);">
<input type=button value="Update/Show Coding" onclick="update(this.form); create(this.form);"></td></tr>
<tr><td colspan=3 align=center>
<input type=text size=60 name=message value="Note: Password/Page Name must be exactly 8 letters! (a-z)">
<input type=hidden name=num value=1></td>
</form></tr>
</table>
<hr size=2 width=75%>
<form name=js><textarea cols=75 rows=10 name=scrpt wrap=virtual>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var params=new Array(4);
var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
function check(form) {
which=form.memlist.selectedIndex;
choice = form.memlist.options[which].value+"|";
if (choice=="x|") {
alert("Please Select Your Name From The List");
return;
}
p=0;
for (i=0;i<3;i++) {
a=choice.indexOf("|",p);
params[i]=choice.substring(a,p);
p=a+1;
}
h1=makehash(form.pass.value,3);
h2=makehash(form.pass.value,10)+" ";
if (h1!=params[1]) {
alert("Incorrect Password!"); return; };
var page="";
for (var i=0;i<8;i++) {
letter=params[2].substring(i,i+1)
ul=letter.toUpperCase();
a=alpha.indexOf(ul,0);
a-=(h2.substring(i,i+1)*1);
if (a<0) a+=26;
page+=alpha.substring(a,a+1); };
top.location=page.toLowerCase()+".html";
}
function makehash(pw,mult) {
pass=pw.toUpperCase();
hash=0;
for (i=0;i<8;i++) {
letter=pass.substring(i,i+1);
c=alpha.indexOf(letter,0)+1;
hash=hash*mult+c;
}
return(hash);
}
// End -->
</script>
</textarea>
</form>
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
var params=new Array(4);
var script=document.js.scrpt.value;
document.js.scrpt.value="Create your users, their passwords, and their destination pages using the form above.\n\nThen, click 'Show Coding' to see the login HTML and JavaScript that you need to put on your page to password-protect your site with that info.\n\nQuestions about this script or how to put it on your site should be directed to it's author via email: dion@mailhub.omen.com.au\n\n*Honestly, we don't even totally understand this JavaScript!*";
var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
showmem(document.members);
function showmem(form) {
document.members.num.value=document.members.memlist.length;
var which=form.memlist.selectedIndex;
splt(form.memlist[which].value);
form.entry.value=which+1;
for (i=2;i<5;i++) {
form.elements[i].value=params[i-2]; };
}
function splt(choice) {
p=0;
for (i=0;i<3;i++) {
a=choice.indexOf("|",p);
params[i]=choice.substring(a,p);
p=a+1;
}
}
function addnew(form) {
newmem=getfields(form);
var who=prompt("New User's Name:","");
form.memlist[form.memlist.length] = new Option(who, newmem, false, true);
if (navigator.appName=="Netscape") {
document.js.scrpt.value=script;
history.go(0);
}
else {
showmem(document.members);
}
}
function getfields(form) {
newmem="";
for (i=2;i<5;i++) {
newmem+=form.elements[i].value+"|"; };
for (i=3;i<5;i++) {
a=form.elements[i];
for (k=0;k<8;k++) {
}
}
return(newmem);
}
function delthis(form) {
if (confirm("Delete "+form.memname.value+"?")) {
form.memlist.options[form.entry.value-1]=null;
form.message.value=form.memname.value+" Deleted";
form.memlist.selectedIndex=0;
if (navigator.appName=="Netscape") {
document.js.scrpt.value=script;
history.go(0);
}
else {
showmem(document.members);
}
}
}
function update(form) {
msg="no";
a=form.elements[i];
for (k=0;k<8;k++) {
b=a.value.substring(k,k+1);
c=b.toUpperCase();
form.memlist[form.entry.value-1].value=getfields(form);
form.message.value=form.memname.value+"'s record was updated";
}
}
function create(form) {
var html="<center><form name=login>\n";
html+="<table border=1 cellpadding=3>\n\n";
html+="<!-- Original: Dion -->\n";
html+="<!-- Web Site: http://www.iinet.net.au/~biab/ -->\n";
html+="<!-- This script and many more are available free online at -->\n";
html+="<!-- The JavaScript Source!! http://javascript.internet.com -->\n\n";
html+='<tr><td colspan=2 align=center><font size="+2">';
html+='<b>Members-Only Area!</b></font></td></tr>\n';
html+="<tr><td>Username:</td><td><select name=memlist>\n<option value='x'>";
for (j=0;j<form.memlist.length;j++) {
splt(form.memlist.options[j].value);
h1=makehash(params[1],3);
h2=makehash(params[1],10)+" ";
var page="";
for (var i=0;i<8;i++) {
letter=params[2].substring(i,i+1);
ul=letter.toUpperCase();
a=alpha.indexOf(ul,0);
a+=(h2.substring(i,i+1)*1);
page+=alpha.substring(a,a+1);
}
html+="\n<option value='"+params[0]+"|"+h1+"|"+page+"'>"+params[0];
};
html+="\n</select></td></tr>\n";
html+="<tr><td>Password:</td><td><input type=password size=10 maxlength=8 name=pass></td></tr>\n";
html+='<tr><td colspan=2 align=center><input type=button value="Login" onclick="check(this.form)"></td>\n';
html+="</tr>\n</table>\n</form>\n";
document.js.scrpt.value=html+script+"</center>";
}
function makehash(pw,mult) {
pass=pw.toUpperCase();
hash=0;
for (i=0;i<8;i++) {
letter=pass.substring(i,i+1);
c=alpha.indexOf(letter,0)+1;
hash=hash*mult+c;
}
return(hash);
}
// End -->
</script>
</center>
<p><center>
<font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
</center><p>
<!-- Script Size: 6.50 KB -->
- <!-- ONE STEP TO INSTALL LOGIN CODER:
- 1. Add the first code into the BODY of your HTML document -->
- <!-- STEP ONE: Add the first code into the BODY of your HTML document -->
- <BODY>
- <center><table border=1>
- <tr><form name=members><td rowspan=4>
- <select name=memlist size=10 onChange="showmem(this.form)">
- <!-- Original: Dion -->
- <!-- Web Site: http://www.iinet.net.au/~biab/ -->
- <!-- This script and many more are available free online at -->
- <!-- The JavaScript Source!! http://javascript.internet.com -->
- <!-- "member name | password | destination pagename |" -->
- <option selected value="John Smith|password|mainpage|">John Smith
- <option value="Peter Jones|theirpwd|endpages|">Peter Jones
- <option value="Sue Brown|asdfvcxz|nowheres|">Sue Brown
- <option value="Sally West|zaqxswde|logintop|">Sally West
- </select></td>
- <td align=right>User:</td><td><input type=hidden value="0" name=entry>
- <input type=text name=memname size=8 value=""></td></tr>
- <tr><td align=right>Password:</td><td><input type=text name=password size=8 maxlength=8><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
- <tr><td align=right>Page Name:</td><td><input type=text name=pagename size=8 maxlength=8><b>.html</b><font size="-1"><-- Must be exactly 8 characters</font></td></tr>
- <tr><td colspan=2 align=center>
- <input type=button value="New User" onclick="addnew(this.form);">
- <input type=button value="Delete User" onclick="delthis(this.form);">
- <input type=button value="Update/Show Coding" onclick="update(this.form); create(this.form);"></td></tr>
- <tr><td colspan=3 align=center>
- <input type=text size=60 name=message value="Note: Password/Page Name must be exactly 8 letters! (a-z)">
- <input type=hidden name=num value=1></td>
- </form></tr>
- </table>
- <hr size=2 width=75%>
- <form name=js><textarea cols=75 rows=10 name=scrpt wrap=virtual>
- <SCRIPT LANGUAGE="JavaScript">
- <!-- Begin
- var params=new Array(4);
- var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
- function check(form) {
- which=form.memlist.selectedIndex;
- choice = form.memlist.options[which].value+"|";
- if (choice=="x|") {
- alert("Please Select Your Name From The List");
- return;
- }
- p=0;
- for (i=0;i<3;i++) {
- a=choice.indexOf("|",p);
- params[i]=choice.substring(a,p);
- p=a+1;
- }
- h1=makehash(form.pass.value,3);
- h2=makehash(form.pass.value,10)+" ";
- if (h1!=params[1]) {
- alert("Incorrect Password!"); return; };
- var page="";
- for (var i=0;i<8;i++) {
- letter=params[2].substring(i,i+1)
- ul=letter.toUpperCase();
- a=alpha.indexOf(ul,0);
- a-=(h2.substring(i,i+1)*1);
- if (a<0) a+=26;
- page+=alpha.substring(a,a+1); };
- top.location=page.toLowerCase()+".html";
- }
- function makehash(pw,mult) {
- pass=pw.toUpperCase();
- hash=0;
- for (i=0;i<8;i++) {
- letter=pass.substring(i,i+1);
- c=alpha.indexOf(letter,0)+1;
- hash=hash*mult+c;
- }
- return(hash);
- }
- // End -->
- </script>
- </textarea>
- </form>
- <SCRIPT LANGUAGE="JavaScript">
- <!-- Begin
- var params=new Array(4);
- var script=document.js.scrpt.value;
- document.js.scrpt.value="Create your users, their passwords, and their destination pages using the form above.\n\nThen, click 'Show Coding' to see the login HTML and JavaScript that you need to put on your page to password-protect your site with that info.\n\nQuestions about this script or how to put it on your site should be directed to it's author via email: dion@mailhub.omen.com.au\n\n*Honestly, we don't even totally understand this JavaScript!*";
- var alpha="ABCDEFGHIJKLMNOPQRSTUVWXYZABCDEFGHI";
- showmem(document.members);
- function showmem(form) {
- document.members.num.value=document.members.memlist.length;
- var which=form.memlist.selectedIndex;
- splt(form.memlist[which].value);
- form.entry.value=which+1;
- for (i=2;i<5;i++) {
- form.elements[i].value=params[i-2]; };
- }
- function splt(choice) {
- p=0;
- for (i=0;i<3;i++) {
- a=choice.indexOf("|",p);
- params[i]=choice.substring(a,p);
- p=a+1;
- }
- }
- function addnew(form) {
- newmem=getfields(form);
- var who=prompt("New User's Name:","");
- form.memlist[form.memlist.length] = new Option(who, newmem, false, true);
- if (navigator.appName=="Netscape") {
- document.js.scrpt.value=script;
- history.go(0);
- }
- else {
- showmem(document.members);
- }
- }
- function getfields(form) {
- newmem="";
- for (i=2;i<5;i++) {
- newmem+=form.elements[i].value+"|"; };
- for (i=3;i<5;i++) {
- a=form.elements[i];
- for (k=0;k<8;k++) {
- }
- }
- return(newmem);
- }
- function delthis(form) {
- if (confirm("Delete "+form.memname.value+"?")) {
- form.memlist.options[form.entry.value-1]=null;
- form.message.value=form.memname.value+" Deleted";
- form.memlist.selectedIndex=0;
- if (navigator.appName=="Netscape") {
- document.js.scrpt.value=script;
- history.go(0);
- }
- else {
- showmem(document.members);
- }
- }
- }
- function update(form) {
- msg="no";
- a=form.elements[i];
- for (k=0;k<8;k++) {
- b=a.value.substring(k,k+1);
- c=b.toUpperCase();
- form.memlist[form.entry.value-1].value=getfields(form);
- form.message.value=form.memname.value+"'s record was updated";
- }
- }
- function create(form) {
- var html="<center><form name=login>\n";
- html+="<table border=1 cellpadding=3>\n\n";
- html+="<!-- Original: Dion -->\n";
- html+="<!-- Web Site: http://www.iinet.net.au/~biab/ -->\n";
- html+="<!-- This script and many more are available free online at -->\n";
- html+="<!-- The JavaScript Source!! http://javascript.internet.com -->\n\n";
- html+='<tr><td colspan=2 align=center><font size="+2">';
- html+='<b>Members-Only Area!</b></font></td></tr>\n';
- html+="<tr><td>Username:</td><td><select name=memlist>\n<option value='x'>";
- for (j=0;j<form.memlist.length;j++) {
- splt(form.memlist.options[j].value);
- h1=makehash(params[1],3);
- h2=makehash(params[1],10)+" ";
- var page="";
- for (var i=0;i<8;i++) {
- letter=params[2].substring(i,i+1);
- ul=letter.toUpperCase();
- a=alpha.indexOf(ul,0);
- a+=(h2.substring(i,i+1)*1);
- page+=alpha.substring(a,a+1);
- }
- html+="\n<option value='"+params[0]+"|"+h1+"|"+page+"'>"+params[0];
- };
- html+="\n</select></td></tr>\n";
- html+="<tr><td>Password:</td><td><input type=password size=10 maxlength=8 name=pass></td></tr>\n";
- html+='<tr><td colspan=2 align=center><input type=button value="Login" onclick="check(this.form)"></td>\n';
- html+="</tr>\n</table>\n</form>\n";
- document.js.scrpt.value=html+script+"</center>";
- }
- function makehash(pw,mult) {
- pass=pw.toUpperCase();
- hash=0;
- for (i=0;i<8;i++) {
- letter=pass.substring(i,i+1);
- c=alpha.indexOf(letter,0)+1;
- hash=hash*mult+c;
- }
- return(hash);
- }
- // End -->
- </script>
- </center>
- <p><center>
- <font face="arial, helvetica" size="-2">Free JavaScripts provided<br>
- by <a href="http://javascriptsource.com">The JavaScript Source</a></font>
- </center><p>
- <!-- Script Size: 6.50 KB -->
Nombreuses il ya plus énumérés ici: http://javascript.internet.com/passwords/
Comme il est dit sur cette page, gardez cela à l'esprit:
Ces scripts ont tous trait à des scripts JavaScript mot de passe. Ils sont une tentative élémentaires pour protéger un site et ne doivent être utilisés pour protéger les renseignements top secret. They just keep les amateurs Out. Pros peuvent s'infiltrer dans ces sites avec ces formes de protection. Mais, à titre gratuit, ils font du bon travail.
Tout type de protection JavaScript peut être rompu ou piratés, la meilleure façon de protéger vos pages serait de configurer votre serveur pour la protection de mot de passe. Avec les serveurs Web Apache vous pouvez normalement faire en utilisant le fichier. Htaccess pour définir certains répertoires de sorte qu'ils ont besoin d'un mot de passe.
Ozzu Hosting - Want your website on a fast server like Ozzu?
- b_heyer
- Web Master


- Inscription: Juin 15, 2003
- Messages: 4583
- Loc: Maryland
- Status: Offline
- Bigwebmaster
- Site Admin


- Inscription: Déc 20, 2002
- Messages: 8926
- Loc: Seattle, WA & Phoenix, AZ
- Status: Offline
Ou visitez ce post pour en savoir plus sur la protection de votre mot de passe avec le site. Htaccess:
http://www.ozzu.com/viewtopic.php?p=4229
http://www.ozzu.com/viewtopic.php?p=4229
Ozzu Hosting - Want your website on a fast server like Ozzu?
- MediaDesign
- Loser


- Inscription: Juin 05, 2003
- Messages: 129
- Loc: somewhere
- Status: Offline
- andy007
- Born


- Inscription: Juil 17, 2003
- Messages: 2
- Loc: China
- Status: Offline
- jlbrennan20
- Born


- Inscription: Aoû 26, 2003
- Messages: 2
- Status: Offline
- centix
- Newbie


- Inscription: Sep 13, 2003
- Messages: 5
- Status: Offline
- mikeruss
- Born


- Inscription: Jan 23, 2005
- Messages: 2
- Status: Offline
- tgurl
- Born


- Inscription: Juil 01, 2005
- Messages: 1
- Status: Offline
Je suis aussi en essayant de protéger un site web et ont essayé d'utiliser le fichier. Htacces file pour ce faire. Il ne s'agit pas de travailler si je dois faire quelque chose de mal. J'ai fait les fichiers, vérifiez que tout est en ordre ", plopped» dans le répertoire. L'ouvrir le répertoire dans un navigateur Web et nada. Comment le lire le fichier html. Haccess code? Je suis encore à une perte de savoir comment cela est supposé se produire si quelqu'un sait comment ce travail Je vous serais reconnaissant de votre aide.
tgurl
tgurl
Page 1 sur 1
Pour répondre à ce sujet, vous devez vous connecter ou vous enregistrer. Il est gratuit.
Afficher de l'information
- Total des messages de ce sujet: 10 messages
- Utilisateurs parcourant ce forum: Aucun utilisateur enregistré et 255 invités
- Vous ne pouvez pas poster de nouveaux sujets
- Vous ne pouvez pas répondre aux sujets
- Vous ne pouvez pas éditer vos messages
- Vous ne pouvez pas supprimer vos messages
- Vous ne pouvez pas joindre des fichiers
