|
|||||||
| Internet Arama Programları · Çevirmeli Ağ ve Araçları · Çeşitli Araçlar ( Çevrim Dışı Gezginler & Site Kopyalama) · Chat ( Mesajlaşma Programları) · Dosya Paylaşımı · Download Yöneticileri · E-Mail · Ftp · Güvenlik · Hızlandırıcı · Network · Site Yönetimi · Tarayıcılar ve Gezginler ( Eklentiler) · İletişim |
![]() |
|
|
|
Konu Araçları |
|
|
#1 | |
|
Kovuldu
Katılma Tarihi: Feb 2008
Yaş: 19
Mesajlar: 0
Puanı: 0
Rep Puanı: 9505
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
BugMeNot java betiği ile herhangi bir foruma üye olmaksızın , “Bu linki sadece üye olanlar görebilir” benzeri uyarıları kolayca aşabilir ve hazır kullanıcı isim ve şifreleri ile forumları dolaşabilirsiniz. Öncelikle BugMeNot ile ilgili aşağıdaki kısa açıklamayı okuyalım.Nedir,ne işe yarar?
Alıntı:
Firefoxta bir [Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...] vasıtasıyla yapılan bu işlemi Opera içerisinde bir kullanıcı betiği yardımı ile yapacağız 1 – Aşağıdaki butona tıklayarak herhangi bir araç buğuna kaydediyoruz.Yahut butonu CTRL+Sol klik yardımı ile taşıyarak istediğiniz bir araç çubuğu üzerine yerleştirin. BugMeNot Buton-1 (1 numaralı java betiği ile beraber kullanılacak) BugMeNot Buton-2 (2 numaralı java betiği ile beraber kullanılacak) Ben bu 2 butonu şu şekilde koydum en kullanışlısı bu gibi sanki ![]() ![]() Şimdi size 2 adet kod vereceğim aynı fake mail gibi hazırlayacağız. 1. Kod: Kod:
// ==UserScript==
// @name Bug me not
// @author Simon Houston
// @namespace http://opera.oslocity.org/shoust/
// @version 1.0
// @description Allows the user to search BugMeNot.com service for
//accounts to bypass compulsory authentification
//on the site he/she is viewing.
// @ujs:category general: enhancements
// @ujs:published 2006-01-30 18:12
// @ujs:modified 2006-01-31 09:45
// @ujs:documentation http://userjs.org/scripts/general/enhancements/bug-me-not
// @ujs:download http://userjs.org/scripts/download/general/enhancements/bug-me-not.js
// ==/UserScript==
/*
* This script is granted to the Public Domain.
*/
/*
--- Changes made by userjs.org moderator (ROBO Design; robodesign.ro)
To use the script press Ctrl+Shift+Double Click.
To activate the script you can also use this bookmarklet:
javascript:if(window && window.ujs_shoust_bugmenot) void(window.ujs_shoust_bugmenot.init()); else alert('Bug Me Not UserJS is probably not installed.');
Same code can be used for making a button, menu item, keyboard shortcut, mouse gesture or voice command.
*/
document.addEventListener('load', function ()
{
if(window.ujs_shoust_bugmenot)
return false;
window.ujs_shoust_bugmenot = new (function ()
{
var manager = this;
manager.teedee = -4; /* To toggle between the various logins for later */
manager.teedi = -3;
manager.empha = -1;
manager.basename = 'ujs-shoust-bugmenot';
manager.domain = 'bugmenot.com';
manager.url = 'http://www.'+manager.domain+'/view.php?url=';
manager.init = function ()
{
// do not allow running this script on manager.domain
if (location.hostname.indexOf(manager.domain) != -1)
return false;
if (document.getElementById(manager.basename+'-bar'))
{
manager.resetdatas();
/* Closes the bar and resets the values if the function is called again */
} else {
var bgment = document.createElement('div');
/* Creating the toolbar element */
bgment.style = "position:fixed; z-index:9999; bottom:0; height:30px; overflow:hidden; color:black; font:14px Arial; width:100%; background: -o-skin('Window Skin');display:block;margin:0;padding:0;float:none";
bgment.id = manager.basename+'-bar';
var obj = document.createElement('object');
obj.id = manager.basename+'-obj';
obj.data = manager.url + location.hostname;
obj.style = 'visibility:hidden;width:0;height:0;position:absolute';
obj.addEventListener('load',manager.nextlogin, false);
bgment.appendChild(obj);
var fetching=document.createElement('div');
fetching.style='background-color:white;display:inline-block;border:1px dotted black;position:static;float:none;margin:0;padding:5px;height:20px';
fetching.appendChild(document.createTextNode('Fetching possible logins'));
bgment.appendChild(fetching);
document.documentElement.appendChild(bgment);
}
}
if (location.hostname.indexOf(manager.domain) == -1)
{
document.addEventListener('message',
function(ev)
{
var splitted = ev.data.split(' ');
/* The data sent back from bugmenot */
if(splitted[0] != (manager.basename+'-msg'))
return false;
var usr = unescape(splitted[1]),
pass = unescape(splitted[2]),
ssrate = splitted[3],
gmmnm = parseInt(splitted[6]),
gmmnmy = parseInt(splitted[7]),
bar = document.getElementById(manager.basename+'-bar');
var gmmnmyt = gmmnm/4;
if(!bar)
return false;
if (splitted[3] == 0)
{
alert(usr+' '+pass);
manager.resetdatas();
/* returned when no logins are found */
} else if (document.getElementById(manager.basename+'-usr')) {
if((manager.teedee+4) == gmmnm)
document.getElementById(manager.basename+'-next').disabled = true;
else
document.getElementById(manager.basename+'-next').disabled = false;
if((manager.teedee-4) == (gmmnm-gmmnm-4))
document.getElementById(manager.basename+'-prev').disabled = true;
else
document.getElementById(manager.basename+'-prev').disabled = false;
var tmp = document.getElementById(manager.basename+'-noflogins');
tmp.removeChild(tmp.firstChild);
tmp.appendChild(document.createTextNode(gmmnmy+' of '+gmmnmyt));
document.getElementById(manager.basename+'-usr').value = usr;
document.getElementById(manager.basename+'-pwd').value = pass;
tmp = document.getElementById(manager.basename+'-ssrate');
tmp.removeChild(tmp.firstChild);
tmp.appendChild(document.createTextNode(ssrate));
} else {
bar.removeChild(bar.lastChild);
var stye='background-color:white; display:inline-block; border:1px dotted black; position:static; float:none; margin:0; padding:5px; width:auto; height:20px; font:14px Arial; color:black';
var styeinput = 'position:relative; display:inline-block; height:auto; float:none; vertical-align:middle; top:-10px;height:30px';
var ssrate = splitted[3];
// Close button
var tmp=document.createElement('input');
tmp.style=styeinput+';width:auto';
tmp.type = 'button';
tmp.value = 'X';
tmp.title = 'Close the bar';
tmp.addEventListener('click', manager.resetdatas, false);
bar.appendChild(tmp);
// Username
var usrnme=document.createElement('label');
usrnme.style=stye;
usrnme.setAttribute('for', manager.basename+'-usr');
usrnme.appendChild(document.createTextNode('Username'));
bar.appendChild(usrnme);
tmp = document.createElement('input');
tmp.id = manager.basename+'-usr';
tmp.value = usr;
tmp.style = styeinput+";width:130px";
bar.appendChild(tmp);
// Password
var psswd=document.createElement('label');
psswd.style=stye;
psswd.setAttribute('for', manager.basename+'-pwd');
psswd.appendChild(document.createTextNode('Password'));
bar.appendChild(psswd);
tmp = document.createElement('input');
tmp.id = manager.basename+'-pwd';
tmp.value = pass;
tmp.style = styeinput+";width:130px";
bar.appendChild(tmp);
// Success rate
var sur=document.createElement('div');
sur.style=stye+";border-right:0";
sur.appendChild(document.createTextNode('Success rate:'));
bar.appendChild(sur);
tmp = document.createElement('strong');
tmp.style=stye+";font-weight:bold;border-left:0";
tmp.id = manager.basename+'-ssrate';
tmp.appendChild(document.createTextNode(ssrate));
bar.appendChild(tmp);
// Previous login
tmp = document.createElement('input');
tmp.type = 'button';
tmp.id = manager.basename+'-prev';
tmp.disabled = true;
tmp.value = '<<';
tmp.title = 'Previous login';
tmp.style = styeinput+";width:auto";
tmp.addEventListener('click', manager.prevlogin, false);
bar.appendChild(tmp);
// Next login
tmp = document.createElement('input');
tmp.type = 'button';
tmp.id = manager.basename+'-next';
tmp.value = '>>';
tmp.style = styeinput+";width:auto";
tmp.title = 'Next login';
if((manager.teedee+4) == gmmnm)
tmp.disabled = true;
tmp.addEventListener('click', manager.nextlogin, false);
bar.appendChild(tmp);
tmp = document.createElement('input');
tmp.type = 'button';
tmp.value = '^';
tmp.style = styeinput+";width:auto";
tmp.title = 'Use another pages login\'s';
tmp.addEventListener('click', function(){
var fgd=prompt('Get Another URLs passwords?','');
if(!fgd)
return false;
document.getElementById(manager.basename+'-obj').data = manager.url+fgd;
document.getElementById(manager.basename+'-ologins').href = manager.url+fgd;
manager.teedee = -4;
manager.teedi = -3;
manager.empha = -1;
}, false);
bar.appendChild(tmp);
// Number of logins
tmp = document.createElement('span');
tmp.style = stye;
tmp.id = manager.basename+'-noflogins';
tmp.appendChild(document.createTextNode(gmmnmy + ' of ' + gmmnmyt));
bar.appendChild(tmp);
// Wand = login to site using the current user name and password
tmp = document.createElement('input');
tmp.type = 'button';
tmp.id='wand';
tmp.title = 'Login to site using the current user name and password'
tmp.style = "background:-o-skin('Wand'); position:absolute; right:0; height:30px; width:30px;";
tmp.addEventListener('click', manager.logintosite, false);
bar.appendChild(tmp);
// Open logins
tmp = document.createElement('a');
tmp.href = manager.url+location.hostname;
tmp.id = manager.basename+'-ologins';
tmp.style = 'position:absolute; right:30px; background-color:white; border:1px dotted black; float:none; padding:5px; height:20px; width:auto; font:14px Arial; color:black;';
tmp.appendChild(document.createTextNode('Open logins'));
bar.appendChild(tmp);
}
},
false);
} else {
document.addEventListener('message', function(ev)
{
if(ev.data == '')
return false;
var received = ev.data.split(' ');
if(received[0] != (manager.basename+'-msg'))
return false;
var tds = document.getElementsByTagName('td');
var totalogins = tds.length,
nototalogins = received[4];
if (totalogins == 0)
{
var username = 'No',
password = 'logins',
susrate = totalogins = nototalogins = '0';
} else {
var username = tds[received[1]].innerText;
var password = tds[received[2]].innerText;
var susrate = document.getElementsByTagName('em')[received[3]].innerText;
/* Grabs login data */
}
ev.source.postMessage(manager.basename+'-msg ' + escape(username) + ' ' + escape(password) + ' ' + susrate + ' ' + totalogins + ' ' + nototalogins);
/* Posts the data back to main document */
},
false);
}
manager.logintosite = function ()
{
/* Logs into website when required */
for (var i = 0, j, compl; !compl && (j = document.forms[i]); i++)
{
for (var n = 0, m; m = j.elements[n]; n++)
{
if (m.type == 'text')
{
m.value = document.getElementById(manager.basename+'-usr').value;
j.hasBMNUser = true;
} else if (m.type == 'password')
{
m.value = document.getElementById(manager.basename+'-pwd').value;
j.hasBMNPass = true;
}
if (j.hasBMNUser && j.hasBMNPass)
{
j.submit();
compl = true;
break;
}
}
}
}
document.addEventListener('dblclick',
function(e)
{
if (event.shiftKey && event.ctrlKey)
{
manager.init();
}
}, false);
manager.prevlogin = function ()
{
return manager.grabloginlist(-4,-4,-1);
}
manager.nextlogin = function ()
{
return manager.grabloginlist(4,4,1);
}
manager.grabloginlist = function (x, y, z)
{
manager.teedee += x;
manager.teedi += y;
/* Activates a toggle to grab the later parts of the document */
manager.empha += z;
var nomlogins = manager.teedee/4+1;
var obj = document.getElementById(manager.basename+'-obj');
if(!obj)
return false;
obj.contentDocument.postMessage(manager.basename+'-msg ' + manager.teedee + ' ' + manager.teedi + ' ' + manager.empha + ' ' + nomlogins);
}
manager.resetdatas = function ()
{
var bar = document.getElementById(manager.basename+'-bar');
if(bar)
document.documentElement.removeChild(bar);
manager.teedee = -4;
manager.teedi = -3;
manager.empha = -1;
}
})();}, false);
if(opera)
opera.addEventListener('BeforeScript',function(ev){
if( ev.element.src == 'http://www.bugmenot.com/inc/library.js' ){
ev.element.text = ev.element.text.replace('top.location != location','false');
opera.removeEventListener('BeforeScript',arguments.callee,false);
}
},false);
Kod:
// ==UserScript==
// @name Bug me not - Login Fetcher
// @author Ayush
// @version 1.2.3
// ==/UserScript==
// How to use -
// Ctrl+Shift+Double-Click to toggle the visibility of logins.
// Or when userNames/passwords are visible, just double-click anywhere to hide them.
// Or press the close button X
//javascript:alert(document.selectNodes('//FORM[//input[@type="text" or not(@type)] and //input[@type="password"] and (//input[@type="image" or @type="submit"] or //button[@type="submit" or not(@type)])]').length)
(function(){
var showLogins=2; // max-number of logins to show at one time (scroll down to see other logins)
var UserPassField=1; // find and highlight username-password field on page when you open the BMN frame
var SubmitAfterFilling=1; // submit the form after entering username and password
var inpText,pass,subm,ccr,wtms;
if(/bugmenot\.com.*\?script-ayush$/i.test(location)){
/* page in bugmenot domain */
//window.stop();
/* helper functions */
window.decoder = function(data) {
var b64="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",o1,o2,o3,h1,h2,h3,h4,bits,i=0,enc='';
do {h1=b64.indexOf(data.charAt(i++));h2=b64.indexOf(data.charAt(i++));h3=b64.indexOf(data.charAt(i++));h4=b64.indexOf(data.charAt(i++));bits=h1<<18|h2<<12|h3<<6|h4;o1=bits>>16&0xff;o2=bits>>8&0xff;o3=bits&0xff;if(h3==64)enc+=String.fromCharCode(o1);else if(h4==64)enc+=String.fromCharCode(o1, o2);else enc+=String.fromCharCode(o1,o2,o3);}
while(i<data.length);
return enc;
}
window.d = function(strInput) {
strInput=decoder(strInput);
var strOutput="";var intOffset=(key+112)/12;
for(i=4;i<strInput.length;i++){thisLetter=strInput.charAt(i);thisCharCode=strInput.charCodeAt(i);newCharCode=thisCharCode-intOffset;strOutput+=String.fromCharCode(newCharCode);}
document.write(strOutput);
}
/* helper functions end */
/* should be made with httprequest as soon as window.stop() gets fixed */
/*
var xml = new XMLHttpRequest();
xml.onload = function(req) {
alert(xml.responseText);
}
xml.open("GET", location);
xml.send();
*/
var rem = 0; window.urchinTracker = function(){};
// prevent execution of external scripts
opera.addEventListener("BeforeExternalScript",function(cujse){if(rem)return opera.removeEventListener(cujse.type,arguments.callee,false);cujse.preventDefault(); },false);
// remove all images
document.addEventListener("DOMContentLoaded",function(){ var i=document.images,ix=i.length;while(ix)i[--ix].removeNode(); },false);
document.addEventListener("load",function(){
stop();
rem=1;
if ( !(document.getElementById("document")) ) {
top.postMessage('bugmenot-error');
return;
}
var cLoginPE=document.getElementById("document").getElementsByTagName("div"); var cont=''
for(var iX=0;iX<cLoginPE.length;iX++)
if(/panel minor/i.test(cLoginPE[iX].className)){ cont=cLoginPE[iX]; break }
var cfms=cont.getElementsByTagName("form");
while(cfms[0])
cfms[0].parentElement.removeChild(cfms[0]);
var tr3=cont.getElementsByTagName("th");
for(var iX=0;iX<tr3.length;iX++)
if(tr3[iX].textContent=="Other"){
var tr3Par=tr3[iX].parentElement;
tr3Par.parentElement.removeChild(tr3Par)
}
var oneLog=document.getElementsByTagName("table"),normdv=(oneLog.length&&oneLog[0])||{offsetWidth:300,offsetHeight:100}
cont.removeChild(cont.getElementsByTagName("h2")[0])
document.getElementsByTagName('head')[0].appendChild(document.createElement("style")).text='div{height:'+normdv.offsetHeight+'px !important} table{border:1px dashed black}';
var closeB=document.createElement("span");closeB.innerHTML="x"
closeB.style="font-size:20px;color:red;position:fixed;top:0px;right:5px";
closeB.setAttribute("onclick","top.postMessage('bugmenot-close')")
cont.appendChild(closeB)
var dde=document.body;
dde.style.margin=0;dde.style.overflow='hidden';
dde.style.width=+normdv.offsetWidth+22+'px';
dde.innerHTML = cont.innerHTML
var hgt=(isNaN(showLogins)||oneLog.length<=showLogins)?0:oneLog[showLogins].offsetTop-4
var wand=document.createElement('div');wand.style="background-image:-o-skin('Wand');width:20px!important;height:20px!important;position:absolute;cursor:hand";
var ckFunc=function(){ var un_pw=this.parentElement.getElementsByTagName('td');if(un_pw.length>1){parent.postMessage('bugmenot-wand/'+un_pw[0].lastChild.textContent+'/'+un_pw[1].lastChild.textContent)}else alert('bmn-doc:username/pass fields not found!!') };
for(var iX=0,curr,cw;curr=oneLog[iX++];){
cw=wand.cloneNode(false);cw.onclick=ckFunc;
cw.style.top=(curr.offsetTop+curr.offsetHeight-18)+"px";
cw.style.left=(curr.offsetLeft+1)+"px";
curr.appendChild(cw);
}
var p=document.body.all[0]
if(p.tagName=="P")p.style="padding:14px;font:12px 400 'trebuchet ms'";
parent.postMessage((hgt||dde.scrollHeight) + "/" + dde.offsetWidth);
if(UserPassField)parent.postMessage('bugmenot-wand');
},false)
}else{
/* any other NOT bugmenot webpage */
window.addEventListener("message",function(){
if(!event.target.document.domain.indexOf("bugmenot.com")|| !crn)return;
var dde=event.data.split("/");
switch(dde[0]){
case "bugmenot-close": cChangeVis('hidden1',ccr);break;
case "bugmenot-error": wtms.textContent="Error checking logins!";setTimeout(function(){cChangeVis('hidden1',wtms)}, 3000);break;
case "bugmenot-wand" :
if(!inpText||!pass){
var docForm=document.selectNodes('//FORM[descendant::input[@type="text" or not(@type)] and descendant::input[@type="password"]]')[0];
if(!docForm)return// alert('docForm not found !');
for(var iX=0,E;E=docForm.elements[iX++];)
if(E.currentStyle.visibility=="hidden" || E.currentStyle.display=="none")
continue
else if(E.type=="text" || !E.type){
inpText=E;if(pass)break;
}else if(E.type=="password"){
pass=E;
if(inpText)break;
}
if(!inpText||!pass)return alert('inpText/pass !');
subm=document.createElement('FORM').submit;
pass.style.border=inpText.style.border="1px groove yellow";
};
if(dde[1]&&dde[2]){inpText.value=dde[1];pass.value=dde[2];if(SubmitAfterFilling)subm.call(inpText.form) };
break;
default: ccr.style.height=dde[0]+'px!important';ccr.style.width=dde[1]+'px!important';wtms.style.visibility='hidden';ccr.style.visibility='';
}
},false)
}
var crn,fAde;
addEventListener("dblclick",function(){MinFunc(event)},false);
function MinFunc(evt){
var cev=evt;if(!document.body || cev.altKey)return;else {var cCSH=(cev.ctrlKey && cev.shiftKey)}
if(crn){
cChangeVis((ccr.style.visibility!='hidden'?'hidden1':(!cCSH?'-':'')),ccr)
}else if(cCSH){
ccr=document.createElement("iframe");
ccr.style="position:fixed;bottom:0;left:0;width:400px;height:100px;opacity:1;visibility:hidden;border:2px inset black;z-index:1001";
ccr.src='http://www.bugmenot.com/view/'+location.hostname.replace(/^www\./,'')+'?script-ayush'; // have to remove www. or else bugmenot will redirect us and thus get out of iframe
wtms=document.createElement("span");
wtms.style='background-color:black;opacity:0.5;width:220px;height:50px;text-align:center;position:fixed;bottom:0;left:0;visibility:visible;color:white;font:bold 11pt "trebuchet ms";border:2px dotted gray;z-index:1002';
wtms.textContent="Please wait...";wtms.addEventListener('dblclick',function(){cChangeVis('hidden1',this);},false)
document.body.appendChild(ccr)
document.body.appendChild(wtms);
crn=1
}
}
window.MinFunc=MinFunc;
function cChangeVis(cSt,elem){
if(fAde||cSt=='-')return; elem.style.visibility='visible';
fAde=setInterval(function(){
elem.style.opacity=+elem.style.opacity+(cSt?-0.15:+0.15);
var c=elem.style.opacity;
if(c<=0||c>=1){
clearInterval(fAde);fAde=0
elem.style.visibility=cSt.slice(0,-1);elem.style.opacity=cSt.slice(-1)?0:1
}
},elem.tagName.toLowerCase()=='span'?32:1)
}
})()
1.sine BugMeNot-1.js 2.sine BugMeNot-2.js ismini verip masaüstüne kaydedelim Yada bu işlem karışık geldiyse yukarıdaki işlemlerin hepsini atlayıp [Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...] İndireceğiniz dosyanın rar şifresi: kadir@forumti sonra program files'a girelim opera klasörüne girelim ve yeni bir klasör açalım ismini istediğiniz gibi verin ben eklentilerim diye klasör açtım ve bu indirdiğiniz 3 dosyayı onun içine atalım. Örnek ekran görüntüsü: ![]() Şimdi ise bu klasörü Opera'ya tanıtacağız. ARAÇLAR / TERCİHLER / GELİŞMİŞ / İÇERİK / JAVA SCRİPT ÖZELLİKLERİ'ne giriyoruz, ve en alttaki JAVA SCRİPT DOSYALARI yazan bölümdeki seç tuşuna basıp EKLENTİLERİ attığımız klasörü seçip tamam diyoruz. Örnek Resim: ![]() Şimdi bunları yaptıktan sonra Opera'yı kapatıp açıyoruz. Şimdi bunu Forumti de deneyelim ![]() ![]() ![]() Ardından ![]() Ve sonra ![]() Biraz bekliyoruz ve sonuç!!!!!!!!!!!! ![]() Tabi bunu kötü amaçla kullanılmaması için sanane nickli ve şifresi 123456 olan kişiyi banladım bile yani forumda bu üyelikle gezmeyin ![]() ![]() ![]() Bazen orada verilen kullanıcı hesapları olmuyor o zaman ise o foruma girip alttaki resimde işaretlediğim yere tıklıyoruz ![]() Ve ardından alttaki resme benzer bir pencere gelecek. ![]() Alın size bir sürü kullanıcı hesabı. Linkleri gizleyen forumlara karşı artık KAYIT OL butonunu parçalamayacaksınız ![]() Yani %100 işe yarıyor, bunu diğer forumlarda kullanabilirsiniz kolay gelsin ![]() [Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...] Bu mesajı en son Kadir Akbulut düzenledi . Düzenleme zamanı: 18.05.2009... 13:02 |
|
|
|
|
|
#2 |
|
Kovuldu
Katılma Tarihi: Apr 2009
Yaş: 16
Mesajlar: 108
Puanı: 0
Rep Puanı: 69
Rep Derecesi :
![]() |
![]() Bundan sonra bu geliyor .. ![]() Ne yapıcam ?? |
|
|
|
|
#3 |
|
Kovuldu
Katılma Tarihi: Feb 2008
Yaş: 19
Mesajlar: 0
Puanı: 0
Rep Puanı: 9505
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Get Logins'e tıklayınca sol altta bir pencere çıkıyormu? Oda çıkmıyorsa ona göre bişeyler düşünelim
|
|
|
|
|
#4 |
|
Kovuldu
Katılma Tarihi: Apr 2009
Yaş: 16
Mesajlar: 108
Puanı: 0
Rep Puanı: 69
Rep Derecesi :
![]() |
Evet cıkıyor ..
|
|
|
|
|
#5 |
|
Kovuldu
Katılma Tarihi: Feb 2008
Yaş: 19
Mesajlar: 0
Puanı: 0
Rep Puanı: 9505
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
O zaman 2. verdiğim kodu buraya aktarırken veya anlatımı yaparken bişeyleri karıştırmış olmalıyım. Çok uzattım ama o verdiğim kodları kendin mi not defterinden kaydettin yoksa verdiğim linkten mi indirdin?
|
|
|
|
|
#6 |
|
Kovuldu
Katılma Tarihi: Apr 2009
Yaş: 16
Mesajlar: 108
Puanı: 0
Rep Puanı: 69
Rep Derecesi :
![]() |
Önce kendim yaptım sonra her ihtimale karşı indirip yapıştırdım
|
|
|
|
|
#7 |
|
Kovuldu
Katılma Tarihi: Apr 2009
Yaş: 16
Mesajlar: 108
Puanı: 0
Rep Puanı: 69
Rep Derecesi :
![]() |
![]() Buraya kadar sorun yokta burdan sonra ki işlem yapılmıyor |
|
|
|
|
#8 |
|
Kovuldu
Katılma Tarihi: Feb 2008
Yaş: 19
Mesajlar: 0
Puanı: 0
Rep Puanı: 9505
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Sorun çözüldü. O butonun çalışmadığı kişiler varsa
[Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...] den sonra www. girmeden siteninismi.com olarak o butona tıklamadan aynı işi yapabilir. Örnek : [Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...]forumti.com [Linkleri görebilmek için üye olmalısınız. Üye olmak için tıklayınız...] |
|
|
|
|
#9 |
|
Game Programmer
![]() Katılma Tarihi: Jun 2007
Yaş: 18
Mesajlar: 2,256
Puanı: 57
Rep Puanı: 841
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Artık Opera'ya geçiyorum,sağol Kadir
__________________
Bu mesajı en son Kadir Akbulut düzenledi . Düzenleme zamanı: 20.05.2009... 15:38 |
|
|
|
|
#10 | ||
|
Kovuldu
Katılma Tarihi: Feb 2008
Yaş: 19
Mesajlar: 0
Puanı: 0
Rep Puanı: 9505
Rep Derecesi :
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
Alıntı:
Alıntı:
|
||
|
|