![]() |
Does anyone no why when i try to import this as a product is says " No file uploaded and no local file found. " ...then when i try to install it as a plug-in it says the ame thing....Im running 3.6.4
|
Quote:
|
The only place that it doesnt work is the logon redirection screen. All the stats there are waaaay wrong on my forum. Anyone got a fix for that?
|
Hi guys .. i get this in 3.6.4 when i enable the mod
The specified CGI application misbehaved by not returning a complete set of HTTP headers. And i d know wheres the prob. |
In my experience that has been a problem with my host and no fault of my own.
|
Its a rented server by me.. so i control it fully... if you can be more specific i will appreciate it.
Thx Chris |
When I upgraded vBulletin to 3.6.5 it stopped showing server loads to me.
|
Quote:
|
I tried reinstalling. Maybe it's the webhoster or server settings then. Thanks.
|
works fine for me w/ 3.6.5
|
Is there a way to hide the whole stats from the public but show the stats + server loads to a few selected usergoups only?
|
Awesome!!
Simple, flexible and works with 3.7.1 Just one thing. I don't want to see the cache information. I've changed the group ID to 200 atm, is there a way I can remove this information out of the plugin? I did try and it all failed :( I only really wanna see the time to generate the page and the number of queries? Thanks |
Page generated in 0.188 seconds (100.00% PHP - 0% MySQL) with 21 queries
Why does it always show 100.00% PHP - 0% MySQL? Doe I have to edit something on my server to show the % for mysql and php? Thanks in advance. |
Quote:
|
it is designed for 3.5.4.. soo if your using a different version. readings might be incorrect!
|
Quote:
|
No idea, sorry. But someone said before that you can take the query info out off the ACP, and place it on the main footer, it also doesnt add to any querys
|
works on 3.70. beta2
|
working on 3.7.0 Beta Rc 1
|
My forum is really slow to load pages at certain times of the day.
I got: Page generated in 18.34197 seconds with 14 queries [Server Loads: 5.68 2.76 : 1.35] Then, once in and doing a refresh, I got: Page generated in 1.84214 seconds with 14 queries [Server Loads: 1.18 2.15 : 1.34] I'm running a virtual private server and according to my host, utilization all the way around is very low. Upgrading to a dedicated server supposedly isn't going to buy me anything. I like the hacks that I have, but it seems something(s) gotta go. I just took one rss javascript feed out of the left-hand column, but it looks like more's gotta go. Bummer. I'm not sure what the server load numbers really mean. I'm currently on 3.6.4 waiting for 3.7 gold to upgrade. I thought the stats would show more queries based on my hacks, so now I'm not sure how to tune. www.guineapigcages.com/forum/index.php |
what hack do you have?
|
36:
Add PhotoPost Pro to each forum Archive Adsense BBcode templates manager Cafe Press Add On Catagory Icons Enhanced Captcha Image Verification FlashChat Integration Global Announcement GTSearch: Googleâ„¢ Custom Search Engine Guest Tracking IpInfo Latest X Threads on Forum Home Left Column Members who are using flashchat Members who have Visited Microstats Mini Navbar Miserable Users Moderation Auto-PM Multiple Login Detector NoSpam! Per-Thread Moderation Post Thank You Hack Real ip detection Separate Sticky and Normal Threads Show Birthday Icon in Postbit SR Classifieds Premium 1.0.5 Sticky-Blue Total Thanks - Forum Home Stats vB Ad Management vB Ad Management English language vbgooglemap by StonyArc vBSEO vBSEO :: Sitemap Generator Viper's YouTube & Google Video Welcome Headers |
Quote:
|
Quote:
It took me : Page generated in 115.71136 seconds Keep in mind that some like :latest x thread are server intensive some aren't build for active forums as well.... The number of queries isn't all but also how heavy a query is i also notice that your forum itself isn't slow ONLY the main page....so it could be that your problem? |
working on 3.7 Gold! Great! :)
|
*co-sign*
|
work for 3.7.x and any releases planned ?
|
Quote:
|
that's great, where ever the author is 3cheers for his excellent coding to be working on 2 later releases too :up:
|
Thanks Work fine 3.7.1 : )
|
Working in 3.7.2, Thanks! :)
|
Installed and working on 3.7.2.
|
How do we enable this option to work for multiple usergroups ?
We want Administrators, super-moderators and moderator usergroups to be able to check server load.s thanks |
How would I go about moving the location of the text that gets printed out?
I would like to put it with the copyright text... Otherwise it screws with my design: http://www.8wayrun.com/forums.php |
Quote:
|
It is possible to see which query is taking how much time to execute? So that we can debug or optimize those queries. i am facing issued when clicking on the Forums to go to forumdisplay.php. Its taking like 25 secs on load 43 queries on a forumdisplay.php page. How can view those queries and how much they are taking. This is most urgent please.
|
I don't think this hack can be used to time individual queries, it only marks the time difference between the page request and when it is complete.
43 queries on a forumdisplay.php page seems like quite a bit of them. I just loaded the forumdisplay.php page on two forums I admin. The more customized one ran 26 queries on a forumdisplay, one that is a little closer to stock ran 21 queries. To figure out what is taking so long on yours, I'd disable all plug-ins, then re-enable them 1 by 1 until you see the page load time increase dramatically. |
works with 3.8.0 beta 4 as well
|
Quote:
Remove the current code, replace with.. $pageendtime = microtime(); $starttime = explode(' ', $pagestarttime); $endtime = explode(' ', $pageendtime); $totaltime = vb_number_format($endtime[0] - $starttime[0] + $endtime[1] - $starttime[1], 5); $debughtml = '<center><span class="smallfont">Page generated in <b>' . $totaltime . '</b> seconds with <b>' . $vbulletin->db->querycount . '</b> queries'; $usergroupid = $vbulletin->userinfo['usergroupid']; if ($usergroupid == 5 || $usergroupid == 6 || $usergroupid == 7) { if ($loadavg = @file_get_contents("/proc/loadavg")) { $regs = explode(" ",$loadavg); $serverload = ' [Server Loads: <b>' . $regs[0] .'</b> ' . $regs[1] . ' : ' . $regs[2] . ']'; }elseif ($stats=@exec('uptime')) { preg_match('/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+([0-9\.]+)/',$stats,$regs); $serverload = ' [Server Loads: <b>' . $regs[1] .'</b> ' . $regs[2] . ' : ' . $regs[3] . ']'; }elseif ($loadavg = @`sysctl vm.loadavg|cut -d" " -f3-5`) { $regs = explode(" ",$loadavg); $serverload = ' [Server Loads: <b>' . $regs[0] .'</b> ' . $regs[1] . ' : ' . $regs[2] . ']'; } $debughtml .= iif($_TEMPLATEQUERIES, ' (<b>' . sizeof($_TEMPLATEQUERIES) . '</b> queries for uncached templates)', '') . "$serverload"; ksort($tempusagecache); foreach ($tempusagecache AS $tempname => $times) { if ($_TEMPLATEQUERIES["$tempname"]){ $debughtml .= '<center><span class="smallfont">Uncached templates: <font color="red"><b>' . $tempname . '</b></font> (' . $times . ')</span></center>'; } } } $debughtml .= "</span></center>"; if (!$vbulletin->config['Microstats']['replacementvariable']) { $vbulletin->config['Microstats']['replacementvariable'] = '</body>'; } if (($vbulletin->config['Microstats']['adminonly'] and $vbulletin->userinfo['usergroupid'] == 5 || $usergroupid == 6 || $usergroupid == 7) or !$vbulletin->config['Microstats']['adminonly']){ $output = str_replace($vbulletin->config['Microstats']['replacementvariable'], $debughtml . $vbulletin->config['Microstats']['replacementvariable'], $output); } Where you see the usergroupid = 5, 6 & 7, replace those numbers with whatever your usergroup id's are that you want to see the microstats. Hope this helps :) |
I need this plugin :
generated this page in 0.21 seconds (79.54% PHP - 20.46% MySQL) with 11 queries. from forum http://forums.offtopic.com/ p.s. good forum... Posts: 112,870,447 :) |
All times are GMT. The time now is 10:34 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 | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|