2016-02-25 46 views
0

我通過作曲家集premissions安裝Laravel 5.1 /存儲和/引導/緩存,並創建虛擬主機站點啓用/ project.conf:全新安裝Laravel 5.1,並得到服務器500

<VirtualHost *:80> 
    # The ServerName directive sets the request scheme, hostname and port that 
    # the server uses to identify itself. This is used when creating 
    # redirection URLs. In the context of virtual hosts, the ServerName 
    # specifies what hostname must appear in the request's Host: header to 
    # match this virtual host. For the default virtual host (this file) this 
    # value is not decisive as it is used as a last resort host regardless. 
    # However, you must set it for any further virtual host explicitly. 
    ServerName www.sklad.dev 

    ServerAdmin [email protected] 
    DocumentRoot /var/www/html/sklad/public 

    <Directory /var/www/html/sklad/public> 
     AllowOverride All 
     Order allow,deny 
     Allow from all 
     # New directive needed in Apache 2.4.3: 
     Require all granted 
    </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 
在/公共

/我的.htaccess有:

<IfModule mod_rewrite.c> 
    <IfModule mod_negotiation.c> 
     Options -MultiViews 
    </IfModule> 

    RewriteEngine On 

    # Redirect Trailing Slashes... 
    RewriteRule ^(.*)/$ /$1 [L,R=301] 

    # Handle Front Controller... 
    RewriteCond %{REQUEST_FILENAME} !-d 
    RewriteCond %{REQUEST_FILENAME} !-f 
    RewriteRule^index.php [L] 
</IfModule> 

我啓用revrite MOD上的Apache2和重啓apache.But我仍然找不到服務器500。你有一些什麼樣的IDE可以是錯的?而來自Apache的日誌是:

[Thu Feb 25 23:14:44.838725 2016] [:error] [pid 2505] [client 127.0.0.1:37241] PHP Fatal error: Uncaught exception 'UnexpectedValueException' with message 'The stream or file "/var/www/html/sklad/storage/logs/laravel.log" could not be opened: failed to open stream: Permission denied' in /var/www/html/sklad/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php:87\nStack trace:\n#0 /var/www/html/sklad/vendor/monolog/monolog/src/Monolog/Handler/AbstractProcessingHandler.php(37): Monolog\\Handler\\StreamHandler->write(Array)\n#1 /var/www/html/sklad/vendor/monolog/monolog/src/Monolog/Logger.php(289): Monolog\\Handler\\AbstractProcessingHandler->handle(Array)\n#2 /var/www/html/sklad/vendor/monolog/monolog/src/Monolog/Logger.php(565): Monolog\\Logger->addRecord(400, Object(Symfony\\Component\\Debug\\Exception\\FatalErrorException), Array)\n#3 /var/www/html/sklad/vendor/laravel/framework/src/Illuminate/Log/Writer.php(202): Monolog\\Logger->error(Object(Symfony\\Component\\Debug\\Exception\\FatalErrorException), Array)\n#4 /var/www/html/sklad/vendor/laravel/framework/src/Illuminate/Log/Writer.php(113): Illuminate\\Log\\Writer- in /var/www/html/sklad/vendor/monolog/monolog/src/Monolog/Handler/StreamHandler.php on line 87 
+0

爲什麼不檢查錯誤日誌?你在運行什麼服務器?日誌通常存儲在Linux服務器的'/ var/log/apache2/error.log'中。 – James

+0

我編輯我的問題並添加apache日誌。 –

回答

2

您還沒有爲/storage設置權限。它試圖向日志寫入錯誤,但沒有創建或寫入日誌的權限。

要改變這只是確保你遞歸地設置您的權限:

sudo chmod -R 777 /storage

設置權限777雖然能帶來的風險,所以使用權限級別,你是舒服,也許775作爲這將讓Laravel讀取和寫入日誌文件。

您可能需要重新檢查您的其他文件夾的所有權限,以確保您已遞歸設置它們。

+0

謝謝,我忘了這:)謝謝 –

相關問題