![]() |
Quote:
|
Any way to how the total unique hits counting the members AND visitors?
Also, to total hits would be nice as well :D Please |
updated... thanks!
works great as always :) |
Updated and still working smooth. Thanks.
Phil. |
Quote:
|
Update your spiders.xml from here http://www.vbulletin.com/forum/showthread.php?t=76662
|
Getting back to my difficulty uninstalling this product a few pages back, I though I had now fully removed it as I intended installing an earlier verson then working up.
But in ACP -> vBulletin Options it shows a gap in the list where this product was. This suggests it is not totally removed. Any ideas please? Thanks Bob |
Wondering if Yahoo really really likes me
Visitors (117), Yahoo! Slurp Spiders (418), MSNBot Spiders (1), Google Spiders (1) |
Visitatori (673), Yahoo! Slurp Spiders (939), MSNBot Spiders (11), AskJeeves Spiders (1), Google Spiders (1) ;)
|
Yahoo likes everyone, they flood you with spiders - take this example from one of the sites I administer.
Visitors (4704), Yahoo! Slurp Spiders (1127), MSNBot Spiders (13), Google Spiders (22), AskJeeves Spiders (1), Google AdSense Spiders (1) |
Quote:
|
Is there a 3.54 version of this mod?
|
Quote:
Most of my 3.5 stuff is no longer fully supported, and anything new is only for the current vb version. All my 3.5 stuff will be out of support by the summer. I simply don't have the time/resources to maintain old versions. |
I am also having probs with the hack only showing visitors
Pm sent. |
Your spider cache was broken (the unserialize bit was not set in the datastore).
I have fixed that for you locally so your spiders will start to show again. While I can (and will) add a bit of code to the install routine that will fix spider caches broken in this way, I cannot tell you how you managed to do it (which means that whatever happened could happen again). |
could this of happened to others as well?
May have happened when i switched server :) |
G'day paul, sorry to bother you again, but me thinks the cache has broken again???
i am only getting visitors again.. |
Sorry to be a bother here but I don't have time to read through 26 pages of this thread.
Will this mod track guests I.P. addresses and if not, is there a way to make it do so? I had a mod similar to this on a Xoops site a while back and it tracked guest I.P. addresses which was helpful. |
The ip address of all visitors is recorded, but atm it is not displayed anywhere, you would need your own code to query it.
|
Quote:
To fix the broken cache run this sql query ; Code:
update datastore set unserialize = 1 where title = 'wol_spiders' |
This is great! thanks
Installed ;) |
thanks paul, I will enquire over in that thread as to why its breaking the cache all the time..
I'm hoping this can be fixed as I really like that hack.. |
The fix is easy, to make it 3.6 compatible the datastore build needs updating.
Code:
build_datastore('wol_spiders', serialize($spiders)); Code:
build_datastore('wol_spiders', serialize($spiders), 1); |
Paul I know Ive already asked this, but I don't want to waste your time :)
How would I fix so it would display spiders/bots (all is yes in vboptions) Ever since the last upgrade it stopped showing them. Could you suggest anything I could do? -Thanx |
|
ok Paul, I'll update the product to include that. Hopefully this works :D
|
Version 1.14 is only a change to the install code, no need to update.
|
anyway i do the update :)
thx Paul |
It's been awhile since I gave you an update Paul. There was something wrong with my PHP and Apache...so we got everything back up and running fine now. The mod works like a charm with this new 1.14 update...I can finally see how many spiders have been on my site!!!
Thanks Paul! |
great mod@! installed
|
Hi, I have installed this hack but since I am a newbie I have this stupid question on how to access the guests track! On onine.php page nothing has been added.
|
1. Admin CP > Whois Online > Enable Spider Display
2. Admin CP > Guest Tracker > Config Who Can View This Block 3. Check Forum Home 4. Smile! |
edit: wow, i've only had 5 posts on these forums so far? i guess i should post more :p
Quote:
here's the modified code: Code:
<plugin active="1" executionorder="5"> vBulletin : v3.6.4 Guest Tracking : my modified version of 1.14 psiStats 2006 : 1.4.3 Spider Watcher : 1.0.0 Beta 9 Members who have visited the forum : 4.41 i've also attached my modified xml file Edit: removed file. While I appreciate the effort, it would be a support nightmare for different versions called 1.14 to be in circulation, and the problem is a little more complicated than you think - please see my post below (Paul). |
upon further inspection, it appears that the "Total guests" section is not displaying crawlers, it just says "Visitors (xx)", but if i view my current users list, i see about 10 crawlers displayed there.this could be something with the settings, or maybe something left to be fixed, or un-broken (if i broke something along the way) i'll try and take a look at the code again tomorrow, for now though, sleep!
|
Quote:
In vb 3.6 a new column was added to the datastore table, telling vb if the data should be automatically unserialised when loaded = a value of 0 = no, 1 = yes, 2 = detect (it tries to work it out from the contents). The entry for "wol_spiders" should be 1 - and when you install this mod, it will delete the existing entry and rebuild it with the correct value. Now the problem is that the new 'unserialize' value is taken from the build_datastore() function (as an added third parameter) but they have defaulted it to 0 if it's not supplied. Code written for vb3.5 does not supply a third parameter (as it didn't exist) so what happens is some old code somewhere runs, and rebuilds the wol_spiders entry with an unserialze value of 0 (due to the missing parameter) - and because of this, subsequent datastore fetches do not unserialise the data, and everything breaks. (This happens a lot to the 'maxloggedin' datastore entry as well - which is why a lot of people who have upgraded to 3.6 have problems with their WOL data resetting to 1 and 1970). I posted/requested a change to fix this here, but it got zero response. I hope you understood all that - I think the solution for me will be to add a bit of code to detect if the data was unserialised correctly, and if not, do it myself and rebuild the datastore entry correctly. |
ah, that makes sense. around the time of my last vB update my "most users ever" date was reset to unix start time.
i'll try to grep through my installed plugins tonight to try and find out the culprit that is resetting the datastore |
this won't solve the big picture problem, but adding a quick check to unserialize if needed may be a good work around specific to this plugin to make it work universally. i just added a ternary check to my previously modified code:
Code:
if (preg_match('#(' . $vbulletin->wol_spiders['spiderstring'] . ')#si', USER_AGENT, $agent)) |
Version 1.15 - as per the above posts, many of the spider issues are due to the spider cache being broken by other modifications - this version will check the loaded data and try to fix the cache if it has been broken in this manner. If it cannot then spider detection will not take place, meaning no errors should occur.
If you are not having any spider detection issues then there is no need to update to this version, there are no other changes. |
/me updates much thanx
|
Like always Paul, your the man! **installed**
|
All times are GMT. The time now is 06:29 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|