hj01
@hj01

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

heroku openするとこのページは動作していませんというエラーが出る

解決したいこと

最初にheroku openをしたときに1枚目の画像のエラーが出て、public/index.phpの58行目の$request = Illuminate\Http\Request::capture()に;を付け加えました。(下記のpublic/index.php)
もう一度heroku openをしたら2枚目の画像のエラーが出ました。
どのようにすれば、解決できますか?
わかりやすく解説をお願いします。
言葉足らずなところがあり申し訳ございません。

1枚目

スクリーンショット (47).png

2枚目

スクリーンショット (48).png

public/index.php

<?php

use Illuminate\Contracts\Http\Kernel;
use Illuminate\Http\Request;

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <taylor@laravel.com>
 */

define('LARAVEL_START', microtime(true));

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| our application. We just need to utilize it! We'll simply require it
| into the script here so that we don't have to worry about manual
| loading any of our classes later on. It feels great to relax.
|
*/

require __DIR__.'/../vendor/autoload.php';

/*
|--------------------------------------------------------------------------
| Turn On The Lights
|--------------------------------------------------------------------------
|
| We need to illuminate PHP development, so let us turn on the lights.
| This bootstraps the framework and gets it ready for use, then it
| will load up this application so that we can run it and send
| the responses back to the browser and delight our users.
|
*/

$app = require_once __DIR__.'/../bootstrap/app.php';

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request
| through the kernel, and send the associated response back to
| the client's browser allowing them to enjoy the creative
| and wonderful application we have prepared for them.
|
*/

$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);

$response = $kernel->handle(
    $request = Illuminate\Http\Request::capture();
);

$response->send();

$kernel->terminate($request, $response);

0

2Answer

Comments

  1. @hj01

    Questioner

    すいません。コマンドプロンプトでやっていまして、以下の順にコマンド実行をしました。
    C:\Users\desse\Desktop\SampleVagrant>heroku run "php artisan key:generate --show"
    Running php artisan key:generate --show on hosomi... up, run.5206 (Free)
    base64:p7J2YHoWZG/sx6D9+OpuhffWzwgotIZn9RmMlYYLagY=

    C:\Users\desse\Desktop\SampleVagrant>heroku config:set APP_KEY=p7J2YHoWZG/sx6D9+OpuhffWzwgotIZn9RmMlYYLagY=
    Setting APP_KEY and restarting hosomi... done, v41
    APP_KEY: p7J2YHoWZG/sx6D9+OpuhffWzwgotIZn9RmMlYYLagY=

    C:\Users\desse\Desktop\SampleVagrant>heroku run "php artisan key:generate"
    Running php artisan key:generate on hosomi... up, run.8950 (Free)
    Application key set successfully.

    このやり方でしても画像の1枚目の画面が出てまして、public/index.phpの58行目の$request = Illuminate\Http\Request::capture()に;を付け加えたら、2枚目の画面が出てきました。このやり方で合っていますか?

このやり方で合っていますか?

私自身このエラーに遭遇したことがない(herokuにlaravelをデプロイしたこともない)のでわかりません。さーせん。
https://teratail.com/questions/204265
こちらにはconfigを編集したら直ったという記事が書かれていますがどうでしょうか?
こちらの記事でダメだったらもう私にはわかりませんので知見ある方の解答を期待するしかないですね。
ただ、エラー文で色々ググってみて試していけば解決できそうな気がしますが。。

ちなみに今laravel 8.xのapp.phpを確認しましたが、

'cipher' => 'AES-256-CBC',

となっています。そちらの設定はどうなってますか?

0Like

Comments

  1. @hj01

    Questioner

    すいません。いろいろなアドバイスありがとうございます。いろいろなやり方を試していたら、エラーが治りました。

Your answer might help someone💌