我通过ssh将laravel应用程序上传到数字海洋,并已完成所有必要的安装,上传后,只有我的家庭路线和登录页面有效
home-http://167.99.192.194/ 登录-http://167.99.192.194/admin
我使用修补匠创建了一个用户,但是在输入详细信息后,它给了我500个服务器错误
我尝试过缓存,路由清除,基本上是StackOverflow上的所有内容
错误日志:
production.ERROR:SQLSTATE [HY000] [1698]用户的访问被拒绝 'root'@'localhost'(SQL:从
users
中选择*,其中users
,其中2019-10-10 11:18:45]生产。错误:找不到视图[live_search]。 {“ exception”:“ [object](InvalidArgumentException(code:0):视图 找不到[live_search]。在 /var/www/laravel/vendor/laravel/framework/src/Illuminate/View/FileViewFinder.php:137) [stacktrace]
我的路线:
Route::get('/', function () {
return view('welcome');
});
Route::get('/livesearch', 'LiveSearch@index');
Route::get('/livesearch/action', 'LiveSearch@action')->name('livesearch.action');
Auth::routes();
Route::get('/admin', 'HomeController@index')->name('home');
Route::get('/testhome', 'HomeController@test')->name('test');
Route::resource('/admin/departments', 'Admin\DepartmentsController', ['as'=>'admin']);
Route::resource('/admin/employees', 'Admin\EmployeeController', ['as'=>'admin']);
我希望输入按钮可以转到下一页,但这会给我500个服务器错误