Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons

Reply
 
Thread Tools
World of Warcraft [item]-bbcode. Details »»
World of Warcraft [item]-bbcode.
Version: 1.00, by Sparkz Sparkz is offline
Developer Last Online: Oct 2013 Show Printable Version Email this Page

Version: 3.5.1 Rating:
Released: 11-21-2005 Last Update: Never Installs: 113
DB Changes Uses Plugins Template Edits
Additional Files Is in Beta Stage  
No support by the author.

This is in reply to this thread.

Download the product-itemstats.xml, vb_itemstats.php and 'itemstats_1.2.zip'.
Unzip itemstats_1.2.zip to your forum-root (ie http://your.site.tld/forum/itemstats), and follow the basic setup instructions in doc/config.txt.

Copy vb_itemstats.php into your itemstats-folder.

Paste the following two lines into the bottom of your headinclude-template

HTML Code:
<link rel="stylesheet" href="itemstats/templates/itemstats.css" type="text/css">
<script type="text/javascript" src="itemstats/overlib/overlib.js"><!-- overLIB (c) Erik Bosrup --></script>
Lastly, upload the product-itemstats.xml into your product manager, and you should be all set.

Link items with [item]Item name[/item].
The first time the item is loaded might take some time, as it fetches info from allakhazam.com. From then on it will be cached in the database, and should load instantly.

Supporters / CoAuthors

    Show Your Support

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

    Comments
      #52  
    Old 01-24-2006, 03:40 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    I think this needs some better instructions on how to install it and with the DB creation and everything like that .. coz I am clueless ..lol
    Reply With Quote
      #53  
    Old 01-24-2006, 08:49 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Anyone able to help me with this? There are to many diff files and things its just confusing, and I'd like to somehow install this.
    Reply With Quote
      #54  
    Old 01-25-2006, 04:21 AM
    twsphere twsphere is offline
     
    Join Date: Jan 2006
    Posts: 1
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Quote:
    Originally Posted by exilera
    It all seems to be working OK. I had an issue, but uploading the modified files and emptying the database table as mentioned in this thread fixed that problem.

    However, the icons won't display. I get a red X inside a box where the Icon is supposed to show. Would anyone happen to know why that might be?

    Thanks!
    well i got in the same promble ..someones can teach us how to fix it ?
    Reply With Quote
      #55  
    Old 01-25-2006, 07:59 PM
    Boofer Boofer is offline
     
    Join Date: Jan 2006
    Posts: 3
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    ok this is working sortof. I can see the mouseovers and they are properly displayed. The problem is if you edit the post for any reason the links become hyperlinks to Allakhazam. Apparently this is because of parsing? I have no idea. Is there a fix?
    Reply With Quote
      #56  
    Old 01-26-2006, 09:24 PM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    How do u create the DB Item cache table?? And how come there is no VB instructions just phpbb? Im lost would love to use this
    Reply With Quote
      #57  
    Old 01-27-2006, 04:34 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Ok I got it all working cept for the No images .. like there are no icons on the mouseover and I get a </ span > at the end of them all if I make a new line.

    any fixes would be great
    Reply With Quote
      #58  
    Old 01-30-2006, 03:39 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    any fixes for this yet? or ideas? would be much appreciated.
    Reply With Quote
      #59  
    Old 01-31-2006, 12:26 AM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Quote:
    Originally Posted by Grant
    Ok I got it all working cept for the No images .. like there are no icons on the mouseover and I get a </ span > at the end of them all if I make a new line.

    any fixes would be great
    any help on how u got the DB to work?? I installed it but it wont load anything i link??
    Reply With Quote
      #60  
    Old 01-31-2006, 06:23 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    You just need to create the table.. if you have never run EQDKP before then it might be a little hard knowing what that table is, but in phpMyAdmin, do an SQL dump using the following code:

    Code:
    CREATE TABLE `item_cache` (
      `item_name` varchar(100) NOT NULL default '',
      `item_link` varchar(100) default NULL,
      `item_color` varchar(20) NOT NULL default '',
      `item_icon` varchar(50) NOT NULL default '',
      `item_html` text NOT NULL,
      UNIQUE KEY `item_name` (`item_name`),
      FULLTEXT KEY `item_html` (`item_html`)
    ) TYPE=MyISAM;
    That should get it working anyway ..
    Reply With Quote
      #61  
    Old 01-31-2006, 07:53 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    With the whole icon not showing problem, I noticed that the link in the config file to the icons is http://wow.allakhazam.com/images/icons but then I checked the source of a post that has the itemlink in it and the source says http://wow.allakhazam.com/image/icons .. which is why I think it's not working.

    I've tried finding the file that seems to change the link but I can't find it. If anyone knows where It may be found, would be much appreciated.. I've tried uploading the icons locally to my server and then changing the link in the config, but it looks like the alla link is hard coded, and its wrong.
    Reply With Quote
    Reply

    Thread Tools

    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 12:09 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.06333 seconds
    • Memory Usage 2,305KB
    • Queries Executed 26 (?)
    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
    • (1)bbcode_code
    • (1)bbcode_html
    • (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