Results 1 to 10 of 10

Optimize for server performance?

This is a discussion on Optimize for server performance? within the General Discussion forums, part of the vBSEO SEO Plugin category; I would like to know if anyone has experimented with VBSEO settings to give the best server performance while still ...

  1. #1
    Member
    Real Name
    treasureman
    Join Date
    Mar 2006
    Posts
    46
    Liked
    0 times

    Optimize for server performance?

    I would like to know if anyone has experimented with VBSEO settings to give the best server performance while still re-writing URL's?

    My server is near it's max and I want to try to avoid upgrading servers.

    I have turned off the following features as I don't need them:
    rewriting profiles
    rewriting avatars
    rewriting attachments

    I don't need linkbacks, trackbacks, or any of that stuff. Just the URL's to be rewritten as efficiently as possible.

    I currently use forum_title for the forum URL, should I switch to forum ID?
    What about thread URL's and showpost URL's?

    Any ideas would be appreciated. I am using Vbulletin 3.5.4 and VBSEO 3.0 RC6

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

    using forum ids in forum URL format is better for performance, but that will change all your URLs and it's better to stick with your existing formats if you have your forum indexed in search engines already.

    You can also disable "update services" and "Add Titles to External Links" features to save on outgoing network connections when mesages are posted.

    You should also check that "Direct links to prev/next threads" option is disabled since it adds database queries.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  3. #3
    Member
    Real Name
    vol_freak
    Join Date
    Aug 2006
    Posts
    50
    Liked
    0 times
    Quote Originally Posted by Oleg Ignatiuk View Post

    You should also check that "Direct links to prev/next threads" option is disabled since it adds database queries.
    I can't seem to find this setting? Could you point me to it?

    Thanks

  4. #4
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,689
    Liked
    157 times
    It's under "Direct Links" section.
    Oleg Ignatiuk / Crawlability Inc.
    vBSEO 3.6.0 GOLD Released!
    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  5. #5
    Junior Member
    Real Name
    Andrea
    Join Date
    Nov 2006
    Location
    Milan
    Posts
    13
    Liked
    0 times
    Quote Originally Posted by treasureman View Post
    I would like to know if anyone has experimented with VBSEO settings to give the best server performance while still re-writing URL's?

    My server is near it's max and I want to try to avoid upgrading servers.

    I have turned off the following features as I don't need them:
    rewriting profiles
    rewriting avatars
    rewriting attachments

    I don't need linkbacks, trackbacks, or any of that stuff. Just the URL's to be rewritten as efficiently as possible.

    I currently use forum_title for the forum URL, should I switch to forum ID?
    What about thread URL's and showpost URL's?

    Any ideas would be appreciated. I am using Vbulletin 3.5.4 and VBSEO 3.0 RC6
    The most important tweak to optimize you server with VBSEO is removing the rewriting rules from the .htaccess file. Instead use "hard-coded" rules, insert them in your apache configuration file.

    I had high load problem with slow navigation on my server and i solved in this way.

  6. #6
    Member
    Real Name
    vol_freak
    Join Date
    Aug 2006
    Posts
    50
    Liked
    0 times
    Quote Originally Posted by Oleg Ignatiuk View Post
    It's under "Direct Links" section.
    Thanks. I looked through those settings three times and still missed it somehow.

  7. #7
    Member
    Real Name
    treasureman
    Join Date
    Mar 2006
    Posts
    46
    Liked
    0 times
    Quote Originally Posted by sev3n View Post
    The most important tweak to optimize you server with VBSEO is removing the rewriting rules from the .htaccess file. Instead use "hard-coded" rules, insert them in your apache configuration file.

    I had high load problem with slow navigation on my server and i solved in this way.
    Hi,

    Can you give me an example of where to place them? I assume you talking about the httpd.conf file?

    If you would give me an example of your file (with the personal info deleted of course) I would appreciate it.

  8. #8
    Member
    Real Name
    treasureman
    Join Date
    Mar 2006
    Posts
    46
    Liked
    0 times
    Quote Originally Posted by treasureman View Post
    Hi,

    Can you give me an example of where to place them? I assume you talking about the httpd.conf file?

    If you would give me an example of your file (with the personal info deleted of course) I would appreciate it.
    Never mind, I have figured out how to do this.

  9. #9
    Member
    Real Name
    Rodney
    Join Date
    Feb 2006
    Posts
    47
    Liked
    0 times
    The most important tweak to optimize you server with VBSEO is removing the rewriting rules from the .htaccess file. Instead use "hard-coded" rules, insert them in your apache configuration file
    Is there instruction somewhere on how to do this?

  10. #10
    Junior Member
    Real Name
    Andrea
    Join Date
    Nov 2006
    Location
    Milan
    Posts
    13
    Liked
    0 times
    Quote Originally Posted by treasureman View Post
    Hi,

    Can you give me an example of where to place them? I assume you talking about the httpd.conf file?

    If you would give me an example of your file (with the personal info deleted of course) I would appreciate it.
    Well put in your httpd.conf these lines:

    <Directory "full_path_to_your_vbulletin_forum">
    AllowOverride None

    RewriteEngine On
    RewriteBase /
    RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond &#37;{REQUEST_FILENAME} -f
    RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.*)$ $1 [L]

    RewriteCond %{QUERY_STRING} !vbseourl=
    RewriteCond %{REQUEST_FILENAME} !chat
    RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

    RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]

    </Directory>
    Pay attention to edit "full_path_to_your_vbulletin_forum"

Similar Threads

  1. Performance problem
    By ned in forum Troubleshooting
    Replies: 5
    Last Post: 04-23-2006, 12:27 PM
  2. Improve performance of forum?
    By Nicke in forum General Discussion
    Replies: 3
    Last Post: 01-18-2006, 04:48 PM
  3. How do big boards handle performance isues?
    By dutchbb in forum General Discussion
    Replies: 19
    Last Post: 10-26-2005, 09:59 PM
  4. Performance problems
    By MMAFan in forum Bug Reporting
    Replies: 3
    Last Post: 09-18-2005, 12:48 AM

Posting Permissions

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