The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBMicrostats Details »» | |||||||||||||||||||||||||
Finally, the vBMicroStats product for vBulletin 3.5.4 is here.
The previous versions of my mod were very solicited by vBulletin administrators... I hope you will enjoy this new version as much you did the other ones. Looking for VB 3.6.x version? It is here. This mod with add at the bottom of each vBulletin (powered) page, the statistics listed below. Also, it will help you troubleshoot and optimize your vBulletin board by viewing or comparing PHP/MySQL options and other statistics that are normally hidden in your forum pages. Regular Users: ? Load time of specified page in microseconds ? Number of queries executed ? PHP percent page usage ? MySQL percent page usage Administrators Only: ? Server memory usage per page (in Kb) ? DEBUG mode status ? Browser GZIP library compression status ? Server average loads ? Uncached templates (useful to troubleshoot the code) The code modifications listed below were tested into a clean installed vBulletin board. They work 100%. If you encounter any problems, feel free to post your questions here. Step by step install instructions are posted into vbmicrostats.html file. In order to perform an efficient modification of your files, I recommend you to use Dreamweaver (Coder Mode) or Textpad. Both editors will allow you to complete all steps without any coding errors. I tried to use the plugin system as much as I could, in order to avoid any unnecessary code modifications. In order to set the right query execution time, you will need to perform 2 small code changes to each of the following files: ? class_core.php (folder /includes) ? init.php (folder /includes) The code changes are very safe and designed not to interfere in any way with the vBulletin performance/functionality. Make sure you modify, save and upload one file at the time to your server. Then, simply run the product-plugin_vbmicrostats.xml file. Once the product installed, don't forget to enable it. Go to your vBulletin Options, click on BB MicroStats setting group and set all your options. Show Your Support
|
Comments |
#32
|
|||
|
|||
here is what i mean if i remove the admin table the alt1 it groups both lines into one...
|
#33
|
||||
|
||||
Bob, post here the actual html code from the page source, not footer template. Start from the beginning of microstats code to the end of footer.
I will fix it, something is wrong with the row colspan, in my mod. |
#34
|
|||
|
|||
working good for me, though if I view the same exact page without any changes sometimes I'll get php close to 90% and every once in awhile I'll get the sql at like 70%.
|
#35
|
||||
|
||||
Quote:
First segment of code is ok, but try this instead. Find: Code:
$ms_output .= ' <span class="smallfont">Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries</span>' . "\n"; Code:
$ms_output .= 'Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries<br />'; Code:
$ms_output .= '<tr align="' . $stylevar['right'] . '">' . "\n"; $ms_output .= ' <td class="alt1"' . iif($show['quickchooser'] OR $show['languagechooser'], ' colspan="' . $colspan . '"') . '>' . "\n"; $ms_output .= ' <span class="smallfont">' . $memory_status . $debug_status . $gzip_status . $server_status . $templates_status . '</span>' . "\n"; $ms_output .= ' </td>' . "\n"; $ms_output .= '</tr>' . "\n"; Code:
$ms_output .= $memory_status . $debug_status . $gzip_status . $server_status . $templates_status; Code:
$vbphrase[powered_by_vbulletin]<if condition="$show['microstats']"><br />
{microstats}</if>
|
#36
|
||||
|
||||
Quote:
|
#37
|
|||
|
|||
lol i just got it before i refreshed the page lol thank you very much here is my code in my vBMicroStats Global Hook if anyone wants it like this hope you dont mind if so ill remove it.... just remember members only see the top code not the bottom one...
also i placed my <if condition="$show['microstats']">{microstats}</if> in the copyright part of the footer like this Code:
<div align="center">
<div class="smallfont" align="center">
<!-- Do not remove this copyright notice -->
<br />
$vbphrase[powered_by_vbulletin]
<br />
<!-- Do not remove this copyright notice -->
</div>
<div class="smallfont" align="center">
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$cronimage
<!-- Do not remove $cronimage or your scheduled tasks will cease to function -->
$vboptions[copyrighttext]
<if condition="$show['microstats']">{microstats}</if>
</div>
</div>
|
#38
|
||||
|
||||
Quote:
MySQL is a very smart language. If you run a query for the first time, it will execute it and also store it in the memory, in case you will need to perform it again. That saves server resources. If you don't use it for a certain period of time, the process is dumped automatically. This is where you see the critical points in your PHP pages. If every time you load a new page that have wierd mods enabled, MicroStats will warn you with the actual results, creating rightaway a question mark in your mind about the quality of the code you installed. The best way to see what are the "clean" results of your PHP/MySQL code is to install MicroStats into an unmodded vBulletin test board. Then you can compare the clean results with your board results... |
#39
|
||||
|
||||
Quote:
Watch the server load, it's close to the sky. The bold numbers should not be higher then 1.00, yours are over 3.00. Are you on a shared server? If you are, contact your host and let them know. Someone is eating a lot of CPU there... |
#40
|
|||
|
|||
lol im doing a backup thats why... but the queries you are seeing is from my vbadvanced page...
|
#41
|
||||
|
||||
Quote:
The second, into your footer template, or any other template you like. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|