vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Error message - any ideas? (https://vborg.vbsupport.ru/showthread.php?t=315195)

Morrus 11-03-2014 10:05 AM

Thanks, guys! That was really useful. I think that has helped me narrow it down to two possible culprits.

The bad news is that both were mods written by people in the paid work section here at vBulletin.org, and almost without exception, 100% of people hired there flake out and disappear. Which leaves me in something of a pickle...

What would you advise I do next? Try to hire someone to look at those two mods and see if they can figure out the issue?

Edit - confirmed; deactivating one of the two culprits fixes the issue, so at least is has been identified! The plugin itself is pretty short. Is it likely that the error is there in that short plugin, or will someone have to examine the entire mod?

ozzy47 11-03-2014 10:09 AM

What was the code in the offending plugin?

Morrus 11-03-2014 10:12 AM

Quote:

Originally Posted by ozzy47 (Post 2521083)
What was the code in the offending plugin?

Here we go. Hopefully this will display OK. It's part of aa mod which counts the number of times an article is viewed in preview mode, since I always use full article display in sections.

Code:

if (self::VIEW_PREVIEW == $viewtype) {
    if ($increment_count) {
        if (PreviewViewCount::$content->isSection() && PreviewViewCount::display()) {
            ExtendedDatabases_Query::write(array(
                'query' => 'UPDATE `%1$scms_nodeinfo`
                    SET `preview_view_list` = `preview_view_list` + 1
                        WHERE `nodeid` = %2$d',
                'params' => $this->content->getNodeId()
            ));

            if (!defined('PREVIEW_COUNT_FIRST')) {
                ExtendedDatabases_Query::write(array(
                    'query' => 'UPDATE `%1$scms_nodeinfo`
                        SET `preview_view_first` = `preview_view_first` + 1
                            WHERE `nodeid` = %2$d',
                    'params' => $this->content->getNodeId()
                ));

                define('PREVIEW_COUNT_FIRST', true);
            }
        }
    }
}


kh99 11-03-2014 04:04 PM

Unfortunately that doesn't help a lot. It must be that PreviewViewCount::$content is not an object, but we'd have to see more of the code to have any chance of knowing why that is. You might be able to change the third line to something like:

Code:

if (is_object(PreviewViewCount::$content) && PreviewViewCount::$content->isSection() && PreviewViewCount::display()) {

(the part in red is added), and it might make the error message go away, but without understanding more of the code I can't tell you what effect that would have on the preview counting.

Morrus 11-03-2014 05:50 PM

Thank you! That may have worked! I'll keep an eye on it, but at first glance it looks like the preview counts are still incrementing and the category links are now working.


All times are GMT. The time now is 04:44 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.01021 seconds
  • Memory Usage 1,727KB
  • 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
  • (5)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