前提・実現したいこと
Laravelで作成したアプリをHerokでデプロイしました。
AWS S3を使って画像をアップロードしたいのですが以下のようなエラーメッセージが表示されててしまいました。
発生している問題・エラーメッセージ
Error executing "PutObject" on "https://takamasa.s3.amazonaws.com/lx8HW80N1V0FbV801PnRXctT2MK5G88OqOSKfqKN.png"; AWS HTTP error: Client error: `PUT https://takamasa.s3.amazonaws.com/lx8HW80N1V0FbV801PnRXctT2MK5G88OqOSKfqKN.png` resulted in a `400 Bad Request` response: <?xml version="1.0" encoding="UTF-8"?> <Error><Code>AuthorizationHeaderMalformed</Code><Message>The authorization header (truncated...) AuthorizationHeaderMalformed (client): The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'us-east-2' - <?xml version="1.0" encoding="UTF-8"?> <Error><Code>AuthorizationHeaderMalformed</Code><Message>The authorization header is malformed; the region 'us-east-1' is wrong; expecting 'us-east-2'</Message><Region>us-east-2</Region><RequestId>28A0EBC02DEFF677</RequestId><HostId>1iU1JU6i14aQb01ldgyssDyUZltwmOtLbjgFhIQNXUmeETIDmINew6ldwtcHXAxkjyW2yPOr7oM=</HostId></Error>
該当のソースコード
上から順に、コントローラー、写真を投稿するフォーム、投稿した写真を表示するページのコードとなっております。
app/Http/Controllers/StoriesController.php
php
1<?php 2 3namespace App\Http\Controllers; 4 5use Illuminate\Http\Request; 6use App\Http\Controllers\Controller; 7use App\Story; 8use App\Profile; 9use Auth; 10use App\Posts; 11use App\History; 12use App\Attachment; 13use Carbon\Carbon; 14use Storage; 15 16class StoriesController extends Controller 17{ 18 19 public function __construct() 20 { 21 $this->middleware('auth'); 22 } 23 24 public function index(Request $request) 25 { 26 $images = Attachment::all(); 27 $cond_title = $request->cond_title; 28 if ($cond_title != '') { 29 $posts = Profile::where('title', $cond_title)->get(); 30 } else { 31 $posts = Profile::all(); 32 } 33 return view('stories.index2', compact('images','posts','cond_title')); 34 } 35 36 public function add() 37 { 38 return view('stories.create2'); 39 } 40 41 public function store(Request $request) 42 { 43 $form = $request->file('images'); 44 $d = new \DateTime(); 45 $d->setTimeZone(new \DateTimeZone('Asia/Tokyo')); 46 $dir = $d->format('Y/m'); 47 $path = Storage::disk('s3')->putFile('/',$form,'public'); 48 $data = $request->except('_token'); 49 50 foreach ($data['images'] as $k => $v) { 51 $filename = ''; 52 53 $attachments = Attachment::take(1)->orderBy('id', 'desc')->get(); 54 55 foreach ($attachments as $attachment) { 56 $filename = $attachment->id + 1 . '_' . $v->getClientOriginalName(); 57 } 58 unset($attachment); 59 60 if ($filename == false) { 61 $filename = 1 . '_' . $v->getClientOriginalName(); 62 } 63 $v->storeAs($path, $filename); 64 $attachment_data = [ 65 'path' => $path, 66 'name' => $filename 67 ]; 68 $a = new Attachment(); 69 $a->fill($attachment_data)->save(); 70 } 71 unset($k, $v); 72 return redirect('/'); 73 } 74 75public function delete(Request $request) 76 { 77 $images = Attachment::find($request->id); 78 $images->delete(); 79 return redirect('/'); 80 } 81} 82
resources/views/stories/create2.blade.php
php
1@extends('layouts.front2') 2@section('title','StoryCreate') 3 4@section('content') 5<link href="{{ asset('/css/main22.css' )}}" rel="stylesheet"> 6 7<div class="poststory"> 8 <h1>Post Story</h1> 9</div> 10@if ($errors->any()) 11<ul> 12 @foreach($errors->all() as $error) 13 <li>{{ $error }}</li> 14 @endforeach 15</ul> 16@endif 17<form action="{{ url('/') }}" method="POST" enctype="multipart/form-data"> 18 19 <div class="form"> 20 <label for="photo" class="file">Choose Image or Video</label> 21 <div class="post"> 22 <input type="file" class="here" name="images"> 23 24 </div> 25 </div> 26 <br> 27 </div> 28 29 {{ csrf_field() }} 30 <div class="post"> 31 <div class="btn postbtn"> 32 <input type="submit" value="post" /> 33 </div> 34 </div> 35</form> 36 37@endsection 38
resources/views/stories/index2.blade.php
php
1@extends('layouts.front2') 2@section('title','mainpage') 3 4@section('content') 5 6<link rel="stylesheet" href="{{ asset('css/main2.css') }}"> 7 8<div class="profile"> 9 <div class="name"> 10 @guest 11 <a class="nav-link2" href="{{ route('register')}}">{{ __('Create Accout!')}}</a> 12 @else 13 <a id="navbarDropdown" class="nav-link2" href="#" role="button"> 14 {{ Auth::user()->name }}<span class="caret"></span></a> 15 <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;"> 16 @csrf 17 </form> 18 @endguest 19 </div> 20 21<div class="aboutme"> 22 <tbody> 23 @foreach($posts as $profile) 24 <tr> 25 <td>{{ \Str::limit($profile->title, 100) }}</td> 26 <td>{{ \Str::limit($profile->body, 250) }}</td> 27 </tr> 28 <a href="{{ action('ProfileController@delete', ['id' => $profile->id]) }}">delete</a> 29 <a href="{{ action('ProfileController@update', ['id' => $profile->id]) }}" class="update">update</a> 30 @endforeach 31</tbody> 32<br> 33</div> 34</div> 35 36<div class="new"> 37 <div class="newtitle"> 38 <h1>New</h1> 39 </div> 40 <div class="container1"> 41 @foreach ($images as $image) 42 <img src="{{ $image->path }}" class="images" style="height: 250px; width: 250px; border-radius: 50%;"> 43 <a href="{{ action('StoriesController@delete', ['id' => $image->id]) }}">delete</a> 44 @endforeach 45 <div class="more"> 46 more... 47 </div> 48 </div> 49</div> 50 51 52{{ csrf_field() }} 53@endsection
試したこと
$ php artisan cache:clear $ php artisan route:clear $ php artisan config:clear
上記のコマンドを試したのですが変化が見られませんでした。
まだ初心者で至らぬところは多々あるかとは思いますが、力をお貸しいただければ幸いです。
よろしくお願い致します。
補足情報(FW/ツールのバージョンなど)
MacOS Catalina 10.15.4
Docker for Mac version 2.2.0.5
PHP 7.3.11
Composer 1.9.1
heroku/7.39.2 darwin-x64 node-v12.13.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/14 12:50
2020/04/14 13:05
2020/04/14 13:10
2020/04/14 13:16
2020/04/14 13:27
2020/04/14 13:48 編集
2020/04/14 14:08
2020/04/14 14:14
2020/04/14 15:18
2020/04/14 15:28 編集
2020/04/14 15:42
2020/04/14 15:49
2020/04/14 16:26