gwa/multisite-directory-resolver

Adds filters that correct directory paths in a Wordpress multisite install with the WordPress installation in a custom subfolder.

v2.2.0 2016-01-06 19:57 UTC

README

Adds filters that correct directory paths in a Wordpress multisite install with the WordPress installation in a custom subfolder.

Master

Quality Score Build Status

Develop

Quality Score Build Status

Usage

Requirements

PHP 5.4.0 or above

Installation

Install through composer.

composer require gwa/multisite-directory-resolver

How to use

// project root: path/to/project
// wp install:   path/to/project/custom/install/path

// choose which resolver you like to use
// 1. MultisiteResolverManager::TYPE_FOLDER - Use only for sub folder url handling -> example.com/site1/../..
// 2. MultisiteResolverManager::TYPE_SUBDOMAIN - Use only for sub domain handling -> test.example.com

$mdr = new Gwa\Wordpress\MultisiteDirectoryResolver('custom/install/path', $resolver);
$mdr->init();

Set you cookie like this to resolve the wordpress multisite redirect Loop.

define('COOKIE_DOMAIN', $_SERVER['HTTP_HOST']);
define('ADMIN_COOKIE_PATH', '/');

Contributing

All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.

Fork the project, create a feature branch, and send us a pull request.

To ensure a consistent code base, you should make sure the code follows the Coding Standards which we borrowed from Symfony.

The easiest way to do make sure you're following the coding standard is to run vendor/bin/php-cs-fixer fix before committing.

If you would like to help take a look at the list of issues.

Authors

Great White Ark - bannert@greatwhiteark.com - http://www.greatwhiteark.com

License

Open-sourced software licensed under the MIT license