vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - Spiders Display on Forumhome and Who's Online for vb4 (https://vborg.vbsupport.ru/showthread.php?t=243460)

nirvana43 08-23-2010 10:54 AM

Installed but its not displaying any spiders on my forum. I also downloaded latest spiders xml but it still not displaying anything.
Nice hack by the way :)

Boofo 08-23-2010 11:09 AM

Are you sure they are spiders?

balkanboy 08-25-2010 04:15 AM

1 Attachment(s)
any reason why its showing up like this for me

balkanboy 08-26-2010 01:53 AM

thanks for the update fixed my issue

TheLastSuperman 08-26-2010 04:26 AM

Good idea to not show "Spiders" if none are on!

[high]* TheLastSuperman Re-installs ;)[/high]

MichaelDance 09-22-2010 09:46 PM

wont work for me, im on 4.0.7

Boofo 09-22-2010 09:55 PM

Quote:

Originally Posted by MichaelDance (Post 2101989)
wont work for me, im on 4.0.7

Works fine for me on 4.0.7.

OldSchoolDSL 10-29-2010 02:00 AM

Working flawlessly on 4.0.8

(Thank you)

Taurus1 10-31-2010 03:31 AM

1 Attachment(s)
Works great thank you.

Is it possible to get rid of the comma in front, as seen on attached screenshot please?

Attachment 123260

Boofo 10-31-2010 03:48 AM

Quote:

Originally Posted by Taurus1 (Post 2116259)
Works great thank you.

Is it possible to get rid of the comma in front, as seen on attached screenshot please?

Attachment 123260

There should be no comma there with this mod. Are you sure you are not running the other one?

Taurus1 10-31-2010 07:07 AM

I am using another mod that splits the online users into different groups. But the spiders online only showed up after I installed your mod. So I am not sure if the other mod is causing it.

Boofo 10-31-2010 07:18 AM

It must be the other mod doing it as I have the leading comma (when there are only Spiders online) taken care of in this mod. Try disabling the other mod and see if it shows up then.

Droptop 11-22-2010 01:31 PM

Hello, I am having alignment issues on my forumhome page since upgading to 4.0.8 pl2. There is no more borders and the display is all jumbled together. Any idea what could be wrong?

I also have your site life status installed and used the fix there to correct the alignment problem. Thanks

Boofo 11-22-2010 02:20 PM

If you disable this mod are the issues still there?

Droptop 11-22-2010 02:34 PM

Quote:

Originally Posted by Boofo (Post 2124649)
If you disable this mod are the issues still there?

No, the issue is only with this mod on the forumhome. Everything else is aligned properly

Boofo 11-22-2010 02:48 PM

Since this only adds to a phrase, there shouldn't be any alignment issues with this at all. Are you using the default skin?

Droptop 11-22-2010 03:04 PM

1 Attachment(s)
No, I am using a custom skin. But even on my default skin it is misaligned, this is a screenshot from the default skin.

Brandon Sheley 11-22-2010 03:17 PM

thanks for the mod
/me clicked install

Boofo 11-22-2010 03:17 PM

Quote:

Originally Posted by Droptop (Post 2124675)
No, I am using a custom skin. But even on my default skin it is misaligned, this is a screenshot from the default skin.

It looks like you have another mod messing with the alignment. The visitors mod maybe?

Droptop 11-23-2010 12:45 AM

Quote:

Originally Posted by Boofo (Post 2124683)
It looks like you have another mod messing with the alignment. The visitors mod maybe?

My bad Boofo, its not even your mod that was causing the problem. I thought the visitor's mod was yours. Sorry to have bothered you and thanks for trying to help me.

Boofo 11-23-2010 12:59 AM

Quote:

Originally Posted by Droptop (Post 2124841)
My bad Boofo, its not even your mod that was causing the problem. I thought the visitor's mod was yours. Sorry to have bothered you and thanks for trying to help me.

No problem. I think Paul did an update to the visitor's mod to fix the CSS issues with the forumhome in 4.0.8.

Idawg 11-27-2010 05:56 PM

So this works fine on 4.0.8 with CMS??

beatyourtruck 01-19-2011 02:01 AM

Just installed on 4.0.8 and it is perfect. Great mod...always wondered how many creepy critters were on my site. THANKS!

Deirdre 02-07-2011 08:31 PM

Works with 4.1.1 ♥

SweCastel 02-09-2011 09:41 AM

