Search found 21 matches

by dal_oscar
Thu Apr 13, 2006 8:08 am
Forum: UI Design/Usability
Topic: Opinins on Website
Replies: 5
Views: 6150

hmm...not looking good huh. well, thanks to both of you!
by dal_oscar
Thu Apr 13, 2006 7:12 am
Forum: UI Design/Usability
Topic: Opinins on Website
Replies: 5
Views: 6150

Ya...thats what I thought too. The reason why I said I wasnt worried about validation was becasue I already knew it had so many errors - and was looking for other problems as well (besides poor code). The developer before me has encrypted almost all his files. I am still trying to work though the we...
by dal_oscar
Thu Apr 13, 2006 6:08 am
Forum: UI Design/Usability
Topic: Opinins on Website
Replies: 5
Views: 6150

Opinins on Website

Hi, I took over this site from someon else, and originally it was a dark blue on a beige background, and it is a very rigid structure. I have tried to improve the interface, but am now so used to seeing it that have completely forgotten what I disliked about it initially. http://www.senscot.net I am...
by dal_oscar
Wed Apr 12, 2006 9:16 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

Apologies Feyd (Thread locked. This is the exact same "problem" in your last thread. Continue to use it.)

I had created the other thread accidently.
by dal_oscar
Wed Apr 12, 2006 9:14 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

No, I am simulating a crawler, by using this
http://www.hashemian.com/tools/browser-simulator.htm
by dal_oscar
Wed Apr 12, 2006 9:10 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

OK...a big thanks to everyone trying to help me. Though I am no where near a solution, and have no idea what to do - thanks a lot for your patience while dealing with my newbie queries!!! R4000, your function doesnt seem to help. It says not crawler all the time. Feyd, double thanks for bearing with...
by dal_oscar
Wed Apr 12, 2006 9:03 am
Forum: PHP - Code
Topic: newbie stats-spider
Replies: 6
Views: 1063

no....what's the difference?
thanks.
by dal_oscar
Wed Apr 12, 2006 8:27 am
Forum: PHP - Code
Topic: newbie stats-spider
Replies: 6
Views: 1063

currently it is

$ua->crawler

but which one should it be? is that all to it?
by dal_oscar
Wed Apr 12, 2006 6:55 am
Forum: PHP - Code
Topic: newbie stats-spider
Replies: 6
Views: 1063

newbie stats-spider

Hi, I am using 'crawler' in get_browser to check if a visitor is a spider/crawler $isspider=0; $ua = get_browser(null,TRUE); if ($ua->crawler == TRUE) $isspider=1; And then in my code, I check the value of $isspider to dump the data accordingly. The problem is, that $ua[crawler] always seems to be n...
by dal_oscar
Wed Apr 12, 2006 4:03 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

Changed that......now it looks like

Code: Select all

$isspider=0;
$ua = get_browser(null,TRUE); 
if ($ua->crawler == TRUE) 
       $isspider=1;
It still registers $ua->crawler as null, - whether it is a crawler or not.
by dal_oscar
Tue Apr 11, 2006 8:41 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

I changed that to $ua->crawler (if thats what you meant), and it now doesnt return null but 0 everytime now (whether or not it is a crawler) please help.
by dal_oscar
Tue Apr 11, 2006 7:04 am
Forum: PHP - Code
Topic: stats spiders 2
Replies: 10
Views: 1591

stats spiders 2

Weirdan | Please use and tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color] Hi, I am using 'crawler' in get_b...
by dal_oscar
Fri Apr 07, 2006 9:08 am
Forum: PHP - Code
Topic: stats-spiders
Replies: 16
Views: 3340

Feud - you are brilliant. I can beilive I hadnt seen it!!! Thanks so much for helping me do this!!!!
by dal_oscar
Fri Apr 07, 2006 8:55 am
Forum: PHP - Code
Topic: stats-spiders
Replies: 16
Views: 3340

sorry, i gues si didnt frame my question correctly.
what i am saying is that, once I have all the info from get_browser, how do i decide whether or not that is a spider?
by dal_oscar
Fri Apr 07, 2006 8:35 am
Forum: PHP - Code
Topic: stats-spiders
Replies: 16
Views: 3340

OK. so when someone visits my website, i go via get_browser and then store them in 2 different tables - normal people vs spiders?

could u give me an example of how to use get_browser for such a thing?