Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Woopra for vBulletin Details »»
Woopra for vBulletin
Version: 1.0.4, by Shane Shane is offline
Developer Last Online: Jan 2011 Show Printable Version Email this Page

Category: Statistics Modifications - Version: 3.7.x Rating:
Released: 04-01-2008 Last Update: 06-03-2008 Installs: 260
Uses Plugins Auto-Templates
Is in Beta Stage  
No support by the author.

Woopra (http://www.woopra.com/) is a hosted live tracking site that allows you to examine the live stats of your website. This plugin will allow your site to be tracked by Woopra. You still need an account on Woopra and your site to be approved for this to work!

Install & Config
Install the product_woopra_stats.xml in your product page. Upload the bitfield XML to your XML directory under includes. Enter your Woopra Site ID number under your forum settings options. This is needed for the template to process. There are other options there also!

Please click install if you install this! Support faster to those with "Install" clicked, but not needed. Thanks!

Please Note!
Woopra does not support this plugin. I do. So if you have any problems with the plugin, please contact me. If it has to deal with the software that they provide, I can not deal with it. Registration problems on Woopra I can not deal with either.

Woopra Official Plugin Directory URL
Woopra on their site has an official plugin directory on their website, however it links back to this post.

Screenshots
They are limited, but you can get an idea by visiting their website to see how it works and the type of data that you get. I updated this post too include screens from my view. This is view the Java APP that you can connect with. It's very fun! (Note: I run 1900x1200 so they got automatically re-sized here... so.... http://www.frakmedia.net/shane/woopra/ is where I placed some images)

Known Problems
  • User Title/User Group - This should be showing the "group name", not the title. I will have this fixed in 1.0.5.
Version History
  • 1.0.0 - Initial Release
  • 1.0.1 - Talking with the Woopra dev team, non-logged in users will show up as "Visitor X" and so on.
  • 1.0.2 - New data can be passed: "Post Count", "User Title", "Join Date" Also the fields that are passed names are based off your default forum language. This means "Email" will still be "Email" (inside the Woopra Java App) if you have the forum default to Enligsh, no matter if your user has set theirs to another language. Moved Javascript code to load after forum display/thread listing instead of on top. Can be used as far back as 3.6.8 but designed on 3.7.x.
  • 1.0.3 - $spacer_open is in more places than I thought making it count to many times. I moved it back to the header of "$_phpinclude_output".
  • 1.0.4 - Avatar will not show up as a black box if the user in question does not have one in set. (A fix to deal with new app version.) Email will be standard clickable link in the application soon. Changed array name from woopra_array to woopra_visitor. Phrases for the items instead of using others.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #212  
Old 11-29-2008, 10:41 PM
kpierce kpierce is offline
 
Join Date: Jun 2008
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are all your forum files on the root directory or do you have them in a sub directory on your server? I'm not an expert but I think he's saying that he has his forum files in a folder titled "forum" rather than all the files sitting right in the root. However, I have all my files in the root and having just "/image.php?" doesn't work, not sure why.
Reply With Quote
  #213  
Old 11-29-2008, 11:26 PM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

kpierce... I think its because we dont store avatars in the database... my avatars are called up by their exact file path, not through image.php.

Anyway... is there any way to get this program to referr the actually QUERED URL of a page? Lots of pages are listed as /albums.php instead of something like: /album.php?albumid=12&pictureid=187

Without the query string, I really dont get any of the information I need.
Reply With Quote
  #214  
Old 11-30-2008, 12:12 AM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Jaxel View Post
kpierce... I think its because we dont store avatars in the database... my avatars are called up by their exact file path, not through image.php.

Anyway... is there any way to get this program to referr the actually QUERED URL of a page? Lots of pages are listed as /albums.php instead of something like: /album.php?albumid=12&pictureid=187

Without the query string, I really dont get any of the information I need.
they all show the actual path for me, but it may be because vbseo is installed
Reply With Quote
  #215  
Old 11-30-2008, 12:13 AM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I use TFSEO... so only the forums are actual links. Everything else is queried. VBSEO is too expensive.
Reply With Quote
  #216  
Old 11-30-2008, 11:00 AM
Jaxel Jaxel is offline
 
Join Date: Sep 2005
Posts: 1,160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Okay... I use file structure avatars (not database), so I've diagnosed two problems with this mod... The following code is broken in TWO places:

PHP Code:
if (has_avatar($vbulletin->userinfo['userid'])) 
{
    
$woopra_avatar_url $woopra_homeurl "/image.php?u=" $vbulletin->userinfo['userid'];

Firstly, the has_avatar function doesn't work. The if statement ALWAYS fails 100%. If you get rid of the if statement, then image.php fails because the images are not being read from the database, they should be read from the file structure. So I replaced the above lines with the following, and it worked great:

PHP Code:
require_once(DIR '/includes/functions_user.php');
$woopra_avatar_url fetch_avatar_url($vbulletin->userinfo['userid']);
$woopra_avatar_url $woopra_homeurl '/' $woopra_avatar_url[0]; 
Reply With Quote
  #217  
Old 12-06-2008, 09:14 PM
EagleNick's Avatar
EagleNick EagleNick is offline
 
Join Date: Dec 2007
Location: Florida
Posts: 517
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm a bit lost. In the options for this modification, it asks for the Website ID. So I go to my Woopra account, and it does not give me the website ID. So I asked at their support forums, and they say the website IDs were dropped in favor of APIs. Here's the thread:
http://www.woopra.com/forums/topic/f...-my-website-id

So now how do I setup my vB installation to work with Woopra? Do I just place my API key in the "Website ID" box instead?
Reply With Quote
  #218  
Old 12-08-2008, 12:46 AM
kpierce kpierce is offline
 
Join Date: Jun 2008
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nope, the API key isn't needed either. Just make up a number for website ID in the options menu. Be sure to paste the required script in the footer template too.
Reply With Quote
  #219  
Old 12-08-2008, 10:39 PM
EagleNick's Avatar
EagleNick EagleNick is offline
 
Join Date: Dec 2007
Location: Florida
Posts: 517
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by kpierce View Post
Nope, the API key isn't needed either. Just make up a number for website ID in the options menu. Be sure to paste the required script in the footer template too.
Will filling in a random number even do anything? I don't understand how this mod will work if it doesn't know how to "connect" with my Woopra account...?
Reply With Quote
  #220  
Old 12-09-2008, 04:26 AM
kpierce kpierce is offline
 
Join Date: Jun 2008
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Filling in the random number needs to be done for the usernames to show up in Woopra. I can't tell ya how it all works, just what I did to make it work.
Reply With Quote
  #221  
Old 12-13-2008, 04:31 AM
majorxp majorxp is offline
 
Join Date: Aug 2005
Posts: 120
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I edited the code and it works on 3.6.0 as well...

Great mod!
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:55 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07865 seconds
  • Memory Usage 2,322KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete