PHP 警告:require_once 无法打开流:没有这样的文件或目录

问题描述 投票:0回答:3

首先我是 Laravel 新手,

其次我从 GitHub 克隆了一个项目

我正在尝试使用 | 启动我的 laravel 开发服务器php artisanserve 但它给了我这个错误:

 php artisan serve
Starting Laravel development server: http://127.0.0.1:8000
[Sun Nov 27 08:38:27 2022] PHP 8.1.13 Development Server (http://127.0.0.1:8000) started
[Sun Nov 27 08:38:36 2022] 127.0.0.1:42986 Accepted
[Sun Nov 27 08:38:36 2022] PHP Warning:  require_once(/home/almando/Documents/laravelPro/amazy-ecommerce/public/index.php): Failed to open stream: No such file or directory in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php on line 21
[Sun Nov 27 08:38:36 2022] PHP Fatal error:  Uncaught Error: Failed opening required '/home/almando/Documents/laravelPro/amazy-ecommerce/public/index.php' (include_path='.:/usr/share/php') in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php:21
Stack trace:
#0 {main}
  thrown in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php on line 21
[Sun Nov 27 08:38:36 2022] 127.0.0.1:42986 Closing
[Sun Nov 27 08:38:36 2022] 127.0.0.1:42992 Accepted
[Sun Nov 27 08:38:36 2022] 127.0.0.1:43000 Accepted
[Sun Nov 27 08:38:47 2022] PHP Warning:  require_once(/home/almando/Documents/laravelPro/amazy-ecommerce/public/index.php): Failed to open stream: No such file or directory in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php on line 21
[Sun Nov 27 08:38:47 2022] PHP Fatal error:  Uncaught Error: Failed opening required '/home/almando/Documents/laravelPro/amazy-ecommerce/public/index.php' (include_path='.:/usr/share/php') in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php:21
Stack trace:
#0 {main}
  thrown in /home/almando/Documents/laravelPro/amazy-ecommerce/server.php on line 21

/////////////////////////////////////////////////////////

在 bootstrap/App.php 中

<?php

/*
|--------------------------------------------------------------------------
| Create The Application
|--------------------------------------------------------------------------
|
| The first thing we will do is create a new Laravel application instance
| which serves as the "glue" for all the components of Laravel, and is
| the IoC container for the system binding all of the various parts.
|
*/

$app = new Illuminate\Foundation\Application(
    $_ENV['APP_BASE_PATH'] ?? dirname(__DIR__)
);

/*
|--------------------------------------------------------------------------
| Bind Important Interfaces
|--------------------------------------------------------------------------
|
| Next, we need to bind some important interfaces into the container so
| we will be able to resolve them when needed. The kernels serve the
| incoming requests to this application from both the web and CLI.
|
*/

$app->singleton(
    Illuminate\Contracts\Http\Kernel::class,
    App\Http\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Console\Kernel::class,
    App\Console\Kernel::class
);

$app->singleton(
    Illuminate\Contracts\Debug\ExceptionHandler::class,
    App\Exceptions\Handler::class
);

/*
|--------------------------------------------------------------------------
| Return The Application
|--------------------------------------------------------------------------
|
| This script returns the application instance. The instance is given to
| the calling script so we can separate the building of the instances
| from the actual running of the application and sending responses.
|
*/

return $app;

///////////////////////////////////////

在server.php中

<?php

/**
 * Laravel - A PHP Framework For Web Artisans
 *
 * @package  Laravel
 * @author   Taylor Otwell <[email protected]>
 */

$uri = urldecode(
    parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);

// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
    return false;
}

require_once __DIR__.'/public/index.php';

/////////////////////////////////////////////

在index.php中

<?php

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

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

/*
|--------------------------------------------------------------------------
| Check If Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is maintenance / demo mode via the "down" command we
| will require this file so that any prerendered template can be shown
| instead of starting the framework, which could cause an exception.
|
*/

if (file_exists(__DIR__.'/storage/framework/maintenance.php')) {
    require __DIR__.'/storage/framework/maintenance.php';
}

/*
|--------------------------------------------------------------------------
| Register The Auto Loader
|--------------------------------------------------------------------------
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/

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

/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/

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

$kernel = $app->make(Kernel::class);

$response = tap($kernel->handle(
    $request = Request::capture()
))->send();

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

////////////////////////////////////////////////////////////////////////////////////// ///////////

在浏览器中显示:

此页面无法正常工作

127.0.0.1 目前无法处理此请求。

HTTP 错误 500

////////////////////////////////////////////////////////////////////////////////////// //////////////

就像我说的,我是 Laravel 的新手,我没有做太多事情,但我尝试阅读一些类似的问题,但没有找到这个问题的任何解决方案,因为我不理解它并且我有点困惑并且不想搞砸。

所以请帮忙!

php laravel error-handling connection laravel-artisan
3个回答
2
投票

我相信这是因为你没有安装依赖项。

如果确实没有执行,请从项目根目录运行

composer install
,然后再次运行
php artisan serve


1
投票

如果你没有安装composer那么.

php artisan composer install

如果您已经安装了

php artisan composer update

那么,

php artisan config:cache

0
投票

在我的Macbook上@shashik答案有效,但没有

php artisan

那就是:

composer install


composer update



php artisan config:cache
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.