Skip to content
prashants edited this page Dec 18, 2014 · 9 revisions

Welcome to the Webzash wiki!

General FAQ

Q1. How do I run webzash on domain root ?

Step 1. Comment out everything in app/Plugin/Webzash/Config/routes.php

Step 2. Comment out both routes in line 27 and 31 in app/Config/routes.php and add the following lines after that.

Router::connect('/:controller/:action/*', array('plugin' => 'webzash'));
Router::connect('/:controller/*', array('plugin' => 'webzash', 'action' => 'index'));`
Router::connect('/*', array('plugin' => 'webzash', 'controller' => 'dashboard', 'action' => 'index'));
Clone this wiki locally