Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 Programming Discussions
  #1  
Old 03-23-2008, 08:14 AM
Kiint Kiint is offline
 
Join Date: Nov 2006
Posts: 191
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Custom Mod breaking Quick Reply but can't figure out WHY?? please help

I have a custom guild roster on my website and as part of this it will display all of a users game characters formatted into their signature all nice and neat like this:

[80 Magician] Vimto (Erudite) - Primary - Guild Leader Magelo Updated : February 17, 2008
[79 Cleric] Halfhigh (Dwarf) - Two Box - Member Magelo Updated : March 18, 2008

It wasn't until recently that I noticed that my quick reply on a thread wasn't working right, you can type in a message, click submit but the page comes up with an error:
The following errors occurred with your submission, but the post is still made but the page doesn't update until you refresh the page.

I magaged to get it working by disabling all custom mods and narrowed it down to the code that generates the signature for the roster module by re-enabling them all one by one until it broke again.

The code that generates the signatures is here:

Code:
 
<?xml version="1.0" encoding="ISO-8859-1"?>
<plugins>
 <plugin active="1" executionorder="1" product="roster">
  <title>Format the text for Auto Sig</title>
  <hookname>showthread_postbit_create</hookname>
  <phpcode><![CDATA[foreach ($rosterchars as $key => $rosterchar) 
{
 if ($rosterchar['charownid']==$post['userid']) {
  eval('$post[\'characters\'] .= "' . fetch_template('roster_post_bit') . '";');
 }
}]]></phpcode>
 </plugin>
 <plugin active="1" executionorder="5" product="roster">
  <title>Generate Characters for Roster AutoSig</title>
  <hookname>showthread_start</hookname>
  <phpcode><![CDATA[$roster_result = $db->query("SELECT * FROM " . TABLE_PREFIX . "roster 
                                      LEFT JOIN eqdkp_members ON eqdkp_members.member_name=roster.fname Where level >= 50
           ORDER by level DESC");
 $i=0;
 while ($rostertemp = $db->fetch_array($roster_result)){
  $rosterchars[$i]['guild_rank']=$rostertemp['guild_rank'];
  $rosterchars[$i]['status']=$rostertemp['status'];
  $rosterchars[$i]['title']=$rostertemp['title'];
  $rosterchars[$i]['fname']=$rostertemp['fname'];
  $rosterchars[$i]['lname']=$rostertemp['lname'];
  $rosterchars[$i]['race']=$rostertemp['race'];
  $rosterchars[$i]['class']=$rostertemp['class'];
  $rosterchars[$i]['level']=$rostertemp['level'];
  $rosterchars[$i]['charownid']=$rostertemp['charownid'];
  $rosterchars[$i]['id']=$rostertemp['id'];
  $rosterchars[$i]['magelo']=$rostertemp['magelo'];
  $rosterchars[$i]['mageloupdated']=$rostertemp['mageloupdated'];
        $rosterchars[$i]['lastraid']=date("D, F j",$rostertemp['member_lastraid']);
  $i++;
 }
global $rosterchars;]]></phpcode>
 </plugin>
</plugins>
One part will perform the query and put all of the characters into an array, the second part will only select the characters in that array that matches the userID of the poster. When I disable the 2nd part the quick reply works, but I can't see why that code would stop it working?

PHP Code:
foreach ($rosterchars as $key => $rosterchar
{
 if (
$rosterchar['charownid']==$post['userid']) {
  eval(
'$post[\'characters\'] .= "' fetch_template('roster_post_bit') . '";');
 } 
I've removed the IF statement and the signature displays ALL of the records in the array and quick reply works, yet if I put it back in again it stops....I've tried modifying the query to only select the characters for that particular poster but can't quite get the query right.

I tried modifying it to something like this:
Code:
 
 
$roster_result = $db->query("SELECT * FROM " . TABLE_PREFIX . "roster 
                                      LEFT JOIN eqdkp_members ON eqdkp_members.member_name=roster.fname Where level >= 50 AND charownid = . "$post['userid']" . 
           ORDER by level DESC");
But that comes up with an error, I guess it doesn't like the $post['userid'] part.


Any advice would be appreciated.

--------------- Added [DATE]1206265958[/DATE] at [TIME]1206265958[/TIME] ---------------

I've removed the foreach statement and it now displays everything in the array but works.
So now I'm trying to limit the query to just show the records for that particular poster.
I've changed the hook location to Showpost_Start but need some way of matching my records to the userid of that post....any ideas on how to do this in a query?
Reply With Quote
Reply

Thread Tools
Display Modes

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 09:25 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.03353 seconds
  • Memory Usage 2,207KB
  • Queries Executed 13 (?)
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
  • (2)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)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)showthread_list
  • (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_threadedmode.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_threaded
  • showthread_threaded_construct_link
  • 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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete