Thread: Add-On Releases - vBExperience
View Single Post
  #1330  
Old 07-05-2008, 11:20 PM
Dr. Bantham's Avatar
Dr. Bantham Dr. Bantham is offline
 
Join Date: Feb 2007
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I am attempting to get vBExperience to integrate with QuoteIt! and count quote submissions, but I am having problems revising the same Custom Data Provider script.

This is my first attempt:
PHP Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="xpquotes" active="1">
    <title>vBExperience QuoteIt! Integration</title>
    <description>vBExperience QuoteIt! Submission Tracking</description>
    <version>1.0.0</version>
    <dependencies>
        <dependency dependencytype="product" parentproductid="vbexperience3" minversion="3.7.14" maxversion="" />
    </dependencies>
    <codes>
            <code version="1.0.0">
                <installcode><![CDATA[            
if (!field_exists('xperience_stats', 'points_misc_quotes')) $vbulletin->db->query_write("ALTER TABLE " . TABLE_PREFIX . "xperience_stats ADD points_misc_quotes BIGINT DEFAULT '0'");

function field_exists($table, $field)
{
    global $vbulletin;
    return ($vbulletin->db->num_rows($vbulletin->db->query_read("SHOW COLUMNS FROM `" . TABLE_PREFIX .$table."` LIKE '".$field."'"))> 0);
}
                ]]></installcode>
                <uninstallcode><![CDATA[
                ]]></uninstallcode> 
            </code>
    </codes>
    <templates>
    <template name="xpquotes_profile" templatetype="template" date="1205333644" username="Phalynx" version="1.0.0"><![CDATA[
        <if condition="$xperience_points_misc_quotes<>0"><li><span class="shade">$vbphrase[xperience_points_misc_quotes]:</span> $xperience_points_misc_quotes</li></if>
]]></template>    
    </templates>
    <plugins>
        <plugin active="1" executionorder="5">
            <title>vBExperience QuoteIt! Integration</title>
            <hookname>xperience_calcdata</hookname>
            <phpcode><![CDATA[
if ($vbulletin->options['xperience_points_quotes'] > 0)
{
    if ($DoDebug==1) echo "<br/>Custom Data Provider - Quotes";
    
    $attq = $vbulletin->db->query_read("SELECT 
        SUM(counter) as sum_quotes
        FROM " . TABLE_PREFIX . "quotes
        WHERE userid=".$user['userid']);
        
    if ($vbulletin->db->num_rows($attq) > 0)
    {
        $att = $vbulletin->db->fetch_array($attq);
    
        $xperience['count_misc_quotes'] = $att['sum_quotes'] * $vbulletin->options['xperience_points_quotes'];
        $xperience['count_misc'] += $xperience['count_misc_quotes'];
        $additionalsql .= "points_misc_quotes=".$xperience['count_misc_quotes'].",";
    }
}
]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title><![CDATA[vBExperience QuoteIt! Integration]]]></title>
            <hookname>xperience_memberprofile</hookname>
            <phpcode><![CDATA[
global $vbphrase;
$xperience_points_misc_quotes = vb_number_format($stat_q['points_misc_quotes']);
eval('$this->block_data[xperience_points_misc_tpl] .= " ' . fetch_template('xpquotes_profile') . '";');
            ]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5"> 
        <title>vBExperience (cache_templates)</title> 
        <hookname>cache_templates</hookname> 
        <phpcode><![CDATA[ 
if ($vbulletin->options['xperience_enabled']) { 
  $globaltemplates = array_merge($globaltemplates, array( 
      'xpquotes_profile' 
  )); 
}
]]></phpcode> 
        </plugin>
    </plugins>
    <phrases>
        <phrasetype name="GLOBAL" fieldname="global">
            <phrase name="xperience_points_misc_quotes" date="0" username="Phalynx" version="1.0.0"><![CDATA[Custom Data Provider]]></phrase>
        </phrasetype>
        <phrasetype name="vBulletin Settings" fieldname="vbsettings">
            <phrase name="setting_xperience_points_quotes_desc" date="1205333644" username="Phalynx" version="1.0.0"><![CDATA[How many points should be given for quotes?]]></phrase>
            <phrase name="setting_xperience_points_quotes_title" date="1205333644" username="Phalynx" version="1.0.0"><![CDATA[Points for Custom Data Provider Sample]]></phrase>
        </phrasetype>
    </phrases>
    <options>
        <settinggroup name="xperience_points" displayorder="7502">
            <setting varname="xperience_points_quotes" displayorder="300">
                <defaultvalue>2</defaultvalue>
            </setting>
        </settinggroup>
    </options>
</product>
The script seemed to import, but the following error resulted when Updating Points:
Code:
Database error in vBulletin 3.7.2:

Invalid SQL:
SELECT 
		SUM(counter) as sum_quotes
		FROM quotes
		WHERE userid=1;

MySQL Error   : Unknown column 'counter' in 'field list'
Error Number  : 1054
Script        : xxxxxxxxxxxxxx/admincp/misc.php?do=xperience_recount_xp
Referrer      : xxxxxxxxxxxxxxt/admincp/misc.php?do=chooser
The new field does not appear in any ACP options or templates either.

The way I see it, I have two options of referencing quote totals. The first is by totaling the counts by running through and counting totals for each "userid" within the "quotes" table. The second is by directly referencing the "quotecount" field within the "user" table, which I would think would be easier. I would appreciate anyone having a quick look at the code and offering suggestions.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01114 seconds
  • Memory Usage 1,804KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete