common/config
файл main.local
'components'
вставить следующий код(или заменить существующий):'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail',
'useFileTransport' => true,
'messageConfig' => [
'from' => ['support@example.com' => 'test'],
],
],
что при 'useFileTransport' => true,
mailer будет складывать письма в runtime/mail
common/config
файл main.local
'components'
вставить следующий код(или заменить существующий):'mailer' => [
'class' => 'yii\swiftmailer\Mailer',
'viewPath' => '@common/mail',
'useFileTransport' => true,
'messageConfig' => [
'from' => ['support@example.com' => 'test'],
],
],
defined('YII_DEBUG') or define('YII_DEBUG', false);
defined('YII_ENV') or define('YII_ENV', 'prod');
defined('YII_DEBUG') or define('YII_DEBUG', true);
defined('YII_ENV') or define('YII_ENV', 'dev');
configFile: '../frontend/config/codeception-local.php'
class TestForm extends Model
{
public $propery;
public $property2;
public function save()
{
$model = new ModelActiveRecord;
$model2 = new AnotherModelActiveRecord;
$model->property = $this->property;
$model->property2 = $this->property2;
$model->save();
$model2->save();
}
//
public function TestAction()
{
$model = newTestForm;
}
//
И что за дебильные конфигурации в htaccess? Все роуты настраиваются непосредственно в конфигах приложений