Laravel尝试在根文件夹中存储缓存文件

时间:2015-07-16 20:12:18

标签: php caching laravel-5

我在渲染任何页面时从Laravel5收到以下错误:

ErrorException in Filesystem.php line 74: 
file_put_contents(/fdcc73e2e72031a510ae8f921ce1d22d): failed to open stream: Permission denied

我的缓存配置如下:

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Cache Store
    |--------------------------------------------------------------------------
    |
    | This option controls the default cache connection that gets used while
    | using this caching library. This connection is used when another is
    | not explicitly specified when executing a given caching function.
    |
    */

    'default' => env('CACHE_DRIVER', 'file'),

    /*
    |--------------------------------------------------------------------------
    | Cache Stores
    |--------------------------------------------------------------------------
    |
    | Here you may define all of the cache "stores" for your application as
    | well as their drivers. You may even define multiple stores for the
    | same cache driver to group types of items stored in your caches.
    |
    */

    'stores' => [

        'apc' => [
            'driver' => 'apc'
        ],

        'array' => [
            'driver' => 'array'
        ],

        'database' => [
            'driver' => 'database',
            'table'  => 'cache',
            'connection' => null,
        ],

        'file' => [
            'driver' => 'file',
            'path'   => storage_path().'/framework/cache',
        ],

        'memcached' => [
            'driver'  => 'memcached',
            'servers' => [
                [
                    'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100
                ],
            ],
        ],

        'redis' => [
            'driver' => 'redis',
            'connection' => 'default',
        ],

    ],

    /*
    |--------------------------------------------------------------------------
    | Cache Key Prefix
    |--------------------------------------------------------------------------
    |
    | When utilizing a RAM based store such as APC or Memcached, there might
    | be other applications utilizing the same cache. So, we'll specify a
    | value to get prefixed to all our keys so we can avoid collisions.
    |
    */

    'prefix' => 'laravel',

];

有趣的是,如果我将默认值更改为数组或任何其他选项,它仍然会尝试将缓存文件写入根文件夹并且每次都失败。

还有其他人遇到过这个吗?

3 个答案:

答案 0 :(得分:20)

查看是否存在'storage / framework / views'。如果你添加它仍然有问题。确保它是可写的(775,77等......)

在我的情况下,错误发生是因为我通过github部署到我的生产服务器,但是git没有跟踪存储的内容。我通过确保/ storage中的每个目录中的.gitignore文件都已提交到repo来修复此问题。

备注: 通常那些奇怪的文件名与Blade模板有关。我不认为它实际上是在尝试将缓存文件存储在root中。

我的错误类似:“Filesystem.php第81行中的ErrorException:file_put_contents(/ f946048111f1176619e22f5127724e37):无法打开流:权限被拒绝”

答案 1 :(得分:8)

我正在使用debian 7 wheezy。

如果您遇到这些类型的错误,请执行以下步骤

转到app文件夹(例如:/ home / app / web)

  1. php artisan config:cache
  2. php artisan cache:clear
  3. php artisan view:clear
  4. chmod -R 777存储/或chown -R webuser:webuser storage /
  5. chmod -R 777 public / or chown -R webuser:webuser public /
  6. service apache2 reload,service apache2 restart
  7. 注意:此处的Webuser指的是www-data或自定义用户

    请确保数据库已与页面连接。

答案 2 :(得分:0)

你从哪里加载 CACHE_DRIVER

该行

'default' => env('CACHE_DRIVER', 'file'),

正在寻找您的系统环境变量以及位于项目根目录的 .env 文件。根据您所描述的消息,我假设您只是尝试更改缓存配置文件中的缓存方法。该方法的第二个参数是默认值&#39;如果laravel在其他地方找不到 CACHE_DRIVER ,则为值。

您应该检查项目根目录中 .env 的变量 CACHE_DRIVER 。如果存在,则该值将优先于cache.php上的配置。

另一种解决方案是确保laravel在指定目录中具有写入权限。查看该文件夹是否具有为www-data用户或组(至少)编写的权限。