vBulletin Search Engine Optimization
This is a discussion on How fast is my server? within the Off-Topic & Chit Chat forums, part of the Focus on Members category; I just moved to a new dedicated server. Please rate its speed 1 - 10 . http://malesopranos.com...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#1
| |||
| |||
| How fast is my server? |
|
#2
| ||||
| ||||
|
60 requests (0 B from cache) 11.73s i give it a 1. it's real slow. you have a LOT of 301's on images... not sure why. Looks like several are causing redirect loops which adds to the crazy load times. |
|
#3
| |||
| |||
|
I'm setting up a server at home for the first time so some tweaks may be necessary. I have this in my httpd.conf file ( instead of .htaccess ). EDIT: I removed the second '<Directory "/var/www/html">'. Is it any better now? Code: <Directory "/var/www/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 /
RewriteCond %{HTTP_HOST} !^malesopranos\.com
RewriteRule (.*) http://malesopranos.com/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteRule ^encyclopedia/?(.*)$ /wiki/index.php?title=$1 [L,QSA]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
</Directory>
<Directory "/var/www/html/gallery">
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} .php$ [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /vbseo.php?vbseourl=$1&vbseorelpath=gallery/ [L,QSA]
</Directory>
#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#
#
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "/var/www/html">
#
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs/2.2/mod/core.html#options
# for more information.
#
Options Indexes FollowSymLinks
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride None
#
# Controls who can get stuff from this server.
#
Order allow,deny
Allow from all
</Directory>
Last edited by Arkidas; 07-25-2008 at 10:27 AM. |
|
#4
| |||
| |||
|
Brian, what program did you use to generate that stats page?
|
|
#5
| |||
| |||
|
He's using FireBug for FireFox.
|
|
#6
| |||
| |||
|
Are those redirects still on the images, is the server any faster now?
|
|
#7
| ||||
| ||||
|
looks the same. 10.6 secs, still some 301's on images.
|
|
#8
| |||
| |||
|
That's not good. I have a 40Mb / 40Mb connection so this is not supposed to be possible. Should I try contacting my ISP?
|
|
#9
| ||||
| ||||
|
it might not be your ISP. it might be your server taking a while to generate the page, remote javascripts, etc etc
|
|
#10
| |||
| |||
|
It runs fine from my computer though so mustn't it be the connection?
|
|
#11
| ||||
| ||||
|
tracert looks decent though,,, C:\Users\Brian>tracert malesopranos.com Tracing route to malesopranos.com [213.190.120.146] over a maximum of 30 hops: (1-5 removed) 6 9 ms 8 ms 8 ms po-10-ar01.chartford.ct.hartford.comcast.net [68 .87.146.29] 7 13 ms 8 ms 8 ms te-3-1-ar01.chartford.ct.hartford.comcast.net [6 8.86.90.58] 8 10 ms 11 ms 11 ms pos-0-3-0-0-cr01.chicago.il.ibone.comcast.net [6 8.86.90.57] 9 10 ms 18 ms 13 ms 68.86.88.182 10 80 ms 78 ms 78 ms 217.239.39.234 11 130 ms 221 ms 131 ms 213.190.99.29 12 132 ms 133 ms 131 ms 213.190.99.25 13 133 ms 132 ms 133 ms 213.190.99.34 14 132 ms 135 ms 136 ms malesopranos.com [213.190.120.146] Trace complete. C:\Users\Brian> |
|
#12
| |||
| |||
|
I see, well what can I do then? I've installed APC and even installed YSLOW. Here's my current built into httpd.conf .htaccess. Is there anything wrong with it? ( One for forum root and one for PhotoPlog ) Code: <Directory "/var/www/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 /
RewriteCond %{HTTP_HOST} !^malesopranos\.com
RewriteRule (.*) http://malesopranos.com/$1 [L,R=301]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|redir\.php)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ vbseo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]
####Charset
AddDefaultCharset Off
####Gzip
<IfModule mod_rewrite.c>
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*)(js|css)$ redir.php?file=$1$2&type=$2 [L]
</IfModule>
####ETags
FileETag None
####Expires
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/gif A2592000
ExpiresByType image/jpeg A2592000
ExpiresByType image/png A2592000
ExpiresByType application/x-shockwave-flash A2592000
ExpiresByType text/css A2592000
ExpiresByType application/x-javascript A2592000
</IfModule>
</Directory>
<Directory "/var/www/html/gallery">
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} .php$ [OR]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /vbseo.php?vbseourl=$1&vbseorelpath=gallery/ [L,QSA]
</Directory>
|
|
#13
| |||
| |||
|
I've moved to a new server with more RAM. Can you please see if it's any faster now?
|
|
#14
| |||
| |||
|
Please try! |
|
#15
| ||||
| ||||
|
still not fast, but WAY better than before
|
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How fast does it kick in? | freelunchroom | General Discussion | 3 | 02-29-2008 06:52 PM |
| Help Needed... Please help me out fast. | desibollywood | Pre-Sales Questions | 3 | 05-14-2007 07:32 PM |