Improving Page Speed Grade

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.

~~![](<URL url=)http://wbxpress.com/wp-content/uploads/2013/05/5.png" />

~~![](<URL url=)http://wbxpress.com/wp-content/uploads/2013/05/6.png" />

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

`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.[/tt][/code][/tt]

~~~~

4 Replies

Have you installed php apc? That will improve php's processing time quite a bit.

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.

@obs:

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.

@redburn:

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)

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct