Results 1 to 9 of 9

Server Overload Problems

This is a discussion on Server Overload Problems within the Troubleshooting forums, part of the vBSEO SEO Plugin category; Hi, Im having problems with my server because of the VbSEO installation. This is the message from the support team. ...

  1. #1
    Member
    Real Name
    Roger
    Join Date
    Mar 2006
    Posts
    45
    Liked
    0 times

    Server Overload Problems

    Hi, Im having problems with my server because of the VbSEO installation.

    This is the message from the support team.

    I have investigated your server and some of the processes are overloading your
    server, especially the following process are overloading heavily. You need to
    ask your developer to optimize your script.

    PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
    777 xxxx 18 0 23024 13m 3944 R 41 1.4 0:00.21 /usr/bin/php vbseo.php
    2331 xxxx 15 0 24204 15m 4044 S 17 1.5 0:00.51 /usr/bin/php vbseo.php
    2367 xxxx 18 0 16812 7952 3916 R 5 0.8 0:00.14 /usr/bin/php vbseo.php
    2368 xxxx18 0 17348 8080 3640 R 5 0.8 0:00.14 /usr/bin/php vbseo.php
    2370 xxxx 17 0 13344 3700 2800 R 1 0.4 0:00.02 /usr/bin/php vbseo.php

    Please try to optimize it or upgrade it to latest version and give it a try.
    Hope you can help me

  2. #2
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Hello,

    since you have "/usr/bin/php vbseo.php" processes running, you are using CGI version of PHP. Performance should be improved if you will switch to Apache handler PHP module instead.
    Also, you can move rewrite rules from .htaccess to httpd.conf to reduce load.

  3. #3
    Member
    Real Name
    Roger
    Join Date
    Mar 2006
    Posts
    45
    Liked
    0 times
    Quote Originally Posted by Oleg Ignatiuk View Post
    Also, you can move rewrite rules from .htaccess to httpd.conf to reduce load.

    How can I access the httpd.conf file ?

  4. #4
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    This is Apache configuration file and it's location may differ (often it resides in /etc/httpd/conf/httpd.conf), you will need root access to your server to modify it.

  5. #5
    Junior Member
    Real Name
    brian
    Join Date
    Oct 2009
    Location
    Sweet Home Alabama
    Posts
    28
    Liked
    0 times

    Wink

    for cPanel users you ( or I had to ) add it like this:

    Code:
    <Directory /home/me_mine/public_html>
    # Comment the following line (add '#' at the beginning)
    # to disable mod_rewrite functions.
    # Please note: you still need to disable the hack in
    # the vBSEO control panel to stop url rewrites.
    RewriteEngine On
    
    # Some servers require the Rewritebase directive to be
    # enabled (remove '#' at the beginning to activate)
    # Please note: when enabled, you must include the path
    # to your root vB folder (i.e. RewriteBase /forums/)
    RewriteBase /
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    #RULES for SEO translation links with vBSEO (have to be included before all rules to vbseo.php)
    RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/ [L,QSA]
    
    RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is|id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|sr|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/$2 [L,QSA]
    
    RewriteCond %{REQUEST_URI} !(linux1/|linux2/|vbseo_sitemap/|cron)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbenterprisetranslator_seo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !^(linux1|linux2|clientscript|cpstyles|images)/
    RewriteRule $ vbenterprisetranslator_seo.php [L,QSA]
    
    RewriteCond %{REQUEST_URI} !(linux1/|linux2/|cron|vbseo_sitemap)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(linux1|linux2|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    </Directory>
    
    <ifModule mod_expires.c>
      ExpiresActive On
      ExpiresDefault "access plus 1 seconds"
      ExpiresByType text/html "access plus 1 seconds"
      ExpiresByType image/gif "access plus 259200000 seconds"
      ExpiresByType image/jpeg "access plus 259200000 seconds"
      ExpiresByType image/png "access plus 259200000 seconds"
      ExpiresByType text/css "access plus 60480000 seconds"
      ExpiresByType text/javascript "access plus 21600000 seconds"
      ExpiresByType application/x-javascript "access plus 21600000 seconds"
    </ifModule>
    <ifModule mod_headers.c>
      <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
        Header set Cache-Control "max-age=25920000, public"
      </filesMatch>
      <filesMatch "\\.(css)$">
        Header set Cache-Control "max-age=6048000, public"
      </filesMatch>
      <filesMatch "\\.(js)$">
        Header set Cache-Control "max-age=2160000, private"
      </filesMatch>
      <filesMatch "\\.(xml|txt)$">
        Header set Cache-Control "max-age=2160000, public, must-revalidate"
      </filesMatch>
      <filesMatch "\\.(html|htm|php)$">
        Header set Cache-Control "max-age=1, private, must-revalidate"
      </filesMatch>
    </ifModule>
    <ifModule mod_headers.c>
      Header unset ETag
    </ifModule>
    FileETag None
    <ifModule mod_headers.c>
      Header unset Last-Modified
    </ifModule>
    
    <ifmodule mod_headers.c>
      <ifmodule mod_deflate.c>
        
        # Compress some text file types
        AddOutputFilterByType DEFLATE text/html text/css text/xml application/x-javascript
        
        # Deactivate compression for buggy browsers
        BrowserMatch ^Mozilla/4 gzip-only-text/html
        BrowserMatch ^Mozilla/4\.0[678] no-gzip
        BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
        
      </ifmodule>
    </ifmodule>
    NOTE: If you do not have these/those apache/httpd mods enabled, do not use this, "as is". Tweak it to suit your needs.

    Thanks,

  6. #6
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    For your information , we don't support vBET and don't offer support boards who installed that modification and applied changes to vBSEO files.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  7. #7
    Junior Member
    Real Name
    brian
    Join Date
    Oct 2009
    Location
    Sweet Home Alabama
    Posts
    28
    Liked
    0 times
    Wasn't asking for support.
    Was trying to help the next Man/Woman who wanted to use httpd.conf instead.

    And thank you for being so nice and friendly.

    Thanks & God Bless, Brian R. Wallace

  8. #8
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  9. #9
    Junior Member
    Real Name
    brian
    Join Date
    Oct 2009
    Location
    Sweet Home Alabama
    Posts
    28
    Liked
    0 times
    Cool. Didn't know that was there. ( yeah, I searched....lol )
    I must be a genius to have figured it out on all my own....( Even WITH vBET )

Similar Threads

  1. server move problems
    By Notorious in forum Troubleshooting
    Replies: 3
    Last Post: 11-30-2006, 10:35 PM
  2. strange penalty (due to server problems?)
    By magnaromagna in forum Analysis: Traffic & SERPS
    Replies: 2
    Last Post: 06-18-2006, 09:37 AM
  3. Suggestion for a server problem
    By Mert Gökçeimam in forum Off-Topic & Chit Chat
    Replies: 1
    Last Post: 05-03-2006, 11:23 AM
  4. Specific problems after server move
    By kovacs in forum Troubleshooting
    Replies: 20
    Last Post: 03-26-2006, 05:12 AM
  5. New server problems
    By smack in forum Troubleshooting
    Replies: 2
    Last Post: 02-25-2006, 03:14 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •