簡體   English   中英

Apache2 LinuxMint Laravel

[英]Apache2 LinuxMint Lararvel

我在 Laravel 中配置了 apache 虛擬主機鏈接項目。 但我猜自動加載器不起作用。 這是我的情況。

在 /etc/apache2/sites-avaible 中為虛擬主機寫了我的文件(我嘗試過 <VirtualHost *:80> 但沒有工作)。

<VirtualHost medfx.lo:80>

    ServerAdmin webmaster@medfx.lo
    DocumentRoot /var/www/medfx/public

    <Directory "/var/www/medfx/public">
            Options FollowSymLinks MultiViews
        ReWriteEngine On
    </Directory>

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${APACHE_LOG_DIR}/error.log
    CustomLog ${APACHE_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual host. For example the
    # following line enables the CGI configuration for this host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=apache ts=4 sw=4 sts=4 sr noet

我 /var/www/ 我創建了我的項目 medfx 並創建了 laravel 項目。

root@tecnico57-System-Product-Name:/var/www/medfx# ls -l
drwxr-xr-x 11 root root   4096 ott  5 12:43 app
-rwxr-xr-x  1 root root   1686 ott  5 12:43 artisan
drwxr-xr-x  3 root root   4096 ott  5 12:43 bootstrap
-rwxr-xr-x  1 root root   1827 ott  5 12:43 composer.json
-rwxr-xr-x  1 root root 302152 ott  5 14:29 composer.lock
drwxr-xr-x  2 root root   4096 ott  5 12:43 config
drwxr-xr-x  5 root root   4096 ott  5 12:43 database
-rwxr-xr-x  1 root root    767 ott  5 12:43 package.json
-rw-r--r--  1 root root 776150 ott  5 12:43 package-lock.json
-rwxr-xr-x  1 root root   1202 ott  5 12:43 phpunit.xml
drwxr-xr-x  8 root root   4096 ott  5 12:43 public
-rwxr-xr-x  1 root root   3810 ott  5 12:43 README.md
drwxr-xr-x 10 root root   4096 ott  5 12:43 resources
drwxr-xr-x  2 root root   4096 ott  5 12:43 routes
-rwxr-xr-x  1 root root    563 ott  5 12:43 server.php
drwxr-xr-x  5 root root   4096 ott  5 12:43 storage
drwxr-xr-x  4 root root   4096 ott  5 12:43 tests
drwxr-xr-x 49 root root   4096 ott  5 14:29 vendor
-rwxr-xr-x  1 root root    520 ott  5 12:43 webpack.mix.js

現在,如果我繼續訪問http://medfx.lo ,它是 view :

<?php

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

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

/*
|--------------------------------------------------------------------------
| Check If The Application Is Under Maintenance
|--------------------------------------------------------------------------
|
| If the application is in maintenance / demo mode via the "down" command
| we will load this file so that any pre-rendered content 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);

我的 /etc/hosts:

127.0.0.1   localhost
127.0.1.1   tecnico57-System-Product-Name

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

任何人都可以幫助我嗎?

此致。

解決方案是PHP。 Apache2 沒有解釋 Laravel 項目,沒有正確運行 php 並且它是在沒有解釋的情況下打印代碼到屏幕上。

解決方案是重新安裝全局php並將apache2鏈接到新版本的php。 留下代碼。

sudo add-apt-repository ppa:ondrej/php

sudo apt-get update

sudo apt-get install php7.1

sudo apt-get install php7.1-cli php7.1-common php7.1-json php7.1-opcache php7.1-mysql php7.1-mbstring php7.1-mcrypt php7.1-zip php7.1-fpm

sudo a2dismod php7.2

sudo a2enmod php7.1

sudo service apache2 restart

在運行之前在命令中使用您喜歡的版本 php。

無論如何,最好的問候 Ty Kristian!

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM