vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   How do I bring information from a separate database (https://vborg.vbsupport.ru/showthread.php?t=199040)

Dismounted 12-22-2008 04:34 AM

If it works, it works! :p I do not have a copy of vBulletin in front of me right now, so I am not sure if it is the best way. However, there is no need for a product as you have edited the files directly - products deal with plugins, phrases and templates.

kwblue 12-22-2008 11:56 AM

Quote:

Originally Posted by Dismounted (Post 1690848)
If it works, it works! :p I do not have a copy of vBulletin in front of me right now, so I am not sure if it is the best way. However, there is no need for a product as you have edited the files directly - products deal with plugins, phrases and templates.

ok, that makes sense. It does work, but I noticed yesterday that the forum info seems to have disappeared.. .so always says 'Last Post' = Never, 'Threads' = 0, 'Posts' = 0. :( Not sure why that would have happened.

Dismounted 12-23-2008 02:16 AM

Something must have gone wrong (corrupted cache, maybe). Remove your custom code, and rebuild the cache (Admin CP > Maintenance > Update Counters).

kwblue 12-23-2008 11:21 AM

I tried to update the counters without removing my code and it didn't seem to help. The query (when I copy it to a query analyzer) runs fine and brings back all the right information as far as lastpostid and all other forum db info.

When I disable my 'plugin code' it works fine... so something has to be happening with my query addition. I am just not sure why yet.

Dismounted 12-24-2008 08:33 AM

Post your snippet of code so I can take a look.

kwblue 12-24-2008 02:42 PM

This is the functions.php file code that I added. Quite simple, really, and I highlighted the additions so you can see them quickly:

Code:

                $hook_query_fields = $hook_query_joins = $hook_query_where = '';
               
               
                ($hook = vBulletinHook::fetch_hook('cache_ordered_forums')) ? eval($hook) : false;

                // get subscribed forums too
                if ($userid)
                {
                        $query = "
                                SELECT subscribeforumid, $counter_select $hook_query_fields
                                        ". iif($vbulletin->options['threadmarking'], ', forumread.readtime AS forumread') . "
                                FROM " . TABLE_PREFIX . "forum AS forum
                                LEFT JOIN " . TABLE_PREFIX . "subscribeforum AS subscribeforum ON (subscribeforum.forumid = forum.forumid AND subscribeforum.userid = $userid)
                                " . iif($vbulletin->options['threadmarking'], " LEFT JOIN " . TABLE_PREFIX . "forumread AS forumread ON (forumread.forumid = forum.forumid AND forumread.userid = $userid)") . "
                                $tachyjoin
                                $hook_query_joins
                        ";
                }
                // just get counters
                else
                {
                        $query = "
                                SELECT $counter_select $hook_query_fields
                                        ". iif($vbulletin->options['threadmarking'] AND $vbulletin->userinfo['userid'], ', forumread.readtime AS forumread') . "
                                FROM " . TABLE_PREFIX . "forum AS forum
                                " . iif($vbulletin->options['threadmarking'] AND $vbulletin->userinfo['userid'], " LEFT JOIN " . TABLE_PREFIX . "forumread AS forumread ON (forumread.forumid = forum.forumid AND forumread.userid = " .  $vbulletin->userinfo['userid'] . ")") . "
                                $tachyjoin
                                $hook_query_joins
                        ";
                }
        }


It's that simple in the functions file. My plugin is pretty simple too:

Code:

$hook_query_fields = ",`ForumDetails`.`Details_UID`,
`ForumDetails`.`Clean_Name`,
`ForumDetails`.`forumid`,
`ForumDetails`.`Information1`,
`ForumDetails`.`Information2`,
`ForumDetails`.`Information3`";

$hook_query_joins = "LEFT JOIN " . TABLE_PREFIX . "ForumDetails ON (ForumDetails.forumid = forum.forumid)";

That's pretty much it. The plugin is tied to: cache_ordered_forums and does allow me to show the 'ForumDetails'.

However - all the stats seem to disappear. They are there and when the query is joined I can see all the same information as I do without the plugin. I ran both queries in an analyzer and the same data is returned in both queries :(

kwblue 12-26-2008 12:33 PM

I figured it out. It was a query issue. I had 2 forumid's in there and the forumcache script got confused.

Thanks for all your help.

kwblue 01-21-2009 01:22 PM

I thought since this thread is mine... and the next step is pretty similar... I would just continue the post here :)

Anyway - Now that my homepage is up to date with the proper information.. I want each FORUM to have specific information as well.

I can't, for the life of me, find where to add these same query joins there. Any pointers?

kwblue 01-27-2009 10:29 PM

bumpity bump bump :)


All times are GMT. The time now is 03:58 AM.

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.00986 seconds
  • Memory Usage 1,740KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)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