错误:未定义的类常量' END_OF_MAINTENANCE' Symfony 2

时间:2015-07-01 21:44:14

标签: php git symfony caching

我正在开发现有项目的功能。 该项目是使用Symfony 2开发的。我创建了一个虚拟主机Apache(Ubuntu和LAMP)来实现它。当引导给我这个错误。 " ConfigDataCollector.php第276行中的FatalErrorException:错误:未定义的类常量' END_OF_MAINTENANCE'"。我无法更新作曲家,因为如果我愿意的话,我会在" git push"对于master也应该加载新的库(包)并且不需要它,因为该站点运行良好的这个版本的作曲家。 然后另一件事: 通常情况下,当我删除残酷的缓存symfony来理解(/ project / app / cache)时,在加载我的项目页面后,Apache会用你对文件夹的权限写,所以我不能做php app / console cache :清楚。我想知道这是否是一个影响对方的问题。 另一件事是/ project / app / cache发生同样的事情发生在/ project / app / logs。

我正在附上作曲家。

    {
"name": "symfony/framework-standard-edition",
"license": "MIT",
"type": "project",
"description": "The \"Symfony Standard Edition\" distribution",
"autoload": {
    "psr-0": { "": "src/" }
},
"require": {
    "php": ">=5.3.3",
    "symfony/symfony": "~2.4",
    "doctrine/orm": "~2.2,>=2.2.3",
    "doctrine/doctrine-bundle": "~1.2",
    "twig/extensions": "~1.0",
    "symfony/assetic-bundle": "~2.3",
    "symfony/swiftmailer-bundle": "~2.3",
    "symfony/monolog-bundle": "~2.4",
    "sensio/distribution-bundle": "~2.3",
    "sensio/framework-extra-bundle": "~3.0",
    "sensio/generator-bundle": "~2.3",
    "incenteev/composer-parameter-handler": "~2.0",
    "friendsofsymfony/user-bundle": "~2.0@dev",
    "facebook/php-sdk": "3.2.0",
    "friendsofsymfony/facebook-bundle": "dev-master",
    "friendsofsymfony/jsrouting-bundle": "@stable",
    "mattketmo/email-checker": "~1.0",
    "hwi/oauth-bundle": "0.4.*@dev",
    "suncat/mobile-detect-bundle": "0.10.*"
},
"require-dev": {
    "phpdocumentor/phpdocumentor": "2.*"
},
"scripts": {
    "post-install-cmd": [
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
    ],
    "post-update-cmd": [
        "Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile"
    ]
},
"config": {
    "bin-dir": "bin"
},
"minimum-stability": "stable",
"extra": {
    "symfony-app-dir": "app",
    "symfony-web-dir": "web",
    "incenteev-parameters": {
        "file": "app/config/parameters.yml"
    },
    "branch-alias": {
        "dev-master": "2.4-dev"
    }
}

}

非常感谢

0 个答案:

没有答案
相关问题