Symfony 2 cache clearing issue

前端 未结 3 1132
灰色年华
灰色年华 2021-02-04 11:01

My Symfony 2 website has recently been giving me problems when I try to clear the cache. I type the following command in the terminal:

php app/console cache:clea         


        
3条回答
  •  我寻月下人不归
    2021-02-04 11:24

    in Symfony3 folders with cache moved from app to var, so the command will be:

    $ rm -rf var/cache/*
    $ rm -rf var/logs/*
    $ sudo chmod +a "www-data allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs
    $ sudo chmod +a "`whoami` allow delete,write,append,file_inherit,directory_inherit" var/cache var/logs
    

提交回复
热议问题