atomicptr/page_speed_plus

This package is abandoned and no longer maintained. No replacement package was suggested.

Improve your TYPO3 page speed by using common best practices and other shenanigans :).

Maintainers

👁 atomicptr

Package info

github.com/atomicptr/page_speed_plus

Type:typo3-cms-extension

pkg:composer/atomicptr/page_speed_plus

Statistics

Installs: 1 009

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 4

v0.4.0 2018-05-28 13:21 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT a46dbe54d7fceeeac23ee93659fcfd9ed2b7e245

htmlspeedfastPageSpeedfrontendTYPO3 CMShttp2server push

This package is auto-updated.

Last update: 2022-03-29 01:12:50 UTC


README

Improve your TYPO3 page speed by using common best practices and other shenanigans :).

Download

page_speed_plus on TER

Or just install it via composer:

$ composer require atomicptr/page_speed_plus

Features

Configuration

You can use the constants editor or just overwrite the TypoScript like this:

plugin.tx_page_speed_plus {
 settings {
 http2 {
 serverPushEnable = 1
 maxHeaderLength = 8190
 }

 htmlCompress {
 enable = 1
 }
 }
}

How to enable JavaScript compression

You can enable JavaScript compression by adding this to your configuration:

config.compressJs = 1

Other ways to improve your website performance

  • Set your FE compression level to 9 in the install tool (and also add this to your .htaccess)
    <FilesMatch "\.js\.gzip$">
     AddType "text/javascript" .gzip
    </FilesMatch>
    <FilesMatch "\.css\.gzip$">
     AddType "text/css" .gzip
    </FilesMatch>
    AddEncoding gzip .gzip
    
  • Optimize your images, this is REALLY important!

Support me

👁 Buy Me A Coffee

License

MIT