forked from yiisoft/yii2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'hotfix/travis-memcached' into develop
- Loading branch information
Showing
236 changed files
with
3,772 additions
and
753 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,6 @@ Thumbs.db | |
|
||
# composer itself is not needed | ||
composer.phar | ||
|
||
# Mac DS_Store Files | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
use yii\helpers\Html; | ||
|
||
/** | ||
* @var yii\base\View $this | ||
* @var string $name | ||
* @var string $message | ||
* @var Exception $exception | ||
*/ | ||
|
||
$this->title = $name; | ||
?> | ||
<div class="site-error"> | ||
|
||
<h1><?php echo Html::encode($this->title); ?></h1> | ||
|
||
<div class="alert alert-danger"> | ||
<?php echo nl2br(Html::encode($message)); ?> | ||
</div> | ||
|
||
<p> | ||
The above error occurred while the Web server was processing your request. | ||
</p> | ||
<p> | ||
Please contact us if you think this is a server error. Thank you. | ||
</p> | ||
|
||
</div> |
12 changes: 3 additions & 9 deletions
12
apps/advanced/environments/dev/backend/config/main-local.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
<?php | ||
return array( | ||
'preload' => array( | ||
//'debug', | ||
), | ||
'modules' => array( | ||
// 'debug' => array( | ||
// 'class' => 'yii\debug\Module', | ||
// ), | ||
), | ||
'components' => array( | ||
'log' => array( | ||
'targets' => array( | ||
// array( | ||
// 'class' => 'yii\log\DebugTarget', | ||
// ) | ||
), | ||
), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 3 additions & 9 deletions
12
apps/advanced/environments/dev/frontend/config/main-local.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
<?php | ||
return array( | ||
'preload' => array( | ||
//'debug', | ||
), | ||
'modules' => array( | ||
// 'debug' => array( | ||
// 'class' => 'yii\debug\Module', | ||
// ), | ||
), | ||
'components' => array( | ||
'log' => array( | ||
'targets' => array( | ||
// array( | ||
// 'class' => 'yii\log\DebugTarget', | ||
// ) | ||
), | ||
), | ||
), | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
|
||
use yii\helpers\Html; | ||
|
||
/** | ||
* @var yii\base\View $this | ||
* @var string $name | ||
* @var string $message | ||
* @var Exception $exception | ||
*/ | ||
|
||
$this->title = $name; | ||
?> | ||
<div class="site-error"> | ||
|
||
<h1><?php echo Html::encode($this->title); ?></h1> | ||
|
||
<div class="alert alert-danger"> | ||
<?php echo nl2br(Html::encode($message)); ?> | ||
</div> | ||
|
||
<p> | ||
The above error occurred while the Web server was processing your request. | ||
</p> | ||
<p> | ||
Please contact us if you think this is a server error. Thank you. | ||
</p> | ||
|
||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.