vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   big load do error (https://vborg.vbsupport.ru/showthread.php?t=210409)

Dj Sagi 04-05-2009 11:29 PM

big load do error
 
how i do that if in my forum
when i someone have big load something like 40 second it appear error?
thx for helps!
srry for bad eng.

Lynne 04-06-2009 02:44 AM

There may be a modification where it will disallow certain usergroups if your server gets over a certain load. Try a search on "load" or "server" or "usergroup" in "all mods" "titles only"

Dj Sagi 04-06-2009 01:12 PM

I DONT FOND Restrict search
but i want that no only in search i show, i want that it show error in all my forum that they can enter to nothing and it show error.
how i do it?
thx

Lynne 04-06-2009 01:35 PM

I'm sorry, I don't understand what you want. vB does not have anything built in to restrict users based on the server load. I did see modifications by searching on "load" in "all mods" "titles only" that deal with server loads. I'm not sure if one of those is what you want. Maybe you can modify it to do what you want.

Dj Sagi 04-06-2009 02:13 PM

can i get link?
thx.

Lynne 04-06-2009 02:20 PM

I'm not gonna link to all the threads that come up in the search. Try a search for "load*" in "all mods" "titles only" The search bar is in the upper right corner.

Dj Sagi 04-06-2009 02:26 PM

i found some
PHP Code:

                $search_load intval($vbulletin->options['RestrictSearchs_max_load']);

                if (
$search_load <= 0) {

                    
$search_load 5;

                }

    
            if (( 
$vbulletin->userinfo['usergroupid'] <> 6  ) )

            {
  
            
                if (
$load = @file_get_contents("/proc/loadavg")) 

                {

                    
$loadavg explode(' '$load); 
 
                    
                }elseif (
$load=@exec('uptime')) 

                {
                    
preg_match('/averages?: ([0-9\.]+),[\s]+([0-9\.]+),[\s]+([0-9\.]+)/',$load$loadavg);
    
        
                }
                    elseif (
$load = @`sysctl vm.loadavg|cut -d" " -f3-5`) 
                
                    {

                    
$loadavg explode(' '$load);
  
                }

            
                if (
trim($loadavg[0]) > $search_load)
  
                { 
 
                    eval(
standard_errorfetch_error('restrict_search')));

                } 

how i change it that when i have high load appear error in all web?
that can enter to nothing...

thx for help!

Lynne 04-06-2009 02:45 PM

That looks like code out of a modification. Did you install it? It looks like you set the load in the vboptions and then it gives an error when trying to use search. The variables are all there, you can change it however you want. You should play with the code on your test site to get it right.

Dj Sagi 04-06-2009 02:54 PM

Quote:

Originally Posted by Lynne (Post 1785097)
That looks like code out of a modification. Did you install it? It looks like you set the load in the vboptions and then it gives an error when trying to use search. The variables are all there, you can change it however you want. You should play with the code on your test site to get it right.

you right it restirect search when high load for server....

how i can change it for that it show error in the web not in the search when the server have high load?
thx a lot!
u really really help me!

Lynne 04-06-2009 03:11 PM

I don't know exactly what you need to do. Find a page that gives the error message you want and then find that code in the page and put it in your new modification OR write your own error phrase and use it in the code. I don't know what hook that code is using, but you'll want to use a more global hook instead of a search hook (if that is the case there).

As I said before, play with it on a test site.


All times are GMT. The time now is 09:36 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.01084 seconds
  • Memory Usage 1,747KB
  • 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
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (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