설치 문제..
유저 이미지
분쟁제로
- 2017.04.26
- 조회수 542
- 댓글수 8
web_installer 로 설치시
step3단계에서 누르면
파일을 웹(/www)에 모두 업로드 한 이후,
site.com 으로 접속하면
```javascript
class InstallServiceProvider extends ServiceProvider {
/** * Service Provider Boot * * @return void */ public function boot() { Route::get('/', function() { return redirect('/web_installer'); });
```
위 문구에 의해서 /web_installer 로 가야할텐데 이것부터 안되네요.
- bootstrap/cache 디렉토리 권한 설정
- config/production 디렉토리 권한 설정
- plugins 디렉토리 권한 설정
- storage 디렉토리 권한 설정
- vendor 디렉토리 권한 설정
- composer.lock 파일 권한 설정
디렉토리 권한(하위까지)은 777로 바꾸고 작업했습니다.
* 그래서 주소창에 직접 web_installer로 접속해서 설치작업 따라했는데 step3에서
Route::post('/install/post', '\App\Http\Controllers\InstallController@install');
이 문구가 안먹혀 다음단계로 못가는듯합니다.
0개 댓글