vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - vBExperience 4 (https://vborg.vbsupport.ru/showthread.php?t=245023)

Veer 08-21-2010 06:31 PM

Just found another bug, my admin achieved more than a dozen achievements, his achievements displayed everywhere but not in posbit location, all other users achievements displayed correctly in posbit and all other locations. Any one else having this issue?

Bigj85 08-21-2010 07:13 PM

Quote:

Originally Posted by Veer (Post 2087466)
Oh yes, I did change that template with yours and problem gone.

Thanks man.

Your Welcome

Quote:

Originally Posted by Veer (Post 2087471)
Just found another bug, my admin achieved more than a dozen achievements, his achievements displayed everywhere but not in posbit location, all other users achievements displayed correctly in posbit and all other locations. Any one else having this issue?

I can't see achievements for any users in the postbit since updating,I'm sure phalynx will fix it in the next release

EDIT: Scratch that last sentence I wasn't updated to 20100821.zip,updated and can see achievements again

SledgeHead 08-22-2010 01:46 AM

I, and other members on my forum, randomly get these every so often: "10:20 PM Sledge has lost -20 Points for Posts points" How do you LOSE points? And why/what are points being taken away for? I've also seen it say "lost -20 points for THREAD points". What does this all refer to?

Also, how is activity calculated? I saw some of our best members are showing 0% for Activity. Perhaps I overlooked an answer to this.

Next, is there a way to allow others to see all the Achievements you have unlocked? Maybe even a way to choose which ones appear in your postbit?

Finally and most important, ever since I installed the iTrader Feedback Score tab is not working on the Member Profile page. Whenever you click the tab, the page will load, but the Feedback Score table will not show... except on your own page. Any ideas?

bybart 08-22-2010 01:53 PM

Quote:

Originally Posted by Bigj85 (Post 2087442)
Phalynx in my nonstop search for a cure to my memberinfo tabs problem with them disappearing I found a fix,I'm not sure why but the conditionals in the template xperience_memberinfo_block are the cause.

its the conditionals like this
Code:

<vb:if condition="$block_data[xperience_points_user]<>0">
after removing all of them from that template the tabs now all work on all members,I have tried this on multiple styles and it has worked every time.

so you can see and for anyone with the missing profile tabs problem here is my template

All Tabs Working - xperience_memberinfo_block

Code:

<div id="view-xperience" class="<vb:if condition="$selected_tab == 'xperience'">selected_view_section<vb:else />view_section</vb:if>">
<h4 class="subsectionhead-understate" id="xperience_name">{vb:rawphrase xperience_name}</h4>
<div class="subsection">
       
       
        <h5 class="subsubsectionhead">{vb:rawphrase xperience_points}</h5>
        <dl class="stats">
                <dt>{vb:rawphrase xperience_points}</dt>
                <dd> {vb:raw block_data.xperience_points}</dd>
        </dl>
        <dl class="stats">
                <dt>{vb:rawphrase xperience_level}</dt>
                <dd> {vb:raw block_data.xperience_level}</dd>
        </dl>
                <vb:if condition="$vboptions[xperience_bar_colour_level] !== 'Hide'">
                        <div title="{vb:raw block_data.xperience_gfx_level}" style="width:102px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_level}_faded.png);">
                                <div title="{vb:raw block_data.xperience_gfx_level}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_level}_left.png); display:inline; float:left;"></div>
                                <div title="{vb:raw block_data.xperience_gfx_level}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_level}_right.png); display:inline; float:right;"></div>
                                <img alt="{vb:raw block_data.xperience_gfx_level}" src="{vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_level}.png" width="{vb:raw block_data.xperience_levelp}" height="11" />
                        </div>
                </vb:if>
       
                       
<h5 class="subsubsectionhead">{vb:rawphrase xperience_level_up}</h5>
        <dl class="stats">
                <dt>{vb:rawphrase xperience_level_up}</dt>
                <dd> {vb:raw block_data.xperience_level_up}%</dd>
        </dl>

        <dl class="stats">
                <dt>{vb:rawphrase xperience_points_needed}</dt>
                <dd> {vb:raw block_data.xperience_level_up_points}</dd>
        </dl>

        <vb:if condition="$vboptions['xperience_bar_colour_levelup'] !== 'Hide'">
                <div title="{vb:raw block_data.xperience_gfx_levelup}" style="width:102px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_levelup}_faded.png);">
                        <div title="{vb:raw block_data.xperience_gfx_levelup}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_levelup}_left.png); display:inline; float:left;"></div>
                        <div title="{vb:raw block_data.xperience_gfx_levelup}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_levelup}_right.png); display:inline; float:right;"></div>
                        <img alt="{vb:raw block_data.xperience_gfx_levelup}" src="{vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_levelup}.png" width="{vb:raw block_data.xperience_level_up}" height="11" />
                </div>
        </vb:if>

       
<h5 class="subsubsectionhead">{vb:rawphrase xperience_activity}</h5>
        <dl class="stats">
                <dt>{vb:rawphrase xperience_activity}</dt>
                <dd> {vb:raw block_data.xperience_activity}%</dd>
        </dl>
       
                <vb:if condition="$vboptions['xperience_bar_colour_activity'] !== 'Hide'">
                        <div title="{vb:raw block_data.xperience_gfx_activity}" style="width:102px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_faded.png);">
                                <div title="{vb:raw block_data.xperience_gfx_activity}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_left.png); display:inline; float:left;"></div>
                                <div title="{vb:raw block_data.xperience_gfx_activity}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_right.png); display:inline; float:right;"></div>
                                <img alt="{vb:raw block_data.xperience_gfx_activity}" src="{vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}.png" width="{vb:raw block_data.xperience_activity}" height="11" />
                        </div>
                </vb:if>



        <dl class="stats">
                <dt>{vb:rawphrase xperience_activity30}</dt>
                <dd> {vb:raw block_data.xperience_activity30}%</dd>
        </dl>
       
                <vb:if condition="$vboptions['xperience_bar_colour_activity'] !== 'Hide'">
                        <div title="{vb:raw block_data.xperience_gfx_activity30}" style="width:102px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_faded.png);">
                                <div title="{vb:raw block_data.xperience_gfx_activity30}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_left.png); display:inline; float:left;"></div>
                                <div title="{vb:raw block_data.xperience_gfx_activity30}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_right.png); display:inline; float:right;"></div>
                                <img alt="{vb:raw block_data.xperience_gfx_activity30}" src="{vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}.png" width="{vb:raw block_data.xperience_activity30}" height="11" />
                        </div>
                </vb:if>




        <dl class="stats">
                <dt>{vb:rawphrase xperience_activity7}</dt>
                <dd> {vb:raw block_data.xperience_activity7}%</dd>
        </dl>
                <vb:if condition="$vboptions['xperience_bar_colour_activity'] !== 'Hide'">
                        <div title="{vb:raw block_data.xperience_gfx_activity7}" style="width:102px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_faded.png);">
                                <div title="{vb:raw block_data.xperience_gfx_activity7}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_left.png); display:inline; float:left;"></div>
                                <div title="{vb:raw block_data.xperience_gfx_activity7}" style="width:1px; height:11px; margin-bottom:2px; background-image:url({vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}_right.png); display:inline; float:right;"></div>
                                <img alt="{vb:raw block_data.xperience_gfx_activity7}" src="{vb:raw vboptions.bburl}/xperience/progress/{vb:raw vboptions.xperience_bar_colour_activity}.png" width="{vb:raw block_data.xperience_activity7}" height="11" />
                        </div>
                </vb:if>

</div>


<h4 class="subsectionhead-understate" id="xperience_points">{vb:rawphrase xperience_points}</h4>
        <div class="subsection">
       
                <h5 class="subsubsectionhead">{vb:rawphrase xperience_points_for_user}</h5>
                        <dl class="stats"><dt>{vb:rawphrase xperience_points_user}</dt><dd>{vb:raw block_data.xperience_points_user}</dd></dl>
                        <vb:if condition="$block_data[xperience_points_user_infractions] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_infractions}</dt><dd><vb:if condition="$block_data[xperience_points_user_infractions]<0">-</vb:if>{vb:raw block_data.xperience_points_user_infractions}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_law] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_law}</dt><dd><vb:if condition="$block_data[xperience_points_user_law]<0">-</vb:if>{vb:raw block_data.xperience_points_user_law}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_reputation] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_reputation}</dt><dd>{vb:raw block_data.xperience_points_user_reputation}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_reputation_use] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_reputation_use}</dt><dd>{vb:raw block_data.xperience_points_user_reputation_use}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_online] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_online}</dt><dd>{vb:raw block_data.xperience_points_user_online}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_socialgroup] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_socialgroup}</dt><dd>{vb:raw block_data.xperience_points_user_socialgroup}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_friends] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_friends}</dt><dd>{vb:raw block_data.xperience_points_user_friends}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_visitormessages] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_visitormessages}</dt><dd>{vb:raw block_data.xperience_points_user_visitormessages}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_user_albumpictures] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_albumpictures}</dt><dd>{vb:raw block_data.xperience_points_user_albumpictures}</dd></dl></vb:if>                               
                        <vb:if condition="$block_data[xperience_points_user_referrals] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_referrals}</dt><dd>{vb:raw block_data.xperience_points_user_referrals}</dd></dl></vb:if>                               
                        <vb:if condition="$block_data[xperience_points_user_profile] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_user_profile}</dt><dd>{vb:raw block_data.xperience_points_user_profile}</dd></dl></vb:if>                               
                        {vb:raw block_data.xperience_points_user_tpl}



                <h5 class="subsubsectionhead">{vb:rawphrase xperience_points_for_thread}</h5>
                        <dl class="stats"><dt>{vb:rawphrase xperience_points_thread}</dt><dd>{vb:raw block_data.xperience_points_thread}</dd></dl>
                        <vb:if condition="$block_data[xperience_points_threads] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_threads}</dt><dd>{vb:raw block_data.xperience_points_threads}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_threads_sg] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_threads_sg}</dt><dd>{vb:raw block_data.xperience_points_threads_sg}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_tags] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_tags}</dt><dd>{vb:raw block_data.xperience_points_thread_tags}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_votes] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_votes}</dt><dd>{vb:raw block_data.xperience_points_thread_votes}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_rate] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_rate}</dt><dd>{vb:raw block_data.xperience_points_thread_rate}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_replycount] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_replycount}</dt><dd>{vb:raw block_data.xperience_points_thread_replycount}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_views] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_views}</dt><dd>{vb:raw block_data.xperience_points_thread_views}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_thread_stickies] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_thread_stickies}</dt><dd>{vb:raw block_data.xperience_points_thread_stickies}</dd></dl></vb:if>
                        {vb:raw block_data.xperience_points_thread_tpl}


                <h5 class="subsubsectionhead">{vb:rawphrase xperience_points_for_post}</h5>
                        <dl class="stats"><dt>{vb:rawphrase xperience_points_post}</dt><dd>{vb:raw block_data.xperience_points_post}</dd></dl>
                        <vb:if condition="$block_data[xperience_points_posts] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_posts}</dt><dd>{vb:raw block_data.xperience_points_posts}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_posts_sg] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_posts_sg}</dt><dd>{vb:raw block_data.xperience_points_posts_sg}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_attachment] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_attachment}</dt><dd>{vb:raw block_data.xperience_points_post_attachment}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_attachment_views] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_attachment_views}</dt><dd>{vb:raw block_data.xperience_points_post_attachment_views}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_thanks] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_thanks}</dt><dd>{vb:raw block_data.xperience_points_post_thanks}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_thanks_use] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_thanks_use}</dt><dd>{vb:raw block_data.xperience_points_post_thanks_use}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_avg] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_avg}</dt><dd>{vb:raw block_data.xperience_points_post_avg}</dd></dl></vb:if>
                        <vb:if condition="$block_data[xperience_points_post_den] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_post_den}</dt><dd>{vb:raw block_data.xperience_points_post_den}</dd></dl></vb:if>
                        {vb:raw block_data.xperience_points_post_tpl}


                        <h5 class="subsubsectionhead">{vb:rawphrase xperience_points_for_misc}</h5>
                                <dl class="stats"><dt>{vb:rawphrase xperience_points_misc}</dt><dd>{vb:raw block_data.xperience_points_misc}</dd></dl>
                                <vb:if condition="$block_data[xperience_points_misc_ldm] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_ldm}</dt><dd>{vb:raw block_data.xperience_points_misc_ldm}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_dl2] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_dl2}</dt><dd>{vb:raw block_data.xperience_points_misc_dl2}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_ppd] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_ppd}</dt><dd>{vb:raw block_data.xperience_points_misc_ppd}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_vbblog] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_vbblog}</dt><dd>{vb:raw block_data.xperience_points_misc_vbblog}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_vbcms] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_vbcms}</dt><dd>{vb:raw block_data.xperience_points_misc_vbcms}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_events] > 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_events}</dt><dd>{vb:raw block_data.xperience_points_misc_events}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_misc_custom] <> 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_misc_custom}</dt><dd>{vb:raw block_data.xperience_points_misc_custom}</dd></dl></vb:if>
                                <vb:if condition="$block_data[xperience_points_shop] <> 0"><dl class="stats"><dt>{vb:rawphrase xperience_points_shop}</dt><dd>{vb:raw block_data.xperience_points_shop}</dd></dl></vb:if>
                                {vb:raw block_data.xperience_points_misc_tpl}
</div>



<h4 class="subsectionhead-understate" id="xperience_activities">{vb:rawphrase xperience_activities}</h4>
<div class="subsection">
       
                        {vb:raw block_data.xperience_activities}                       
</div>


<a href="xperience.php?go=activities">{vb:rawphrase xperience_activities_all}</a>

</div>


AWESOME budd!! Thanks :D

Veer 08-22-2010 02:44 PM

Quote:

Originally Posted by Bigj85 (Post 2087491)
Your Welcome



I can't see achievements for any users in the postbit since updating,I'm sure phalynx will fix it in the next release

EDIT: Scratch that last sentence I wasn't updated to 20100821.zip,updated and can see achievements again

Re downloaded and updated with vBExperience402_RC_20100821.zip
Still no change, admin's achievements not displaying on postbit.

SpongeBob71 08-22-2010 04:23 PM

Anyone else getting a MySQL when adding a Widget to CMS?

I cannot get this working. I followed the directions but I keep getting an error on path:

/forum/xperience/widgets/activity.php line 7

Thank you in advance,

SpongeBob71

Phalynx 08-22-2010 05:15 PM

Quote:

Originally Posted by stwan (Post 2087336)
Phalynx, The problem in tournaments?

I have no clue, as I'm not getting the navbar even without vBExperience.

Quote:

Originally Posted by relaxiha (Post 2087379)
xperience_gap_memberaction (1
have a problem .debug

This has been fixed in newest RC. Please redownload ZIP and follow the upgrade instructions.

Quote:

Originally Posted by Bigj85 (Post 2087442)
Phalynx in my nonstop search for a cure to my memberinfo tabs problem with them disappearing I found a fix,I'm not sure why but the conditionals in the template xperience_memberinfo_block are the cause.

its the conditionals like this
Code:

<vb:if condition="$block_data[xperience_points_user]<>0">

If this would be the fix, that would be really great. Will take a deeper look and integrate it in a newer build.

Quote:

Originally Posted by DS MrSinister (Post 2087444)
v3Arcade Submissions addon

Getting this error when clicking Earn Points.

Please download the RC ZIP and overwrite the addon with the one from the ZIP.

Phalynx 08-22-2010 05:21 PM

Quote:

Originally Posted by SledgeHead (Post 2087616)
I, and other members on my forum, randomly get these every so often: "10:20 PM Sledge has lost -20 Points for Posts points" How do you LOSE points? And why/what are points being taken away for? I've also seen it say "lost -20 points for THREAD points". What does this all refer to?

Also, how is activity calculated? I saw some of our best members are showing 0% for Activity. Perhaps I overlooked an answer to this.

Did you deleted a thread? Unpinned a thread?


Quote:

Originally Posted by SledgeHead (Post 2087616)
Next, is there a way to allow others to see all the Achievements you have unlocked? Maybe even a way to choose which ones appear in your postbit?

All achievements of a user are listed in the profile. Choosing achievements has been added to todo list.

Quote:

Originally Posted by SledgeHead (Post 2087616)
Finally and most important, ever since I installed the iTrader Feedback Score tab is not working on the Member Profile page. Whenever you click the tab, the page will load, but the Feedback Score table will not show... except on your own page. Any ideas?

Please PM me the URL to your board so I can take a look.

Quote:

Originally Posted by Veer (Post 2087846)
Re downloaded and updated with vBExperience402_RC_20100821.zip
Still no change, admin's achievements not displaying on postbit.

You need to clear issued achievements and run a recount on them. Otherwise the relevant data will not be stored to the user table.

Quote:

Originally Posted by SpongeBob71 (Post 2087877)
Anyone else getting a MySQL when adding a Widget to CMS?



I cannot get this working. I followed the directions but I keep getting an error on path:

/forum/xperience/widgets/activity.php line 7

Thank you in advance,

SpongeBob71

I need to know a more specific error message. Line 7 is a call to a function. Do you have a php error log running?

SpongeBob71 08-22-2010 08:37 PM

Here is the error I got:

Call to undefined function GetActivityAll() in <PATH>/forum/xperience/widgets/activity.php on line 7

Hope this helps.

-SpongeBob71

DS MrSinister 08-23-2010 02:23 AM

Quote:

Originally Posted by Phalynx (Post 2087906)
Please download the RC ZIP and overwrite the addon with the one from the ZIP.


Sorry mate this is the one i am using sir..


All times are GMT. The time now is 11:38 PM.

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.03225 seconds
  • Memory Usage 1,880KB
  • 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
  • (3)bbcode_code_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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