• ARCHIVES 
  • » Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Shirow Masamune
» FTalkAgent
FTalk Level: zero
2237
0
1969-12-31

Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first made this concept and style in WVMe whoever you are godbless you :lol:[/quote] [b]Effect:[/b] WVM will display 10 visitors per page but only 4 are visible while it scrolls upward 1 visitor at a time [align=right][b]Preview:[/b] [img]http://www.imagehustler.com/0308/1205757110.jpg[/img][/align] [quote][b]Added features:[/b] carousel auto-scroller trick viewer image on the right side send a smile send a comment view friends send a message bookmark flag user[/quote] [b]Preview: [url=http://profiles.friendster.com/babababooya][sub]proof-of-concept[/sub][/url][/b] [quote][b]Requirements:[/b] *Prepare Your Self first *Common Sense Is-a-[u]Must[/u]!! *Ripway Account or Any filehosting site Accounts will do *[u]Create[/u] a folder in your ripway account and named it as tracker *And then after that inside of your tracker folder create this files: *create 7 new files. Copy the code from the links below. These are the 7 files you will need: *tracker.php *mv.txt :arrow: (leave this file empty,) * skin.css :arrow: [url=http://h1.ripway.com/echo25portu/portu/skin.css]skin.css[/url] * jquery.txt :arrow: [url=http://h1.ripway.com/echo25portu/portu/jquery.txt]jquery.txt[/url] * jquery.jcarousel.pack.txt :arrow: [url=http://h1.ripway.com/echo25portu/portu/jquery.jcarousel.pack.txt]jquery.jcarousel.pack.txt[/url] * tracker.txt (you can find the codes below) * tracker.css (you can find the codes below)[/quote] [b]*kindly read and check the FAQS below[/b] ------------------------------------------------- [b]1)After Creating these files click the [edit text] on your tracker.php and copy the codes below and paste these on your tracker.php[/b] [b]* tracker.php[/b] [spoiler][quote]<html> <head> <title>WHO'S VIEWED ME</title> <!-- change value of href for your css (relative or absolute) --> <style type="text/css"> <!-- /*Carousel */ .jcarousel-container { position: relative; } .jcarousel-clip { z-index: 2; padding: 0; margin: 0; overflow: hidden; position: relative; } .jcarousel-list { z-index: 1; overflow: hidden; position: relative; top: 0; left: 0; margin: 0; padding: 0; } .jcarousel-item { /* We set the width/height explicitly. No width/height causes infinite loops. */ height: 100px; width: 315px; padding-top: 0px; } .jcarousel-next { display: none; } .jcarousel-prev { display: none; } table {font-size:95%;} --> </style> <link type="text/css" rel="stylesheet" media="screen" href="skin.css" /> <link rel="stylesheet" type="text/css" media="screen, print" href="tracker.css" /> <script type="text/javascript" src="jquery.txt"></script> <script type="text/javascript" src="jquery.jcarousel.pack.txt"></script> <?php $phpowner="[b]YOUR USER ID GOES HERE[/b]"; $limit=1000; ?> <?php $owner=$_GET["owner"]; $start=$_GET["start"]; $id=$_GET["id"]; $name=$_GET["name"]; if(strlen($name)>8) { $name=substr($name,0,17)."…"; } $url=$_GET["url"]; $gender=$_GET["gender"]; $age=$_GET["age"]; $status=$_GET["status"]; $country=$_GET["country"]; if(strlen($country)>19) { $country=substr($country,0,20)."…"; } $since=$_GET["since"]; $exit=$_GET["exit"]; $mydata =getData(); $osh=$_GET["osh"]; $oss=$_GET["oss"]; if(!$exit){ if(!empty($id) && $owner==$phpowner && !empty($gender) && !empty($age) && !empty($status) && !empty($country) && !empty($since)) { $myitem=checkExist($mydata,$id,$exit); if($myitem['item']) appendData($myitem['array'],$id,$name,$url,time(),$age,$gender,$status,$country,$since,0,$myitem['item']['duration'],$myitem['item']['visits'],$limit); else appendData($myitem,$id,$name,$url,time(),$age,$gender,$status,$country,$since,0,0,0,$limit); } } else { if (!empty($id) && $owner==$phpowner && !empty($gender) && !empty($age) && !empty($status) && !empty($country) && !empty($since)) { $myitem=checkExist($mydata,$id,$exit); if($myitem['item']) { $s=time()- $myitem['item']['timestamp']; if ($s<0) $s=0; appendData($myitem['array'],$id,$name,$url,time(),$age,$gender,$status,$country,$since,1, $myitem['item']['duration']+$s,(int)($myitem['item']['visits'])+1,$limit); } } } function checkExist($da,$valme,$e) { if(empty($da)){ return $da; } for($y=0;$y<count($da);$y++){ if($y>2) { if(!$da[$y]['exit']) { $da[$y]['exit']=1; } if($da[$y]['duration']<1) { unset($da[$y]); } } if($da[$y]['id']==$valme) { $t=$da[$y]; unset($da[$y]); $da = array_values($da); return array( "array" => $da, "item" => $t ); } } return $da; } function appendData($da,$a_id,$a_name,$a_url,$a_timestamp,$a_age,$a_gender,$a_status,$a_country,$a_since,$a_exit,$a_duration,$a_visits,$a_limit) { if(!is_array($da)){ $da=array( array( "id" => $a_id, "name" => $a_name, "url" => $a_url, "timestamp" => $a_timestamp, "age" => $a_age, "gender" => $a_gender, "status" => $a_status, "country" => $a_country, "since" => $a_since, "exit" => $a_exit, "duration" => $a_duration, "visits" => $a_visits ) ); } else { array_unshift($da, array( "id" => $a_id, "name" => $a_name, "url" => $a_url, "timestamp" => $a_timestamp, "age" => $a_age, "gender" => $a_gender, "status" => $a_status, "country" => $a_country, "since" => $a_since, "exit" => $a_exit, "duration" => $a_duration, "visits" => $a_visits ) ); if(count($da)>$a_limit) array_pop($da); } saveData($da); return; } function saveData($d) { if (file_exists("mv.txt")) unlink("mv.txt"); $file = fopen("mv.txt", "w") or exit("Unable to open file!"); fclose($file); $temp=""; for($x=0;$x<count($d);$x++) { $temp=$temp.$d[$x]['id']."&".$d[$x]['name']."&".$d[$x]['url']."&".$d[$x]['timestamp']."&".$d[$x]['age']."&".$d[$x]['gender']."&".$d[$x]['status']."&".$d[$x]['country']."&".$d[$x]['since']."&".$d[$x]['exit']."&".$d[$x]['duration']."&".$d[$x]['visits']."\r"; } $file = fopen("mv.txt", "a+") or exit("Unable to open file!"); fwrite($file,$temp); fclose($file); return; } function getData() { $a=""; $temp=""; $file = fopen("mv.txt", "r") or exit("Unable to open file!"); while(!feof($file)) { $temp=$temp.fgets($file); } fclose($file); $j=explode("\r",$temp); foreach ($j as $val) { $c=explode("&",$val); if(count($c)>3) { if ($a==""){ $a=array( array( "id" => $c[0], "name" => $c[1], "url" => $c[2], "timestamp" => $c[3], "age" => $c[4], "gender" => $c[5], "status" => $c[6], "country" => $c[7], "since" => $c[8], "exit" => $c[9], "duration" => $c[10], "visits" => $c[11] ) ); } else { array_push($a, array( "id" => $c[0], "name" => $c[1], "url" => $c[2], "timestamp" => $c[3], "age" => $c[4], "gender" => $c[5], "status" => $c[6], "country" => $c[7], "since" => $c[8], "exit" => $c[9], "duration" => $c[10], "visits" => $c[11] ) ); } } } return $a; } ?> <script type="text/javascript"> if (!attachOnLoadHandler(function(){ch();})) window.onload = function(){ch();}; function attachOnLoadHandler(func) { if(window.attachEvent) { window.attachEvent('onload',func); return true; } if(window.addEventListener) { window.addEventListener('load',func,false); return true; } return false; } function invert(x) { if(x>0) return parseInt("-"+x); else if(x<0) { x=x+""; return parseInt(x.substr(1,x.length-1)); } return 0; } function ch() { var d= new Date(); var sec=invert(d.getTimezoneOffset()*60); var hour=invert(d.getTimezoneOffset()/60); x=document.getElementsByName("lnk"); for(var y=0;y<x.length;y++) { var myregexp = /\?/; if(x[y].getAttribute("href").match(myregexp)) x[y].setAttribute("href",x[y].getAttribute("href")+"&oss="+sec+"&osh="+hour); else x[y].setAttribute("href",x[y].getAttribute("href")+"?oss="+sec+"&osh="+hour); } } </script> </head> <body> <?php $items = getData(); $thispage = $PHP_SELF ; $num = count($items); $per_page = 10; $showeachside = 5; if(empty($start))$start=0; $max_pages = ceil($num / $per_page); $cur = ceil($start / $per_page)+1; ?> <table><tr><td align="left"> <div class="content"> <ul id="videoSlider" class="jcarousel-skin-ie7"> <?php for($x=$start;$x<min($num,$start+$per_page);$x++){ if(($x % 2) == 1) { echo "\t<li>\n\t\t<div class=\"stxt1\">\n"; echo "\t\t\t<div class=\"dtxt1\">\n"; } else { echo "\t<li>\n\t\t<div class=\"stxt2\">\n"; echo "\t\t<div class=\"dtxt0\">\n"; } $k=date("l - M d, Y - h:i A",$items[$x]['timestamp']+$oss+18000); $minute=floor((double)$items[$x]['duration']/60); $second=fmod((double)$items[$x]['duration'],60); if(!$items[$x]['exit']) $online="<span id=online><b>ONLINE</b></span>"; else $online="<font color='red'>offline</font>"; echo "\t\t</div>\n"; echo "\n\t\t\t<div class=\"content\">\n"; echo "\n\t\t\t ".$k."\n"; echo "<br />{".$items[$x]['visits']."} Visits - ".$minute." min ".$second." sec [".$online."]\n"; echo "\t\t\t\t\t<br /><a "; echo "href=\"http://www.friendster.com/sendmessage.php?uid=".$items[$x]['id']."&action=sendsmile\" "; echo "target=\"_blank\" title=\"Send A Smile\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://images.friendster.com/images/sas_icon.gif\"></img>"; echo "</a>"; echo "<a "; echo "href=\"http://www.friendster.com/comments.php?uid=".$items[$x]['id']."\" "; echo "target=\"_blank\" title=\"Give A Comment\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://i11.photobucket.com/albums/a192/Miyako555/notes.png\"></img>"; echo "</a>"; echo "<a "; echo "href=\"http://www.friendster.com/friends/".$items[$x]['id']."\" "; echo "target=\"_blank\" title=\"View Friends\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://images.multiply.com/multiply/icons/clean/24x24/contact.png\"></img>"; echo "</a>"; echo "<a "; echo "href=\"http://www.friendster.com/sendmessage.php?uid=".$items[$x]['id']."\" "; echo "target=\"_blank\" title=\"Send A Message\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://images.friendster.com/images/samsg_icon.gif\"></img>"; echo "</a>"; echo "<a "; echo "href=\"http://www.friendster.com/bookmarks.php?action=add&uid=".$items[$x]['id']."\" "; echo "target=\"_blank\" title=\"Bookmark It?\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://images.multiply.com/multiply/icons/clean/24x24/links.png\"></img>"; echo "</a>"; echo "<a "; echo "href=\"http://www.friendster.com/flagprofile.php?uid=".$items[$x]['id']."\" "; echo "target=\"_blank\" title=\"Flag This User?\"><img style=\"border:0;width:17px;height:12px\" "; echo "src=\"http://tbn0.google.com/images?"; echo "q=tbn:HtxXDQF4THAF2M:http://www.powerhousemuseum.com/electronicswatchbook/s/images/icons/close_icon.gif\"></img>"; echo "</a>\n"; echo "\t\t\t\t\t<br />▪Name: <a title=\"".$items[$x]['name']."\" href=\"http://www.friendster.com/".$items[$x]['id']."\" target=\"_blank\" title=\"".$items[$x]['name']." \">"; echo $items[$x]['name']; echo "</a>\n"; echo "\n\t\t\t<br />▪Info: ".$items[$x]['gender']."\n"; echo "\n\t\t\t".$items[$x]['age']."\n"; echo "\n\t\t\t".$items[$x]['status']."\n"; echo "\n\t\t\t<br />▪Member Since: ".$items[$x]['since']."\n"; echo "\n\t\t\t<br />▪Location: ".$items[$x]['country']."\n"; echo "\n\t\t\t<br />▪Friendster ID: ".$items[$x]['id']."\n"; echo "\n\t\t\t</div>\n"; echo "\t\t<div class=\"imgblock\">\n"; echo "\t\t\t\t\t<a title=\"http://profiles.friendster.com/".$items[$x]['id']."\" href=\"http://profiles.friendster.com/".$items[$x]['id']."\" target=\"_blank\">"; echo "<img src=\"".$items[$x]['url']."\" alt=\"".$items[$x]['name']."\" />"; echo "</a>\n"; echo "\t\t</div>\n"; echo "\n\t\t\t<br clear=\"all\" />\n"; echo "\n\t\t</div>\n\t</li>\n"; } ?> </ul> </div></td></tr><tr><td align="left"> <div id="footer" class="stxt<?php print($perpage%2);?>"> <span class="strong"> <?php if(($start-$per_page) >= 0) { $next = $start-$per_page; ?> <a title="First Page" name="lnk" href="<?php print("$thispage");?>"><b><<■</b></a> <?php } ?> <?php if(($start-$per_page) >= 0) { $next = $start-$per_page; ?> <a title="Previous Page" name="lnk" href="<?php print("$thispage".($next>0?("?start=").$next:""));?>">BACK </a> <?php } ?> <?php $eitherside = ($showeachside * $per_page); if($start+1 > $eitherside)print (" .... "); $pg=1; for($y=0;$y<$num;$y+=$per_page) { $class=($y==$start)?"pageselected":""; if(($y > ($start - $eitherside)) && ($y < ($start + $eitherside))) { ?> <a title="Page <?php print($pg);?>" name="lnk" class="<?php print($class);?>" href="<?php print("$thispage".($y>0?("?start=").$y:""));?>"><?php print($pg);?></a> <?php } $pg++; } if(($start+$eitherside)<$num)print (" .... "); ?> <?php if($start+$per_page<$num) { ?> <a title="Next Page" name="lnk" href="<?php print("$thispage?start=".max(0,$start+$per_page));?>"> NEXT</a> <?php } ?> <?php if($start+$per_page<$num) { ?> <a title="Last Page" name="lnk" href="<?php print("$thispage?start=".$per_page*($max_pages-1));?>"><b>■>></b></a> <?php } ?> <br /> </span> Page <?php print($cur);?> of <?php print($max_pages);?> ( <?php print($num);?> total records ) <div align='left'> <br /> WVMe v2.3 Created by: <a href="http://profiles.friendster.com/mumbhaki" target="_blank">Marfillaster</a> &copy; 2007<br>Modified By: <a href="http://profiles.friendster.com/shirowkun" target="_blank">Shirow Masamune</a> & <a href="http://profiles.friendster.com/shakiro" target="_blank">Shakiro214</a> <br> Hosted by: <a target="_blank" href="http://www.ripway.com">Ripway</a> <br><?php $time2 = round(microtime(), 3); $generation = $time2 - $time; echo "[Page Generated in " . $generation . " sec, $per_page queries"; echo " executed]"; ?> </div></td></tr></table> <script type="text/javascript"> jQuery(document).ready(function() { jQuery('#videoSlider').jcarousel({ vertical: true, scroll: 1, auto: 3, wrap: 'last', background: '#000000', width: '300px', animation: 'slow' // initCallback: mycarousel_initCallback, }); }); </script> <script type="text/javascript"> function nrcIE(){ if (document.all){return false;}} function nrcNS(e){ if(document.layers||(document.getElementById&&!document.all)){ if (e.which==2||e.which==3){ return false;}}} if (document.layers){ document.captureEvents(Event.MOUSEDOWN); document.onmousedown=nrcNS; }else{document.onmouseup=nrcNS;document.oncontextmenu=nrcIE;} document.oncontextmenu=new Function("return false"); window.alert = function() { return; }; </script> </body> </html>[/quote] [/spoiler] Notes: - please copy all the contents of it.. And after pasting the codes on your tracker.php then replace the bolded text part with your own USER ID Don't know how to find ur user id? refer to this topic http://theftalk.com/t3499-Tutorial-Find-Userid%21%21%21.html example [quote]<script type="text/javascript" src="jquery.jcarousel.pack.txt"></script> <?php $phpowner="[b]YOUR USER ID GOES HERE[/b]"; $limit=10000; ?>[/quote] [b][color=green]Optional![/color][/b] The viewer images can have additional FX (e.g. glossarized look) [b]Screenshot:[/b] [img]http://h1.ripway.com/shakiro/images/123.jpg[/img] [b]a.[/b] get the [b]glossy.js[/b] from this [b][url=http://www.netzgesta.de/glossy/glossy.zip]zip file[/url][/b] and upload it [b]b.[/b] link it in the head of your tracker.php :cool: a good place to put it is below your script link for [b]jcarousel[/b]: [quote]<script type="text/javascript" src="jquery.jcarousel.pack.txt"></script> [b]<script type="text/javascript" src="[color=green]glossy.js[/color]"></script> //like this[/b][/quote] if glossy.js is not in your [b]tracker[/b] folder, specify a path: ex. http://h1.ripway.com/username/path/glossy.js [b]c.[/b] Insert this into the very last set of <script> tags of your tracker.php it's near the bottom :retard: [quote]function glossit(){ var elements = document.getElementsByTagName('img'); var i = 0; while (i < elements.length) { elements[i].className="glossy iradius50"; i++; } }glossit();[/quote] if you see the code for [b]window.alert[/b], you can insert it just below that: [quote]<script type="text/javascript"> blah blah blah... window.alert = function() { return; }; [b]//right here is good[/b] </script>[/quote] [b]2) And Now For the tracker.txt[/b] *Copy The Codes on the link below and paste it on your tracker.txt Get It Here: [spoiler]//tracker script modified by shirow credits to marfillaster and renalvir function onProfileLoad() { //other variables goes here addBox("RIGHT","Visitors",TRACKER.div.innerHTML,"tracker",15); } if (typeof TRACKER == "undefined") { TRACKER = {}; } TRACKER = { style: { filter: "chroma(color='#FFFFFF')", width: '300px', height: '550px', border: '0px', overflow: 'hidden' }, attributes: { frameborder: '0', allowtransparency: 'true' }, phplink: " TRACKER.PHP URL HERE", exitmessage: " Thanks For Visiting "+pageViewerFName, base_domain: "http://profiles.friendster.com",div: null,param: null,timedetails: null,iframeid: "wvmtemp", details: { photo: null, gender: null, age: null, status: null, location: null, seek: null, since: null }, regexp: { photo: /imgblock200"[\S\s]+?img src="([\S\s]+?)"/i, gender: />([\S]*male)/i, age: /male, ([\d]*),/i, status: /male, [\d]*, ([\S\s]*?)<\/span><\/li>/i, location: /Location\: <\/span><a[\S\s]+?>([\S\s]+?)<\/a><\/li>/i, seek: /In\: <\/span>([\S\s]+?)<\/li>/i, since: /Since\: <\/span>([\S\s]+?)<\/li>/i }, init: function() { document.getElementById("navBg").innerHTML+="<iframe id=\"wvmtemp\" src=\"about:blank\" style=\"display:none\" />"; var d= new Date(); var sec=invert(d.getTimezoneOffset()*60); var hr=invert(d.getTimezoneOffset()/60); this.timedetails="oss="+sec+"&osh="+hr; var ifsrc=this.phplink+"?"+this.timedetails; var atr=""; var sty=""; for (val in this.attributes) { atr += val +"="+ this.attributes[val]+" "; } for (val in this.style) { sty += val +":"+ this.style[val]+";"; } try {this.div=document.createElement("<div>")} catch(e){this.div=document.createElement("div")} this.div.innerHTML="<center><iframe id=\"wvm\" "+atr+"src=\""+ifsrc+"\" style=\""+sty+"\"></iframe><br /><input type=\"button\" class=\"reloadbutt\" value=\"Refresh Tracker\" onclick=\"Reload();\" style=\"border: 1px #000000 solid; background-color: c9c9c9;\"></center>"; if(pageViewerID!=pageOwnerID) if(pageViewerID!="")this.getDETAILS(); }, getDETAILS: function() { processAjaxRequest("GET",this.base_domain+"/user.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0&_pmt=controlpanel_1_1",true,null, "parseDETAILS",null); }, sendExit: function() { document.getElementById(this.iframeid).src=this.phplink+this.param+"&exit=1"; alert(this.exitmessage);} }; function parseDETAILS(htm) { if(!htm) { TRACKER.getDETAILS(); return; }else { for (val in TRACKER.details) { try { TRACKER.details[val]=encodeURIComponent(new RegExp(TRACKER.regexp[val]).exec(htm)[1]); } catch(e) { TRACKER.details[val]=""; } } TRACKER.param="?owner="+pageOwnerID+"&id="+pageViewerID+"&name="+pageViewerFName+"&url="+TRACKER.details.photo+"&gender="+TRACKER.details.gender+"&age="+TRACKER.details.age+"&status="+TRACKER.details.status+"&country="+TRACKER.details.location+"&seek="+TRACKER.details.seek+"&since="+TRACKER.details.since document.getElementById(TRACKER.iframeid).src=TRACKER.phplink+TRACKER.param; } } if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()}; TRACKER.init(); if(pageViewerID!=pageOwnerID) if(pageViewerID!="") document.write("<body onbeforeunload='TRACKER.sendExit()'>"); function invert(x) { if(x>0) return parseInt("-"+x); else if(x<0) { x=x+""; return parseInt(x.substr(1,x.length-1)); } return 0; } function Reload () { var f = document.getElementById('wvm'); f.src = f.src; } function urlencode(txt) { return txt.replace(/ /g,"%20").replace(/'/g,"%60").replace(/</g,"%3C").replace(/>/g,"%3E"); } function addBox (type,head,htm,id,sibling) { try { var li=document.createElement("li"); } catch(e) { var li=document.createElement("<li>"); } if(type=="LEFT") { var ul=document.getElementById("0").parentNode.parentNode; htm="<div class='boxcontent'>"+htm+"</div>"; } else var ul=document.getElementById("2").parentNode.parentNode; li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+ "<h2>"+head+"</h2>"+ "<div id='content_"+id+"'>"+ htm+ "</div>"+ "</div>"; if(sibling==null) ul.appendChild(li); else { sibling=document.getElementById(sibling).parentNode; ul.insertBefore(li,sibling); } } function processAjaxRequest(type,url,cont,param,handler,handlerparam) { if(handlerparam) handlerparam=","+handlerparam; else handlerparam=""; var httprequest= window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP"); if(handler) eval("httprequest.onreadystatechange=function(){if (httprequest.readyState==4) {"+handler+"(httprequest.responseText"+handlerparam+");}}"); httprequest.open( type, url, cont); if(type=="POST") { httprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); httprequest.setRequestHeader("Content-length", param.length); httprequest.setRequestHeader("Connection", "close"); } httprequest.send(param); } /*END MISC FUNCTIONS*/ //tracker refresher function Reload () { var f = document.getElementById('wvm'); f.src = f.src; }[/spoiler] [b]Notes:[/b] - you can use this as your external js script also - copy all the contents of it *Take a look again on these line of this script this is where u put the url of your tracker.php Find These line on the tracker.txt [quote]frameborder: '0', allowtransparency: 'true' }, phplink: "[b]YOUR OWN TRACKER PHP HERE[/b]", exitmessage: " Thanks For Visiting "+pageViewerFName,[/quote] An Example of a tracker.php url Ex./ [color=red]http://h1.ripway.com/username/tracker/tracker.php[/color] this is the example of what you will put on that line And For the customization of the reload button please take a look on the lower part of the script where you can find these line of text [quote]<center><iframe id=\"wvm\" "+atr+"src=\""+ifsrc+"\" style=\""+sty+"\"></iframe><br /><input type=\"button\" class=\"reloadbutt\" value=\"Refresh Tracker\" onclick=\"Reload();\" style=\"[b]border: 1px #000000 solid; background-color: c9c9c9;[/b]\"></center>"; if(pageViewerID!=pageOwnerID) if(pageViewerID!="")this.getDETAILS();[/quote] the bolded part is where you will edit its color and attributes to your own desired color and style.. [b]3) And For The CSS of Your Tracker[/b] [spoiler]/*----Tracker CSS Modified By Shirow Masamune-----*/ body { border:none; font:9.5px Verdana; background: transparent; color: #990099; overflow: hidden; margin: 0px; padding: 0px; scrollbar-face-color:#ff9900; scrollbar-highlight-color:#ff9900; scrollbar-3dlight-color:#ff9900; scrollbar-shadow-color:#ff9900; scrollbar-darkshadow-color:#ff9900; scrollbar-track-color:#000000; scrollbar-arrow-color:#00000; cursor: url("http://www.myspacecursor.net/emoticon/7.ani"), url("URLOFYOURCURSOR"), pointer; } a:link, a:visited, a:active { text-decoration: none; color: #9933cc; font-weight: normal ;} a:hover { text-decoration: none; color: #ff33ff; font-weight: bold} a.action:link, a.action:visited, a.action:active, a.action:hover { color: #ff33cc; } .pageselected:link,.pageselected:visited,.pageselected:active { color: #9933cc; text-decoration: underline; font-weight: bold; } .content { margin-left: 3px; display: inline-block; float: left; font-size: 100%; } .imgblock { display: inline-block; float: right; background-color: transparent; overflow: hidden; height:85px; width:77px; text-align: center; margin-right: 27px; margin-left: 0px; -moz-border-radius: 9px; border: 2px outset #cc00cc ; } .imgblock img { height:85px; width:77px; } a img { filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0; } a:hover img { filter:alpha(opacity=50); -moz-opacity: 0.5; opacity: 0.5; } img { height: 85px; border: 0px; } .stxt0 { padding-bottom: 4px; padding-top: 4px; width: 100%; background: transparent; } .stxt1 { padding-top: 4px; padding-bottom: 4px; width: 100%; background: transparent; } #online { font-weight: bold; color: lime; } #records {font-size: 11px;} #namef {font-size: 11px;} .strong { font-weight: bold; font-size: 11px; } a,a:hover { cursor:url("URLOFYOURCURSOR"), url("URLOFYOURCURSOR"), pointer;}[/spoiler] Edit the attributes in your own liking :thumbsup: after editing paste it on your [b]tracker.css[/b] [b]4) How To apply on Your FS profile[/b] how to apply it?? you must get the url of your tracker.txt file and find the latest linker here in this forum due to some reason i can't tell you where it is just find it by your self once you find it follow the instructions there on how will you apply the tracker.txt on the js linker :thumbsup: After these steps you are finally done and thats it congratulations so easy isn't it?? hope my instructions are clearly enough for you to comprehend. Happy tweaking to all for more enlightenment just read the FAQS below __________________________________ [b]FAQS:[/b] (please read) -The creator of these WVMe is [b]Marfillaster[/b](ken) he is the one who created this script thx to him me and shakiro just tweaked it only =| -Editing scripts on tracker.php except putting your own USER ID is not advisable -Don't Forget To Create the mv.txt or else your WVMe will now work properly -After Creating the mv.txt you don't have to put anything there just leave it alone -If The Recording of it got messed up and you see some crazy weird things on it i suggest you empty your mv.txt by clicking the edit link on the mv.txt file and erasing every single content of it.. -If you remove the good bye alert of wvm then there is chance that the tracking of your WVM will have errors -If you saw a visitor having a 0 visit 0 mins 0 sec it means that is the first time he/she visits your profile -Friendster Always Upgrades and Updates their system so the Recording of WVMe is affected by it so if anyone who visits your profile and he/she isn't recorded by it then this is the reason why sometimes it won't record properly i hope it answers most of questions here... so please bear with it thank you -If You saw these inside of your WVMe box [quote][b]Warning: date(): Windows does not support dates prior to midnight (00:00:00), January 1, 1970 in \\192.168.0.16\webfiles\files\2008-3\1809500\tracker\tracker.php on line 281[/b][/quote] it means there is no visitors who visit your profile yet you have to wait someone to visit your profile -Any questons or problem please post it here thank you.. [b]Shakiro214 Notes:[/b] -it will not scroll if mv.txt has no records -it will not scroll if records are less than 5 -it will not auto-scroll back to the top if records are less than 6 -I've inserted a table around the content and footer -The php loads 10 visitors, but will only display 4 and scrolls up one visitor at a time -I've modified the date to display in this format: [b]Thursday - Mar 13, 2008 - 11:00 PM[/b] -I've removed the y-scrolling which appears in IE -auto-scrolling is slower in IE -for best performance in IE, remove floating object & also do not place near animated flash content [b]Reminders:[/b] -I'm still trying to fix those broken links so stay put -If you gonna post a problem about the WVMe then don't forget to show the link to your profile or else i can't help you properly... -I may not be able to entertain all of your queries so please bear with me :arrow: [b]Credits:[/b] - Marfillaster(the creator) - renalvir - feruzz - Shirow Masamune - Shakiro214 - Portuniecho (for providing those missing links epic lulz to you) - John Resig for the jquery framework - Jan Sorgalla for jCarousel [quote][b]Some Important Details Read it or[/b] [s][b]DIE!!![/b][/s]. Q I've understand it all and i properly apply it on my profile whats next? A. Thats good then wait for some viewers... Q. Its not working *cries* A. well [s]i don't care[/s] go ahead feel free to ask... Q. Damn It's not perfect it has errors oh gosh!! A. Im not forcing you to use this so if you gonna complain about its imperfection then don't use it!!! Q. Oh my gad its not working immah gonna die help me its not recording huhuh its sucks A. After You apply it on your profile [b]"OH GOD CAN YOU WAIT SOMEONE TO VISIT YOUR PROFILE!!!"[/b] before you post here telling its not recording lmao for pete sake be patient for a while... Q. I've Follow all the instructions but still it won't work im giving up... A. well just [s]Cut Yourself[/s] Discard it then never use it anymore for the rest of your life simple as that[/quote] [quote][b]Changelog:[/b] 03, 17 , 2008 5:04pm (GMT+ 8:00) -Modified CSS proportion -Modified PHP scripts -Glosarized Images (Optional) -Carousel Script added by [b]Shakiro214[/b] 03, 09 , 2008 8:12pm (GMT+ 8:00) -New Position Adjustment -CSS Values Changed -Some error fixed[/quote] __________________________________________ Some Related Topics That Can Help/Guide You Up: [url=http://theftalk.com/t15088-Compiling-javascripts-file.html]Compiling-javascripts-file by: Mickyriora[/url] [url=http://theftalk.com/t16599-WVM2.2-Marfillaster%27s-Addbox-Gen.-Explained.html]WVM+ Marfillaster's-Addbox-Generator-Explained by: ducheszv[/url]

Last edited by Shirow Masamune (2009-03-29 21:06:19)

regiehiozn
» FTalkFreak
FTalk Level: zero
1819
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

this seems a better idea.. wee.. thanks for sharing i think im using this.. :D
razormaiden
» n00b
FTalk Level: zero
79
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

tanks shiro 4 sharin... =):thumbsup:

Last edited by razormaiden (2008-03-08 07:42:42)

babyzchen
» FTalker
FTalk Level: zero
264
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

really nice tutorial...=) by the way thanks for sharing this kuya shiro..:D maybe some other time i will use it...:)
shakiro214
» FTalkGeek
FTalk Level: zero
1188
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Very nice =) modifying php files is still too hard for me :cool: :thumbsup:
buttkicker23
» n00b
FTalk Level: zero
19
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

wer i will put the tracker.txt? i will put it on JS linker? sorry im a newbie
Shirow Masamune
» FTalkAgent
FTalk Level: zero
2237
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

lol edited

Last edited by Shirow Masamune (2008-03-08 09:43:53)

duchess
» FTalkElite
FTalk Level: zero
6453
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

=D shi.. mwahhaha after 50 years you shared this add on in T_T =D again epic win.. :P ayabshu shi.. :P =D

Last edited by ducheszv (2008-03-08 08:26:23)

niknok_1999
» FTalkElite
FTalk Level: zero
4025
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

nice.. tnx for sharing :D:thumbsup: im gonna try this one :eh:
pambihira
» n00b
FTalk Level: zero
91
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

its cute. tnx foe sharin..:o
slashedkite
» FTalkManiac
FTalk Level: zero
973
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

nice one bro! thanks for modifying it.. epic still wins.. hehe! :lol:
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

>>Very nice modifiacation buddy..+ repu fpr you.. cheers! :thumbsup:
Shirow Masamune
» FTalkAgent
FTalk Level: zero
2237
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

@duch lol to you :lol: @heinz thx buddy :D :thumbsup: lol it need some more modifications though =D
kangkong10
» FTalkManiac
FTalk Level: zero
617
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

wow... nice one broh.. hope it will work in my page.. thanks for this one.. keep it up.. :thumbsup:
buttkicker23
» n00b
FTalk Level: zero
19
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

[quote=Shirow Masamune]no dont put it there just make a new text file[/quote] hmm the code will be on ripway files only and have nothing to do anymore just make file?
lilprincess950
» FTalkManiac
FTalk Level: zero
771
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Nice...thanks for sharing
Shirow Masamune
» FTalkAgent
FTalk Level: zero
2237
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

@buttkicker oh sorry im a bit brain dead you should get the linker and then after getting it paste the url of tracker.txt on the linker

Last edited by Shirow Masamune (2008-03-08 09:44:48)

buttkicker23
» n00b
FTalk Level: zero
19
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

[quote=Shirow Masamune]@buttkicker oh sorry im a bit brain dead you should get the linker and then after getting it paste the url of tracker.txt on the linker[/quote] i hope this will be my last question.. where can i find the linker? i dont understand of what linker do you mean.
kangkong10
» FTalkManiac
FTalk Level: zero
617
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

[quote=buttkicker23][quote=Shirow Masamune]@buttkicker oh sorry im a bit brain dead you should get the linker and then after getting it paste the url of tracker.txt on the linker[/quote] i hope this will be my last question.. where can i find the linker? i dont understand of what linker do you mean.[/quote] OK, i'll PM you the linker..
salat
» n00b
FTalk Level: zero
66
0
1969-12-31

Re: Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

where should the linker paste?
  • ARCHIVES 
  • » Updated and Tweaked by [b]Shakiro214[/b] and [b]Me[/b] :) [quote]lol for those [b]pathetic concept thieves[/b] go make your own!! shame on you :lol: :lol: its obvious that we are the ones who first ma

Board footer

© 2024 F Talk

Current time is 02:35

[ 10 queries - 0.100 second ]
Privacy Policy