Reply
NEED HELP! ANYbody know a good banner link tracking site? and password protection?
Old 10-12-2002, 09:31 PM NEED HELP! ANYbody know a good banner link tracking site? and password protection?
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
Hi, does anybody have a good banner link tracking service, and a password protection service that is not remote hosted? I would appreciate it. thanx in advance!
freepcgames is offline
Reply With Quote
View Public Profile
 
When You Register, These Ads Go Away!
Old 10-12-2002, 10:44 PM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
you can code a password protection yourself using JS, PHP, .htaaccess.

http://javascript.internet.com/passwords/

try that site for password protection.

As for link tracking, I really have no clue to as what you mean.
If you want something that will tell you what is referring to your site, then you want a counter.

www.justaddtraffic.com works just fine.
www.freecounters.com is also good

hope that helps,
-Josh
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:21 PM Thanx! and Meaning of link tracking...or password protection
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
Thanx, with the links, but What i mean by banner link tracking is that a service that manage and have logs or information it gathers about the banner link, click rate, referer url, and stuff like that made for a BANNER LINK.

About password protection, I was thinking of one that may be cgi, javascript, or dhtml script because i use a free provider. in the script, i want it to cloak the url (hide the url by the domain name when youre surfing.) I also want it to be unlimited users, with username and password or just password ones. Also free, but i will look at remote hosted ones. I dont want it to be one where they show you the url of the protected place. IF YOU find one thatis close

I might be asking alot, but i really need it, if you dont have one or if you cant find it, I still want to thank you. It is really important to me because i am developing my own site. I APPREACIATE IT, AND THANK IN ADVANCE.ANYTHING THAT COULD HELP IS WELCOME!!


Chris
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:25 PM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
well for link tracking you can use www.ad-rotator.com
that works extremely well, its hard to get it on free host though because free hosts normally dont allow hotlinking.

and as for password protection look for the site i gave you, it has what your looking for there.

and if URL cloaking is what you want, then use this:
www.my.tk
www.cjb.net

they cloak URL for free.

password protection: this is a great one:


<!-- 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)">



<!-- "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.memlis t.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>


<!-- Script Size: 6.50 KB -->


play with it, tell me if you like it
hope that helps
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:34 PM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
thanx! i'll try it. By cloaking.......i mean, cloaking THAT COMES with the password service, something like (www.myfreeservice.com/cgi-bin/user:example) And this helps me, but i think that i found a good one, can you help me with it? It's the one here. Is it modifyable? Can you modify it so i have unlimited users and user names allowed? it's located at http://www.webreview.com/2001/01_26/...index02.shtml, i'll try the url you gave me though. I REALLY APPREACIATE IT!
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:40 PM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
hmmm seems really easy to hack, i recommend the one i sent you. that one at least takes 1 day to hack, usually people give up on mine because its encrypted.

on yours i can already see the password is swordfish lol.
its modifieable though. You can have unlimited users with every password protection script.
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:44 PM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
oh, almost forgot to say. Welcome to webmaster-talk freepcgames. hope you enjoy your stay here.
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-12-2002, 11:48 PM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
I was wondering, which name is this one on the site you got it from? cause i checked all the sites, and i saw some that works ok. I just wonder

I'm currently trying this one, i remeber it as i have seen it before. I dont know the effects yet. But about the password protection url i gave you, i was thinking of encrypting it. would that help?

encrpyting the page i mean....I know there might be an uncrypter...I was wonderin, did you read the password protection page and the information? Please reply

i still on plan using the best one. username or not doesnt matter for me anymore.
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:16 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
oh ok, yes i read the page info. and yea encrypting it would be a great idea.
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:16 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
i want a secure one. I am making a club for my members, thanx so much for helping, i hope i can pay you back, someday.

what do you think of the one you gave me? IS it hosted on the internet by a servce? or is it just make the code like a generator to put on my page? I am so curious, since i just learned how to make a website recently... []
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:20 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
no problem, thats what webmaster-talk is for. webmasters helping other webmasters

hmm.

i did another search, and came up with this...
http://www.hotscripts.com/search/?qu...n&category=all

if any of them interest you reply back, if not reply back. ill look up more in the mean time.
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:25 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
well im really tired now, its 1am here imma go to sleep. good luck wiht your search.

ill post again tommrow, as always.

-Josh
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:28 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
sorry to bother you again but i just want you to know that i am currently looking for free ones, not trials...I dont have access to php or mysql, i use a free host. bravepages(www.bravenet.com). Is there anything u reccomand?


yes, do this tomorow there....thanx!, sorry i wrote"sorry to bother you again" I didnt get the chance to see your last message, but when you come back online, please post a message...thanx!

__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:33 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
hmmm lol forgot about that.

...ill try and see if i can code one up in the morning. if not search through google for password protection.


tommorow though ill look extensively for one.
until then,
Cheers;

-Josh
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:35 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
have a nice night
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:43 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
thanx, if code one up means make it yourself, please make it almost unhackable, unlimited users, used with usernames and password or just password, is you make it, please use javascript, i know there is a possibility that people can see the passwords, but currently i do not have money to upgrade a a paid site. By the way, i just learned FLASH today, isnt that cool!?! I like the one that you pasted on. i can edit the users, if you can make one like that, thanx! script i gave you, i tried the demo, and i thought it worked smoothly, and it couldnt possiblly see the password in 5 minutes, but you proved it wrong, thanx!
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:46 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
please post when you get online......
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 12:59 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
hey, if you can give me the URL to where you did the demo thing. give it to me, i wanna test somethign out. I did it on my PC but it didnt work, i think i have ot be offline for this.

-Josh
__________________
www.goatslacker.com
ghettocars is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 01:02 AM
freepcgames's Avatar
Skilled Talker

Posts: 69
Location: Edmonton, Alberta
the demo for the script i gave u? if it is, go to http://www.webreview.com/2001/01_26/...ers/index.html
remember, the code is "swordfish"
__________________
I am who I am....PM me on this if you need any information : P
freepcgames is offline
Reply With Quote
View Public Profile
 
Old 10-13-2002, 01:08 AM
ghettocars's Avatar
Defies a Status

Posts: 1,736
Name: Josh
Location: Miami, FL
hmm seems to be a good script. let me run it by a few other tests and a couple of other hackers.
__________________
www.goatslacker.com
ghettocars is offline