-
Üyelik
07.01.2020
-
Yaş/Cinsiyet
24 / E
-
Meslek
Öğrenci
-
Konum
Ankara
-
Ad Soyad
M** H**
-
Mesajlar
226
-
Beğeniler
8 / 28
-
Ticaret
3, (%100)
merhaba arkadaşlar, bu benim için çok önemli olduğum piyasada çok rakip olduğu için sürekli gelip beni adsenseden banlatmaya çalışıyorlar, cezam 2 aydır yeni kalktı bunu engellemek için böyle bir şey mümkün mü siteye giren kişi reklama sadece 1 kere tıklayabilsin 1 tıklamadan fazlasını yapamasın 1 gün boyunca
1 kişi bu mesajı beğendi.
-
Üyelik
26.12.2018
-
Yaş/Cinsiyet
27 / E
-
Meslek
Yazılım geliştirici
-
Konum
İstanbul Avrupa
-
Ad Soyad
A** Y**
-
Mesajlar
98
-
Beğeniler
2 / 11
-
Ticaret
2, (%50)
ip veya mac adresini 1 tıklama ile sınırlandırabilirsiniz.
-
Üyelik
12.06.2017
-
Yaş/Cinsiyet
24 / E
-
Meslek
Öğrenci
-
Konum
Erzurum
-
Ad Soyad
B** K**
-
Mesajlar
1227
-
Beğeniler
328 / 327
-
Ticaret
22, (%100)
iframetacker.js ile php kodu yazarak yapabilirsin.
-
Üyelik
03.03.2020
-
Yaş/Cinsiyet
23 / E
-
Meslek
.
-
Konum
Diğer
-
Ad Soyad
H** M**
-
Mesajlar
280
-
Beğeniler
70 / 51
-
Ticaret
1, (%100)
Bende merak ettim umarım bilen çıkar.
-
Üyelik
23.01.2016
-
Yaş/Cinsiyet
45 / E
-
Meslek
bilgisayar mühendisi
-
Konum
İstanbul Avrupa
-
Ad Soyad
M** E**
-
Mesajlar
1366
-
Beğeniler
9 / 379
-
Ticaret
0, (%0)
*.htaccess içerisine aşağıdaki kodları ekleyin
// .htaccess
//
// Add this to the directory where your write.php will be stored
// This is an easy way to do an HTTP request to the script with the data
RewriteEngine On
# Change the following to the base directory of this file
RewriteBase /clickstats/
# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Rewrite all other URLs to write.php
RewriteRule . /clickstats/write.php [L]
click.js adında dosya oluşturun ve aşağıdaki kodları yapıştırın
// clicks.js
//
// Load this script on the page where you want to collect stats
// Assign unique ids to all links on the page using a data element
// Set a click handler to fire every time a link is clicked
// It gathers the unique id of the clicked link and builds a URL to call
var anchors = document.getElementsByTagName("a");
for (var i = 0; i < anchors.length; i++) {
anchors[i].setAttribute("data-click", i);
anchors[i].onclick = function() {
confirm(i);
var hacky = document.createElement('iframe');
hacky.setAttribute('id', 'hacky-hack');
hacky.setAttribute('src', 'http://URL/clickstats/' + i);
hacky.setAttribute('style', 'visibility:hidden;');
document.body.appendChild(hacky);
};
}
wirte.php oluşturup aşağıdaki kodu yapıştırın
// write.php
//
// This is the file that write to a database, or text file, or whatever.
header("Access-Control-Allow-Origin: *"); // Let's just be safe.
$navString = $_SERVER['REQUEST_URI']; // Returns "/clickstats/1/" or whatever. You want the "1"
$parts = explode('/', $navString); // Break into an array
// Change the number to reflect the piece of the array you want. You can scale this up to more fields.
$clicked = $parts[2]; // This is the position of the click
// Do something awesome with that number, like append it to a text file or write it to a database
?>
2 kişi bu mesajı beğendi.