Skip to content
prashants edited this page Dec 20, 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'));

Q2. How do I change the branding of the application ?

Step 1. Change the layouts files default.ctp, user.ctp and admin.ctp in app/Plugin/Webzash/View/Layouts folder.

Step 2. Change the navigation bars defaultnavbar.ctp, usernavbar.ctp, adminnavbar.ctp in app/Plugin/Webzash/View/Elements folder.

Clone this wiki locally