Я не могу запустить PHP Artisan Server - PullRequest
0 голосов
/ 06 октября 2018

Я пытался запустить свой общедоступный сайт на локальном компьютере.

Это сделано в Laravel 5.

Я получаю следующую ошибку:

chdirошибка (): нет такого файла или каталога (errno 2)

Я сделал то, что видел в этом сообщении:

laravel5: chdir (): такого файла нет иликаталог (errno 2)

Я снова запускаю сервер PHP Artisan, но теперь он показывает мне следующее:

Предупреждение: require_once (C: \ Users \ wacks \ Desktop\ TEC \ webtec / public / index.php): не удалось открыть поток: нет такого файла или каталога в C: \ Users \ wacks \ Desktop \ TEC \ webtec \ server.php в строке 21

Неустранимая ошибка: require_once (): Не удалось открыть обязательное 'C: \ Users \ wacks \ Desktop \ TEC \ webtec / public / index.php' (include_path = 'C: \ xampp_1 \ php \ PEAR') в C: \ Users \ wacks \Рабочий стол \ TEC \ webtec \ server.php в строке 21

Вот мой код:

serve.php

 namespace App\Console\Commands;

 use Exception;
 use Illuminate\Console\Command;
 use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Process\PhpExecutableFinder;
 use Symfony\Component\Process\ProcessUtils;

 class Serve extends Command {
/**
 * The console command name.
 *
 * @var string
 */
protected $name = 'serve';

/**
 * The console command description.
 *
 * @var string
 */
protected $description = 'Serve the application on the PHP development server';

/**
 * Execute the console command.
 *
 * @return void
 *
 * @throws \Exception
 */
public function fire() {
    chdir('/');

    $host = $this->input->getOption('host');

    $port = $this->input->getOption('port');

    $base = ProcessUtils::escapeArgument($this->laravel->basePath());

    $binary = ProcessUtils::escapeArgument((new PhpExecutableFinder)->find(false));

    $this->info("Laravel development server started on http://{$host}:{$port}/");

    if (defined('HHVM_VERSION')) {
        if (version_compare(HHVM_VERSION, '3.8.0') >= 0) {
            passthru("{$binary} -m server -v Server.Type=proxygen -v Server.SourceRoot={$base}/ -v Server.IP={$host} -v Server.Port={$port} -v Server.DefaultDocument=server.php -v Server.ErrorDocument404=server.php");
        } else {
            throw new Exception("HHVM's built-in server requires HHVM >= 3.8.0.");
        }
    } else {
        passthru("{$binary} -S {$host}:{$port} {$base}/server.php");
    }
}

/**
 * Get the console command options.
 *
 * @return array
 */
protected function getOptions() {
    return [
        ['host', null, InputOption::VALUE_OPTIONAL, 'The host address to serve the application on.', 'localhost'],

        ['port', null, InputOption::VALUE_OPTIONAL, 'The port to serve the application on.', 8000],
    ];
}
 }

kerner.php

 <?php

 namespace App\Console;

 use Illuminate\Console\Scheduling\Schedule;
 use Illuminate\Foundation\Console\Kernel as ConsoleKernel;

 class Kernel extends ConsoleKernel {
/**
 * The Artisan commands provided by your application.
 *
 * @var array
 */
protected $commands = [
    // Commands\Inspire::class,
    Commands\Serve::class,
];

/**
 * Define the application's command schedule.
 *
 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
 * @return void
 */
protected function schedule(Schedule $schedule) {
    // $schedule->command('inspire')
    //  ->hourly();
}
 }

Webtec \ сrver.php

 <?php

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

 $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';

Может ли кто-нибудь помочь мне с этим?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...