1 Attachment(s)
Thanks for this mod!
But, how can I remove the displaying of robots on the forumhome page?
I dont want the users to see what type of spiders who are visiting.

I DO want to display: "4 members and 10 guests, with 15 spiders"
But I do NOT want to display "Facebook Spiders (11), Windows Live SOEE Spider, Pingdom.com Bot Spiders (3) " etc...

Thanks
Daniel

iCafe 02-09-2011 10:58 AM

error on 4.1.2 beta

Code:

Warning: trim() expects parameter 1 to be string, array given in [path]/forum.php(653) : eval()'d code on line 28

your24hourstore 02-09-2011 11:58 AM

Quote:

Originally Posted by iCafe (Post 2160511)
error on 4.1.2 beta

Code:

Warning: trim() expects parameter 1 to be string, array given in [path]/forum.php(653) : eval()'d code on line 28

lol you really cant expect support for beta versions

Boofo 02-09-2011 03:07 PM

As I do not have 4.1.2 beta installed, I can't test anything. Once 4.1.2 final gets released, I will look into it further. If trim is giving that error, I would venture to say that the vb team screwed something up again on the update. In the meantime, you could try replacing this:

Code:

$activeusers = trim($activeusers, ', ');

with this:

Code:

$activeusers = substr($activeusers, 2);

to see if that fixes it for now.

iCafe 02-10-2011 05:49 AM

Quote:

Originally Posted by Boofo (Post 2160585)
As I do not have 4.1.2 beta installed, I can't test anything. Once 4.1.2 final gets released, I will look into it further. If trim is giving that error, I would venture to say that the vb team screwed something up again on the update. In the meantime, you could try replacing this:

Code:

$activeusers = trim($activeusers, ', ');

with this:

Code:

$activeusers = substr($activeusers, 2);

to see if that fixes it for now.

it don't fix.

see http://tracker.vbulletin.com/browse/VBIV-10457

katim110 02-16-2011 07:18 PM

installed 4.1.2. there is een prob...
You cant see the nicknames on the online list. when i turn off this script, user names appears again.

Boofo 02-16-2011 07:43 PM

Yes, that is the same problem that iCafe reported. They changed the forumhome_loggedin script in some way. I don't have 4.1.2 installed yet. When I do, I will get a fix for this.

Fungsten 02-16-2011 08:48 PM

Quote:

Originally Posted by Boofo (Post 2163345)
Yes, that is the same problem that iCafe reported. They changed the forumhome_loggedin script in some way. I don't have 4.1.2 installed yet. When I do, I will get a fix for this, unless someone else comes up with on in the meantime.

I got the same issue too. They only display when the addon is turned off.

Boofo 02-16-2011 09:04 PM

Like I said guys, until I upgrade I can't supply a fix. I will try to do that this weekend. What I need to know is what they are using in place of what they have changed. Maybe I can offer some suggestions.

Gemma 02-16-2011 09:15 PM

Does this help you Boofo?

http://tracker.vbulletin.com/browse/VBIV-10457

Boofo 02-16-2011 09:29 PM

Not really. I looked at that when this was first reported. All this mod does is add the spiders to the end of the activusers line. Now that they have changed it, I'm not sure how you would do it the same way. I'm sure there is a way around it, but until I get the new version installed, I can't test anything. Let's show for this weekend on me installing it ans fixing this.

pdtan 02-17-2011 04:26 PM

$activusers become an array in vb4.1.2

andryus 02-17-2011 04:30 PM

i got this error on 4.1.2:

Warning: trim() expects parameter 1 to be string, array given in [path]/forum.php(653) : eval()'d code on line 28

How i can solve it?

OldSchoolDSL 02-19-2011 04:43 PM

Quote:

Originally Posted by andryus (Post 2163629)
i got this error on 4.1.2:

Warning: trim() expects parameter 1 to be string, array given in [path]/forum.php(653) : eval()'d code on line 28

How i can solve it?

Got the same issue on 4.1.1, but only when I upgraded my copy of PHP to 5.3.3 (down graded PHP solved this, to confirm)

It was a nice mod, but I can live without it.

Un-installed :(

sweetguy2004 02-21-2011 05:36 AM

when it will be fixed?? please fix it soon.

KURTZ 02-21-2011 11:58 AM

hi Bob need a fix ... :)

http://www.vbulletin.com/forum/showt...ading-to-4.1.2


All times are GMT. The time now is 12:58 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
  • Page Generation 0.01488 seconds
  • Memory Usage 1,801KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (10)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete