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
      #62  
    Old 01-31-2006, 08:40 PM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Still get a white page when i post with that BBCODE??? I see a readme install for phpbb do i have to Edit VB files to make it to work as well??
    Reply With Quote
      #63  
    Old 02-01-2006, 10:16 PM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    well, I guess this mod support is dead ..lol
    Reply With Quote
      #64  
    Old 02-01-2006, 11:10 PM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    damn i really want to use this but liek i said i get a white page im confused if there are files to edit cuz it says follow the Readmes in the DOCS file i tryed to find the code in phpbb but isnt it suppose to work with VBB?? I really want to use this if any of the previous installers could help on how it is installed.
    Reply With Quote
      #65  
    Old 02-01-2006, 11:26 PM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Well I'll tell you what I did step by step, maybe it can help you get it working to some degree.

    Step 1) Download the files needed (A very good start)
    Step 2) Unzip the contents of the itemstats 1.2.zip into your forum ROOT directory (ie http://your.site.tld/forum/itemstats).
    Step 3) Copy the vb_itemstats.php into your newly uploaded itemstats folder.
    Step 4) 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>
    Step 5) Go to your admin Control Panel and upload the product itemstats.xml into your Product Manager.

    Now before it works you need to obviously set up the config file to point to your database where the cache items and things can be stored. So your config.php should look like this (obviously with your own info):
    Code:
    <?php
    
    // The location and extension type for the Icon store.
    define('ICON_STORE_LOCATION', 'http://wow.allakhazam.com/images/icons/');
    define('ICON_EXTENSION', '.png');
    
    // Database config
    define('dbhost', 'localhost');
    define('dbname', 'itemdb');
    define('dbuser', 'user');
    define('dbpass', 'pass');
    define('item_cache_table', 'item_cache');
    
    ?>
    Then you need to make sure the table actualy exists in your DB and if not, you can run that SQL to create it:

    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;
    I'm still trying to work out why the icons are not showing so when I do, I'll be sure to post it here.. hope this helps you get it working.
    Reply With Quote
      #66  
    Old 02-02-2006, 12:23 AM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    thanks grants im sure i didnt that but ill try again and see. Just in his install directions he said follow the DOC files for install so there is no files to be edited???? do u have to CHMOD any folders or anything cuz when i do [item]Item name[/item]. then the screen goes white now if u click on the post i made nothin apears just white.
    Reply With Quote
      #67  
    Old 02-02-2006, 12:48 AM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Im such a idiot lol i got it to work. had my pass and user flipped around. But ya wonder if there is a way to download all the images and place them on ur own server. Or if there is Pic packs out
    Reply With Quote
      #68  
    Old 02-02-2006, 01:03 AM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Well like I said before, from what I can see, the wrong link to the icons has been hard coded into it somwhere and I cant find it yet.
    Reply With Quote
      #69  
    Old 02-02-2006, 09:49 AM
    mbulmer mbulmer is offline
     
    Join Date: Aug 2005
    Posts: 6
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    This worked for me:

    Go to your replacement variable manager.
    Add a new variable replacement, and in the "Search for text" field, put:
    Code:
    http://wow.allakhazam.com/templates/wow
    In the "Replace with text" field, put:
    Code:
    http://wow.allakhazam.com
    Reply With Quote
      #70  
    Old 02-02-2006, 01:33 PM
    Grant Grant is offline
     
    Join Date: Jan 2006
    Posts: 14
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    Quote:
    Originally Posted by mbulmer
    This worked for me:

    Go to your replacement variable manager.
    Add a new variable replacement, and in the "Search for text" field, put:
    Code:
    http://wow.allakhazam.com/templates/wow
    In the "Replace with text" field, put:
    Code:
    http://wow.allakhazam.com
    what fix is that for?
    Reply With Quote
      #71  
    Old 02-02-2006, 08:46 PM
    tweak's Avatar
    tweak tweak is offline
     
    Join Date: Oct 2001
    Location: Canada
    Posts: 113
    Благодарил(а): 0 раз(а)
    Поблагодарили: 0 раз(а) в 0 сообщениях
    Default

    I got all the images and saved them to my own server works like a charm if u care to download the image pack i uploaded it to here. You can rip all images from the DVD or CD as well

    http://files.filefront.com/wowimages.../fileinfo.html
    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 11:33 AM.


    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.05187 seconds
    • Memory Usage 2,309KB
    • 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
    • (6)bbcode_code
    • (2)bbcode_html
    • (1)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