2017 © Pedro Peláez
 

project uthando

Basic blog application

image

uthando-cms/uthando

Basic blog application

  • Saturday, July 28, 2018
  • by shaunfreeman
  • Repository
  • 1 Watchers
  • 0 Stars
  • 35 Installations
  • HTML
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 47 Versions
  • 0 % Grown

The README.md

Uthando Cms

Build Status Test Coverage Code Climate Dependency Status Packagist, (*1)

Introduction

This is a simple, base application for Uthando CMS. You can use it without any of the other modules as a base ZF2 MVC application as a base start for your projects., (*2)

Installation using Composer

The easiest way to install Uthando CMS is to use Composer. If you don't have it already installed, then please install as per the documentation., (*3)

Install Uthando CMS:, (*4)

composer create-project uthando-cms/uthando path/to/install

// if you are installing on a production server you may wish install only the required dependencies
composer create-project --no-dev uthando-cms/uthando path/to/install

Installation using a tarball with a local Composer

If you don't have composer installed globally then another way to install Uthando CMS is to download the tarball and install it:, (*5)

  1. Download the tarball, extract it and then install the dependencies with a locally installed Composer:, (*6)

    cd my/project/dir
    curl -#L https://github.com/uthando-cms/uthando/tarball/master | tar xz --strip-components=1
  2. Download composer into your project directory and install the dependencies:, (*7)

    curl -s https://getcomposer.org/installer | php
    php composer.phar install

If you don't have access to curl, then install Composer into your project as per the documentation., (*8)

Installing extra modules and libraries

There are a number of modules you can add and these will get you up and running very quickly. The official Uthando CMS modules are:, (*9)

  • Uthando Admin
  • Uthando Article
  • Uthando Business List
  • Uthando Common
  • Uthando Contact
  • Uthando DomPdf
  • Uthando Events
  • Uthando File Manager
  • Uthando Mail
  • Uthando Navigation
  • Uthando News
  • Uthando Newsletter
  • Uthando Portfolio
  • Uthando Session Manager
  • Uthando Testimonial
  • Uthando Theme Manager
  • Uthando Twitter
  • Uthando User

Web server setup

PHP CLI server

The simplest way to get started if you are using PHP 5.4 or above is to start the internal PHP cli-server in the root directory:, (*10)

php -S 0.0.0.0:8080 -t public/ public/index.php

This will start the cli-server on port 8080, and bind it to all network interfaces., (*11)

Note: The built-in CLI server is for development only., (*12)

Apache setup

To setup apache, setup a virtual host to point to the public/ directory of the project and you should be ready to go! It should look something like below:, (*13)

<VirtualHost *:80>
    ServerName zf2-app.localhost
    DocumentRoot /path/to/uthando-cms/public
    <Directory /path/to/zf2-app/public>
        DirectoryIndex index.php
        AllowOverride All
        Order allow,deny
        Allow from all
        <IfModule mod_authz_core.c>
        Require all granted
        </IfModule>
    </Directory>
</VirtualHost>

Nginx setup

To setup nginx, open your /path/to/nginx/nginx.conf and add an include directive below into http block if it does not already exist:, (*14)

http {
    # ...
    include sites-enabled/*.conf;
}

Create a virtual host configuration file for your project under /path/to/nginx/sites-enabled/uthando-cms.localhost.conf it should look something like below:, (*15)

server {
    listen       80;
    server_name  zf2-app.localhost;
    root         /path/to/uthando-cms/public;

    location / {
        index index.php;
        try_files $uri $uri/ @php;
    }

    location @php {
        # Pass the PHP requests to FastCGI server (php-fpm) on 127.0.0.1:9000
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_param  SCRIPT_FILENAME /path/to/uthando-cms/public/index.php;
        include fastcgi_params;
    }
}

Restart the nginx, now you should be ready to go!, (*16)

The Versions

18/07 2018

dev-master

9999999-dev http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

18/07 2018

2.4.2

2.4.2.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

07/07 2018

2.4.1

2.4.1.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

04/12 2017

2.4.0

2.4.0.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

12/10 2017

2.3.0

2.3.0.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

23/09 2017

2.2.4

2.2.4.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

19/09 2017

2.2.3

2.2.3.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

15/09 2017

2.2.2

2.2.2.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

14/09 2017

2.2.1

2.2.1.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

14/09 2017

2.2.0

2.2.0.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

04/02 2016

2.0.1

2.0.1.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

18/11 2015

2.0.0

2.0.0.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

07/07 2015

1.9.2

1.9.2.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

29/06 2015

1.9.1

1.9.1.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando

28/06 2015

1.9.0

1.9.0.0 http://shaunfreeman.name/

Base App for Uthando CMS

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

framework zf2 cms uthando