Documentation index
- ReadMe
- Things To Know
-
- Thumbs CMS
- Admin Area
- Traffic Rules
- New Style Rotation
- Custom Galleries
- Tube Sites
- Old Style Rotation
-
Contact me and explain problem, but first of all make sure :
Thank you.
Check incoming hits
Edit common.php and add the following code
$f = fopen('path_to/log.txt', a); fputs($f, date('H:i') . " {$_SERVER["HTTP_REFERER"]} \n"); fclose($f);
create file log.txt and chmod 666 it
As you can see the script is really easy, there's nowhere to make an error
Compare numbers from the log file with the script
Check clicks
if ($_COOKIE['from'] == 'trader.com') { $f = fopen('path_to_/log.txt', a); fputs($f, date('H:i') . " {$_SERVER["REMOTE_ADDR"]} \n"); fclose($f); }
where trader.com - traders you want to check
HTTP protocol (this is how browser communicates with remote server) consists of 2 parts: headers and body. Body is what you actually see in your browser, while headers hold some system information.
Script has special debug mode to see what it does.
Usually those headers are self explained , I just have to notice that something link
Location: http://site.com/
is a redirect.
Script requires free PHP optimizer SourceGuardian. Installation: /scj/ixed/howto-install.php Website: sourceguardian.com