Linode Forum
Linode Community Forums
 FAQFAQ    SearchSearch    MembersMembers      Register Register 
 LoginLogin [ Anonymous ] 
Post new topic  Reply to topic
Author Message
PostPosted: Mon May 06, 2013 1:14 pm 
Offline
Junior Member

Joined: Fri Apr 26, 2013 3:58 am
Posts: 23
I have hosted 2 websites; one is in Wordpress and another one is in phpBB. I got the following scores from gtmetrix.com for the sites respectively.

Image
Image

I have very basic plugins/mods installed in both the sites. No caching/ no SEO tools/ no SEO mods. Only .httaccess rules are applied as follows:

wordpress
Code:
RedirectMatch 301 ^/([0-9]{4})/([0-9]{2})/([^/]+).html$ http://mywebsite.com/$3

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

# END WordPress

<Files wp-config.php>
order allow,deny
deny from all
</Files>

# directory browsing
Options All -Indexes

<Files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</Files>


phpBB:
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

<IfModule mod_expires.c>

# Enable expirations
ExpiresActive On

# Default directive
ExpiresDefault "access plus 1 month"

</IfModule>

# directory browsing
Options All -Indexes

<Files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</Files>


What may be the possible reason for such a low score in phpBB site? I have applied to "Leverage Browser Caching Rules", but it is not in effect actually.

Please help me to improve my score.

Sorry, if I am Off-topic.


Top
   
PostPosted: Mon May 06, 2013 2:04 pm 
Offline
Senior Member

Joined: Sun Mar 07, 2010 7:47 pm
Posts: 1970
Website: http://www.rwky.net
Location: Earth
Have you installed php apc? That will improve php's processing time quite a bit.

_________________
Paid support
How to ask for help
1. Give details of your problem
2. Post any errors
3. Post relevant logs.
4. Don't hide details i.e. your domain, it just makes things harder
5. Be polite or you'll be eaten by a grue


Top
   
PostPosted: Mon May 06, 2013 3:16 pm 
Offline
Newbie

Joined: Wed May 01, 2013 6:25 am
Posts: 3
GTmetrix grades your page based on the given list of recommendations. Which recommendations do you score poorly on?

You may also want to run your sites through http://www.webpagetest.org/ and view the "Performance Review" report.


Top
   
PostPosted: Mon May 13, 2013 12:41 pm 
Offline
Junior Member

Joined: Fri Apr 26, 2013 3:58 am
Posts: 23
obs wrote:
Have you installed php apc? That will improve php's processing time quite a bit.

I am getting excellent speed with wordpress (primary site) without using any cache plugin / php APC.

But score is poor with phpBB (secondary site) only. So, it may be a tuning issue with phpBB. I fear installing php APC may reduce the performance of my main site. I may be completely wrong with this view.


Top
   
PostPosted: Mon May 13, 2013 12:45 pm 
Offline
Junior Member

Joined: Fri Apr 26, 2013 3:58 am
Posts: 23
redburn wrote:
Which recommendations do you score poorly on?


Here are the major recommendations to worth mention:-

Combine images using CSS sprites
Leverage browser caching
Add Expires headers
Use cookie-free domains
Configure entity tags (ETags)


Top
   
Display posts from previous:  Sort by  
Post new topic  Reply to topic


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum

Search for:
Jump to:  
RSS

Powered by phpBB® Forum Software © phpBB Group