PHPackages                             mukurtu/mukurtu - 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. [Admin Panels](/categories/admin)
4. /
5. mukurtu/mukurtu

ActiveDrupal-profile[Admin Panels](/categories/admin)

mukurtu/mukurtu
===============

Mukurtu CMS Drupal Installation Profile

11.3.x-dev(1mo ago)29550↑81.8%10[196 issues](https://github.com/MukurtuCMS/Mukurtu-CMS/issues)[8 PRs](https://github.com/MukurtuCMS/Mukurtu-CMS/pulls)PHPCI failing

Since Dec 18Pushed 1w ago6 watchersCompare

[ Source](https://github.com/MukurtuCMS/Mukurtu-CMS)[ Packagist](https://packagist.org/packages/mukurtu/mukurtu)[ RSS](/packages/mukurtu-mukurtu/feed)WikiDiscussions main Synced 3w ago

READMEChangelog (10)Dependencies (203)Versions (410)Used By (0)

[![Mukurtu CI Tests](https://github.com/MukurtuCMS/Mukurtu-CMS/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/MukurtuCMS/Mukurtu-CMS/actions/workflows/build-and-test.yml)

[![Mukurtu Logo](https://camo.githubusercontent.com/1a50afdb0dcef037f738752fade9588c846047d6e6278af0625c179a68fe0cfa/68747470733a2f2f6d756b757274752e6f72672f77702d636f6e74656e742f75706c6f6164732f323031372f30322f63726f707065642d4d756b757274752d6463383633332e706e67)](https://camo.githubusercontent.com/1a50afdb0dcef037f738752fade9588c846047d6e6278af0625c179a68fe0cfa/68747470733a2f2f6d756b757274752e6f72672f77702d636f6e74656e742f75706c6f6164732f323031372f30322f63726f707065642d4d756b757274752d6463383633332e706e67)

Mukurtu CMS
===========

[](#mukurtu-cms)

To learn more about Mukurtu CMS and the larger Mukurtu community, visit [mukurtu.org](https://mukurtu.org/).

**Note: This version of Mukurtu CMS is currently under active development and is subject to daily change. Only use for testing and feedback purposes.**

Requirements
------------

[](#requirements)

- The necessary database server, web server, and PHP installed that meet [modern Drupal requirements](https://www.drupal.org/docs/system-requirements)
    - Currently only PHP 8.3 is supported. Support for 8.4 will be added later.
    - Currently MariaDB or MySQL is supported. PostGRES is not.
    - the Mukurtu Team does our internal work with nginx. Apache SHOULD work fine, but we have not tested it extensively.
- [Composer](https://getcomposer.org/)
- To generate PDF thumbnails, [poppler-utils](https://pypi.org/project/poppler-utils/) must be installed on the server.
- To generate thumbnails for uploaded video files, [FFmpeg](https://ffmpeg.org/) must be installed on the server.
- For local development, we encourage using [Docker](https://ddev.readthedocs.io/en/stable/users/install/docker-installation/) and [DDEV](https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/) (which includes composer)

Install Mukurtu with DDEV
-------------------------

[](#install-mukurtu-with-ddev)

Using DDEV is the easiest way to get up and running with Mukurtu locally.

- Download and install [DDEV](https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/)
- Make a new folder in which to work and initialize a DDEV project inside it. Run the following commands to download and install Mukurtu.

```
mkdir mukurtu
cd mukurtu
ddev config --project-type=drupal --docroot=web
# Optional but recommended: install pdftotext inside the DDEV container:
echo "RUN sudo apt -qq update; sudo apt install poppler-utils -y;" > .ddev/web-build/Dockerfile.pdftotext
ddev start
ddev composer create-project mukurtu/mukurtu-template:dev-main
ddev drush si --site-name=Mukurtu --account-name=admin --account-pass=admin
ddev launch

```

- If planning to develop on the Mukurtu CMS installation profile, follow the [additional installation steps to connect a Git checkout to the new project](https://github.com/MukurtuCMS/Mukurtu-CMS/wiki).

Installing Mukurtu CMS with Composer
------------------------------------

[](#installing-mukurtu-cms-with-composer)

If installing directly on a web host that has a command line interface, you can install Mukurtu via composer.

- First, [install composer](https://getcomposer.org/download/). If you do not have it already, it can be downloaded into a directory with the following:

```
wget https://raw.githubusercontent.com/composer/getcomposer.org/main/web/installer -O - -q | php -- --quiet
# Ideally, move composer into an executable path such as /usr/local/bin/composer.
# But for use only within the current directory, just rename it.
mv composer.phar composer

```

- Install Mukurtu through composer with the following commands:

```
mkdir mukurtu
cd mukurtu
composer create-project mukurtu/mukurtu-template:dev-main .

```

- Set your web server to serve the "web" folder (e.g. `mukurtu4/web`)
- Install Drupal as normal by opening the site in your web browser, the Mukurtu profile distribution will automatically be used.

Post-installation Steps
-----------------------

[](#post-installation-steps)

### Set up private files

[](#set-up-private-files)

Access control in Mukurtu depends on the Drupal private file system. You must configure the `file_private_path` setting in settings.php.

- Create a folder outside the `web` directory, such as `private_files`.
- Open `web/sites/default/settings.php` and modify the `$settings['file_private_path']` line, such as the following:

```
// Specify a private files path.
$settings['file_private_path'] = '../../private_files';
```

- Clear your site cache by visiting `admin/config/development/performance` within your Mukurtu site and clicking "Clear all caches".
- Confirm the private files directory is found by visiting `admin/config/media/file-system` within your Mukurtu site.

### Install pdftotext

[](#install-pdftotext)

The ability to parse PDFs is dependent on the `pdftotext` command line tool. This can be installed in ddev with:

```
echo "RUN sudo apt -qq update; sudo apt install poppler-utils -y;" > .ddev/web-build/Dockerfile.pdftotext
ddev restart
```

Or, if hosting your own server with:

```
sudo apt install poppler-utils
```

### Updates

[](#updates)

To update your local DDEV environment to a newer version of main, run `ddev composer upgrade`. Note that there may be data changes, so use at your own risk.

Contributing
------------

[](#contributing)

Mukurtu CMS v4 is under active development. Code contribution and feedback is welcome, and can be submitted in [our issues](https://github.com/MukurtuCMS/Mukurtu-CMS/issues) or you can contact us at .

###  Health Score

44

—

FairBetter than 91% of packages

Maintenance76

Regular maintenance activity

Popularity30

Limited adoption so far

Community24

Small or concentrated contributor base

Maturity40

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~8 days

Recently: every ~2 days

Total

21

Last Release

27d ago

Major Versions

4.0.0-beta15.1 → 11.3.x-dev2026-05-25

### Community

Maintainers

![](https://www.gravatar.com/avatar/3c6580067ea88ae5baccec426b182c1d19e3006193611bbee6d65ab994a85533?d=identicon)[quicksketch](/maintainers/quicksketch)

![](https://www.gravatar.com/avatar/90abe411d95853e64886c24949491ab922e15cca01d70d5d7070451ef891e967?d=identicon)[michael-wynne-wsu](/maintainers/michael-wynne-wsu)

---

Top Contributors

[![taylor-steve](https://avatars.githubusercontent.com/u/4421877?v=4)](https://github.com/taylor-steve "taylor-steve (1197 commits)")[![nick-deer](https://avatars.githubusercontent.com/u/43937352?v=4)](https://github.com/nick-deer "nick-deer (720 commits)")[![michael-wynne-wsu](https://avatars.githubusercontent.com/u/88502274?v=4)](https://github.com/michael-wynne-wsu "michael-wynne-wsu (550 commits)")[![m4olivei](https://avatars.githubusercontent.com/u/191049?v=4)](https://github.com/m4olivei "m4olivei (446 commits)")[![pjudge](https://avatars.githubusercontent.com/u/15730222?v=4)](https://github.com/pjudge "pjudge (182 commits)")[![Javi-er](https://avatars.githubusercontent.com/u/141685?v=4)](https://github.com/Javi-er "Javi-er (121 commits)")[![quicksketch](https://avatars.githubusercontent.com/u/100206?v=4)](https://github.com/quicksketch "quicksketch (118 commits)")[![alexmerrill](https://avatars.githubusercontent.com/u/326925?v=4)](https://github.com/alexmerrill "alexmerrill (70 commits)")[![bronzehedwick](https://avatars.githubusercontent.com/u/637174?v=4)](https://github.com/bronzehedwick "bronzehedwick (53 commits)")[![eckmo](https://avatars.githubusercontent.com/u/36510742?v=4)](https://github.com/eckmo "eckmo (43 commits)")[![joelle-birano-wsu](https://avatars.githubusercontent.com/u/201841779?v=4)](https://github.com/joelle-birano-wsu "joelle-birano-wsu (10 commits)")[![jonscottwsu](https://avatars.githubusercontent.com/u/172308623?v=4)](https://github.com/jonscottwsu "jonscottwsu (7 commits)")[![christa-kavanagh-wsu](https://avatars.githubusercontent.com/u/201645318?v=4)](https://github.com/christa-kavanagh-wsu "christa-kavanagh-wsu (4 commits)")[![rtrvrtg](https://avatars.githubusercontent.com/u/587242?v=4)](https://github.com/rtrvrtg "rtrvrtg (1 commits)")[![brian-wsu](https://avatars.githubusercontent.com/u/139388875?v=4)](https://github.com/brian-wsu "brian-wsu (1 commits)")

### Embed Badge

![Health badge](/badges/mukurtu-mukurtu/health.svg)

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

###  Alternatives

[az-digital/az_quickstart

Arizona Quickstart

52265.6k3](/packages/az-digital-az-quickstart)[govcms/govcms

GovCMS Drupal Distribution

196100.6k3](/packages/govcms-govcms)[thunder/thunder-distribution

The thunder distribution

51653.5k3](/packages/thunder-thunder-distribution)[voidagency/vactory_starter_kit

Vactory is a custom Drupal profile which is developed and released by VOID Agency.

1020.9k](/packages/voidagency-vactory-starter-kit)[farmos/farmos

A web-based farm record keeping application.

1.3k7.0k1](/packages/farmos-farmos)[goalgorilla/open_social

Open Social is a distribution for building social communities and intranets.

190461.9k](/packages/goalgorilla-open-social)

PHPackages © 2026

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