2017 © Pedro Peláez
 

library project

image

cubex/project

  • Thursday, November 28, 2013
  • by bajbnet
  • Repository
  • 6 Watchers
  • 1 Stars
  • 99 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Cubex Base Project

Setup your Apache Virtual Host Config INCLUDING "SetEnv CUBEX_ENV development" replacing development with your chosen environment. Cubex will automatically load {CUBEX_ENV}.ini from your conf directory and merge on top of defaults.ini, (*1)

<VirtualHost *:80>
  SetEnv CUBEX_ENV development

  DocumentRoot "project_path/public"
  ServerName cubex.local
  ServerAlias www.cubex.local
  ErrorLog "logs/cubex-error.log"
  CustomLog "logs/cubex-access.log" common

  RewriteEngine on
  RewriteRule ^(.*)$        /index.php?__path__=$1  [B,L,QSA]
</VirtualHost>

Recommended PHP Modules, (*2)

  • XCache 3 (APC & XCache are currently unstable with some PHP 5.4 features)

If you are unable to create a VHost, you can create a .htaccess file with the following information, (*3)

SETENV CUBEX_ENV development

RewriteEngine on
RewriteBase /
RewriteRule ^(.*)$        index.php?__path__=$1   [L,QSA]

The Versions

28/11 2013

dev-master

9999999-dev http://cubex.io

  Sources   Download

BSD-3-Clause

The Requires

 

by Gareth Evans