vi保存文件有不同的选项,对应于不同的命令,你可以从下面的命令中选择一个需要的输入::wq 保存文件并退出vi, :w 保存文件但不退出vi,:w file 将修改另外保存到file中,不退出vi,:q 不保存文件,退出vi最后回车即可。想了解更多linux相关内容,请关注《linux就该这么学》官网。
2017-10-19
不会指令的,建议去看看Linux。可以下一个环境laragon,然后直接ctrl+Alt+T快捷直接输入命令,基本上不会出错,注意路径就行,跟着做会发现,输入命令,比你直接打开在输入要高级便捷的多
2017-10-19
需要加入一行代码 Schema::defaultStringLength(191); 加到
public function up()
{ Schema::defaultStringLength(191);
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->rememberToken();
});
}
public function up()
{ Schema::defaultStringLength(191);
Schema::create('users', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->rememberToken();
});
}
2017-10-10
554解决的原因是把1方法中的$message->from();$message->subject();$message->to();加上即可;
2017-10-09
Swift_TransportException thrown with message "Expected response code 250 but got code "501", with message "501 mail from address must be same as authorization user
按老师的代码发送html邮件时报错,把发件人和邮件主题加上就没事了
按老师的代码发送html邮件时报错,把发件人和邮件主题加上就没事了
2017-10-07
(1/1) Swift_TransportException
Expected response code 250 but got code "553", with message "553 Mail from must equal authorized user
Expected response code 250 but got code "553", with message "553 Mail from must equal authorized user
2017-10-07