PHPackages                             houseoftech/cakephp-meta - 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. houseoftech/cakephp-meta

ActiveCakephp-plugin[Utility &amp; Helpers](/categories/utility)

houseoftech/cakephp-meta
========================

SEO Plugin for CakePHP 2.x which manages title, meta description, and meta keywords for each page in your application.

3.0.0(9y ago)41152[1 issues](https://github.com/houseoftech/cakephp-meta/issues)MITPHPPHP &gt;=5.3

Since Mar 20Pushed 2mo ago3 watchersCompare

[ Source](https://github.com/houseoftech/cakephp-meta)[ Packagist](https://packagist.org/packages/houseoftech/cakephp-meta)[ Docs](http://github.com/houseoftech/cakephp-meta)[ RSS](/packages/houseoftech-cakephp-meta/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (6)Dependencies (1)Versions (8)Used By (0)

\#Meta Plugin for CakePHP 2.x

Meta is an SEO Plugin for CakePHP 2.x which manages title, meta description, and meta keywords for each page in your application.

For CakePHP 3.x compatible version see the [3.x branch](https://github.com/houseoftech/cakephp-meta/tree/3.x).

---

\##Installation

1. Install manually by putting the contents of this repository in a folder named Meta in your App's Plugin folder. Install with composer by adding the following to your composer.json:

    ```
    "require": {
    	"houseoftech/cakephp-meta": "2.0.0"
    }

    ```
2. Add the meta table to your database.

    ```
    CREATE TABLE `meta` (
    	`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
    	`template` tinyint(1) NOT NULL DEFAULT '0',
    	`path` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
    	`controller` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
    	`action` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
    	`pass` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
    	`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
    	`description` text COLLATE utf8_unicode_ci,
    	`keywords` text COLLATE utf8_unicode_ci,
    	`created` datetime DEFAULT NULL,
    	`modified` datetime DEFAULT NULL,
    	PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci PACK_KEYS=0 ;

    ```
3. Add the component to your AppController.

    ```
    public $components = array('Meta.Meta');

    ```
4. Call the Meta element in your layout's head.

    ```

    ```

\##How to Use

Navigate to the Meta admin page: *http://your\_domain/admin/meta/meta*

You can add records manually via the form or you can use the link called 'Find New Paths'. This is an initializer which searches your existing pages located under Views/Pages/ and the pages table in your database. The initializer will attempt to extract descriptions as well.

\##Meta Record Fields

Given a URL such as *http://your\_domain/pages/My-Wonderful-Page-In-Which-I-Explain-All-Things* we can break it down to the following fields stored in the meta table.

\###Path

This is for your benefit, so you know which page it corresponds to. */pages/My-Wonderful-Page-In-Which-I-Explain-All-Things*

To create a template use an asterisk as a wildcard. /articles/view/\* would match any Path beginning with /articles/view/

\###Controller *pages*

\###Action *display*

\###Pass *My-Wonderful-Page-In-Which-I-Explain-All-Things*

When creating a template, leave this field blank.

\###Title *The Explanation of All Things*

\###Description *All things need some sort of explanation. Explaining all things is not always easy, but I will attempt to do so anyways.*

\###Keywords *all things, explanation, explaining, all things explained, explanation of all things*

\###Templates When creating a template, you can use variables in the Title, Description, and Keywords fields. Simply use the variable name inside brackets {}.

The available variables depend on the Controller, but most Pages will have available the following list.

- {id} - Automatically assigned integer representing a record in a database.
- {name} - The human readable title of a Page or Post.
- {created} - The date and time the record was first created in format yyyy-mm-dd hh:mm:ss.
- {modified} - The date and time the record was last updated in format yyyy-mm-dd hh:mm:ss.

\##License This project is licensed under the terms of the MIT license.

###  Health Score

38

—

LowBetter than 85% of packages

Maintenance53

Moderate activity, may be stable

Popularity15

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 94.6% 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 ~110 days

Recently: every ~73 days

Total

7

Last Release

3419d ago

Major Versions

0.7.1 → 2.0.02016-03-22

2.0.0 → 3.0.02017-01-06

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/297458?v=4)[Corie Slate](/maintainers/houseoftech)[@houseoftech](https://github.com/houseoftech)

---

Top Contributors

[![houseoftech](https://avatars.githubusercontent.com/u/297458?v=4)](https://github.com/houseoftech "houseoftech (35 commits)")[![mikedigital](https://avatars.githubusercontent.com/u/1558270?v=4)](https://github.com/mikedigital "mikedigital (2 commits)")

---

Tags

plugincakephpmeta

### Embed Badge

![Health badge](/badges/houseoftech-cakephp-meta/health.svg)

```
[![Health](https://phpackages.com/badges/houseoftech-cakephp-meta/health.svg)](https://phpackages.com/packages/houseoftech-cakephp-meta)
```

###  Alternatives

[cakedc/tiny-mce

TinyMCE Plugin for CakePHP

10790.2k](/packages/cakedc-tiny-mce)[rochamarcelo/cake-pimple-di

A cakephp plugin for dependency injection based on Pimple library

12176.8k](/packages/rochamarcelo-cake-pimple-di)

PHPackages © 2026

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