Commit 729446ed by resurtm

Fixes #554. Incorrect alias setup.

parent d182ce1d
<?php <?php
Yii::setAlias('common', '../');
Yii::setAlias('frontend', '../../frontend'); Yii::setAlias('common', __DIR__ . '/../');
Yii::setAlias('backend', '../../frontend'); Yii::setAlias('frontend', __DIR__ . '/../../frontend');
Yii::setAlias('backend', __DIR__ . '/../../backend');
return array( return array(
'adminEmail' => 'admin@example.com', 'adminEmail' => 'admin@example.com',
...@@ -15,4 +17,4 @@ return array( ...@@ -15,4 +17,4 @@ return array(
'username' => 'root', 'username' => 'root',
'password' => '', 'password' => '',
), ),
); );
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment