2017-11-20 16 views
0

이 스택 오버플로에는 이미 작곡가의 답변이 필요한 많은 문제가 있습니다. 내 채널 (bin) 폴더에 작곡가를 설치했습니다. 버전 Composer version 1.1.1 2016-05-17 12:25:44의 작곡가. 하지만 내 프로젝트를 실행하려고하면이 오류가 발생합니다.경고 : 요구 사항 (/home/eg//public_html/mydata/../ vendor/autoload.php) : 스트림을 열지 못했습니다 :

그 밖의 무엇을해야합니까? 내 인덱스 파일에서

이 그것을 보는 방법이다

인덱스

<?php 

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

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__.'/../app/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__.'/../app/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); 

오류,

Warning: require(/home/e.g./public_html/mydata/../vendor/autoload.php): failed to open stream: No such file or directory in /home/eg/public_html/mydata/index.php on line 24 

Fatal error: require(): Failed opening required '/home/eg/public_html/mydata/../vendor/autoload.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/eg/public_html/mydata/index.php on line 24 
+0

"예" 요구 오류의 점은 실제 파일 경로의 "예"와 일치하지 않는 것처럼 보입니다. 홈 경로가 오류의 원인인지 확인해보십시오! – Niels

+0

@Niels 그냥 오타입니다. 방금 그 부분을 편집했습니다. 보안 이유 :) – Switz

답변

0

어쩌면이 분명하고했습니다 이미 실행하지만, 다음을 실행해야합니다.

composer install 

모든 프로젝트 종속성을 설치하십시오.

+0

이 오류가 발생합니다이 패키지에는 PHP> = 7.0.0이 필요하지만 PHP 버전 (5.6.29)은 해당 요구 사항을 충족하지 않습니다. 내 cpanel의 PHP 버전은 어떻게 변경합니까? – Switz

+0

이것은 호스팅 제공 업체 도움말 센터에 있어야합니다. 물론 호스팅 제공 업체가 아직 PHP 버전을 지원하지 않는 경우 PHP 버전을 변경하는 것은 불가능할 수 있습니다. –

+0

cPanel 계정 웹 인터페이스에서 MultiPHP를 사용하여 PHP 버전을 변경할 수 있습니다 –