PHPackages                             andersundsehr/ssi-include - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. andersundsehr/ssi-include

ActiveTypo3-cms-extension[Utility &amp; Helpers](/categories/utility)

andersundsehr/ssi-include
=========================

Allows to periodically create ssi includes from anders und sehr GmbH

3.0.0(2mo ago)010.1k↓64.3%[1 issues](https://github.com/andersundsehr/ssi_include/issues)1GPL-3.0-or-laterPHPPHP ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0CI passing

Since Feb 16Pushed 2mo ago1 watchersCompare

[ Source](https://github.com/andersundsehr/ssi_include)[ Packagist](https://packagist.org/packages/andersundsehr/ssi-include)[ RSS](/packages/andersundsehr-ssi-include/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (10)Dependencies (18)Versions (26)Used By (1)

[![CI](https://github.com/andersundsehr/ssi_include/actions/workflows/tasks.yml/badge.svg)](https://github.com/andersundsehr/ssi_include/actions/workflows/tasks.yml)[![codecov](https://camo.githubusercontent.com/61db31934334f0bcd9dec80d1480fff8954af467c741578679a2b70dd881dc78/68747470733a2f2f636f6465636f762e696f2f6769746875622f616e64657273756e64736568722f7373695f696e636c7564652f6272616e63682f6d61696e2f67726170682f62616467652e737667)](https://app.codecov.io/github/andersundsehr/ssi_include)

EXT:ssi\_include
================

[](#extssi_include)

This Extension will help you to update your Menu's and other Partials faster if they are rendered the Same over all your Pages.

It uses the SSI technique to include Partials without rendering at that moment.
It Caches the files inside typo3temp/tx\_ssiinclude/ so it will reused the same partial for every request.
The Partials will be different for the site Configuration and the sys\_langauge and the name you will give the Partial.

Requirements:
-------------

[](#requirements)

- TYPO3 &gt;=10
- SSI enabled on Server
- SSI errors disabled (otherwise there will be an error in your Backend)

Installation
------------

[](#installation)

`composer req andersundsehr/ssi-include`

### enable SSI in webserver

[](#enable-ssi-in-webserver)

You need to enable SSI on your Webserver:

Tested only with nginx. Should work with apache,

in your fastcgi part of your config:

```
location ~ \.php$ {
  # add next 2 lines:
  ssi on; #this must be on
  ssi_silent_errors on; #this should be on

  fastcgi_split_path_info ^(.+\.php)(/.+)$;
  fastcgi_pass php;
  include fastcgi_params;
  fastcgi_param SCRIPT_FILENAME $request_filename;
  fastcgi_read_timeout 600;
}
```

If you use **staticfilecache**, you should use it ♥️
you need to add the ssi config in there as well:

```
...

location @sfc {
  # add next 2 lines:
  ssi on; #this must be on
  ssi_silent_errors on; #this should be on

  ...

  charset utf-8;
  default_type text/html;
  try_files /typo3temp/tx_staticfilecache/https_${host}_443${uri}/index /typo3temp/tx_staticfilecache/${scheme}_${host}_${server_port}${uri}/index =405;
}

...
```

And now the fun part. You can replace any partial rendering with the ViewHelper `s:renderInclude`.
That Partial will only be rendered once every 5 minutes for the complete Site (Site Configuration Site (not Page)).
The only differentiation will be done by **site config**, **language** and the provided **name**.
Optionally, you can add **cacheLifeTime** to define the lifetime of the partial in seconds and **cacheTags** to invalidate the cache by flushByTags. If you include want to render the same partial with diffrent arguments it will still be the same content if you have the same name.

#### before:

[](#before)

```

```

#### after:

[](#after)

```

```

### The Cache options

[](#the-cache-options)

#### storeData

[](#storedata)

If you want to store the data in the cache to receive by get. This defaults to on, but if you want to spare some space you can disable it.

#### ssiIncludeDir

[](#ssiincludedir)

Public directory where the SSI files are stored.

### Using the LazyDataProcessor to increase the Performance even more.

[](#using-the-lazydataprocessor-to-increase-the-performance-even-more)

#### before:

[](#before-1)

```
10 = FLUIDTEMPLATE
10 {
  #...
  100 = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor
  100 {
    #... Menu Processor Config
  }
  200 = AUS\AusProject\DataProcessing\SpecialProcessor
  #...
}
```

#### after:

[](#after-1)

```
10 = FLUIDTEMPLATE
10 {
  #...
  100 = AUS\SsiInclude\DataProcessing\LazyDataProcessor
  100.proxiedProcessor = TYPO3\CMS\Frontend\DataProcessing\MenuProcessor
  100.proxiedProcessor {
    #... Menu Processor Config
  }

  200 = AUS\SsiInclude\DataProcessing\LazyDataProcessor
  200.proxiedProcessor = AUS\AusProject\DataProcessing\SpecialProcessor
  200.variables = specialVar
  # the LazyDataProcessor needs to know that variable name should be proxied.
  # So we need to tell him if it is not configured inside the proxiedProcessor.as setting.

  #...
}
```

Now the Setup is done 😊

with ♥️ from anders und sehr GmbH
=================================

[](#with-️-from-anders-und-sehr-gmbh)

> If something did not work 😮
> or you appreciate this Extension 🥰 let us know.

> We are hiring

###  Health Score

55

—

FairBetter than 97% of packages

Maintenance87

Actively maintained with recent releases

Popularity24

Limited adoption so far

Community17

Small or concentrated contributor base

Maturity77

Established project with proven stability

 Bus Factor1

Top contributor holds 54.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~90 days

Total

18

Last Release

65d ago

Major Versions

1.1.0 → 2.0.02024-10-08

2.2.0 → 3.0.02026-04-30

PHP version history (5 changes)1.0.0PHP ~7.4.0 || ~8.0.0 || ~8.1.0

1.0.3PHP ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0

1.1.0PHP ~8.1.0 || ~8.2.0 || ~8.3.0

2.2.0PHP ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0

3.0.0PHP ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/471387?v=4)[Matthias Vogel](/maintainers/Kanti)[@Kanti](https://github.com/Kanti)

![](https://www.gravatar.com/avatar/ce27306c234536251754f00414959671d4a775e9cf57cce2f5ea1dca158183d6?d=identicon)[andersundsehr](/maintainers/andersundsehr)

---

Top Contributors

[![weakbit](https://avatars.githubusercontent.com/u/12049749?v=4)](https://github.com/weakbit "weakbit (35 commits)")[![Kanti](https://avatars.githubusercontent.com/u/471387?v=4)](https://github.com/Kanti "Kanti (15 commits)")[![aus-DominikHalle](https://avatars.githubusercontent.com/u/70956826?v=4)](https://github.com/aus-DominikHalle "aus-DominikHalle (6 commits)")[![forxec](https://avatars.githubusercontent.com/u/54136194?v=4)](https://github.com/forxec "forxec (6 commits)")[![CamillH](https://avatars.githubusercontent.com/u/40384365?v=4)](https://github.com/CamillH "CamillH (2 commits)")

---

Tags

cmshacktoberfestphpssitypo3

### Embed Badge

![Health badge](/badges/andersundsehr-ssi-include/health.svg)

```
[![Health](https://phpackages.com/badges/andersundsehr-ssi-include/health.svg)](https://phpackages.com/packages/andersundsehr-ssi-include)
```

###  Alternatives

[friendsoftypo3/content-blocks

TYPO3 CMS Content Blocks - Content Types API | Define reusable components via YAML

103519.9k53](/packages/friendsoftypo3-content-blocks)[brotkrueml/schema

Embedding schema.org vocabulary - API and view helpers for schema.org markup

34653.7k16](/packages/brotkrueml-schema)[pagemachine/typo3-formlog

Form log for TYPO3

23238.6k8](/packages/pagemachine-typo3-formlog)[fluidtypo3/flux

The flux package from FluidTYPO3

1501.0M25](/packages/fluidtypo3-flux)[eliashaeussler/typo3-form-consent

Extension for TYPO3 CMS that adds double opt-in functionality to EXT:form

1595.5k](/packages/eliashaeussler-typo3-form-consent)[typo3/cms-fluid-styled-content

TYPO3 CMS Fluid Styled Content - Fluid templates for TYPO3 content elements.

229.4M389](/packages/typo3-cms-fluid-styled-content)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
