哇 600/700 应用程序:o
无论如何,我认为您最好使用 shell 脚本来执行此类操作(因为您实际上并不需要 symfony 环境来执行这些任务)。
基本上,symfony cc
删除缓存文件夹中的内容,因此,您可以运行rm -Rf cache/*
它,它可能会更快。
对于权限部分,您可以运行以下命令:
# permission on global dirs
chmod 777 web/uploads
chmod 777 cache
chmod 777 log
chmod 777 symfony
# permissions on every thing inside cache, upload & log dir
find cache -type f -print | xargs chmod 666
find web/upload -type f -print | xargs chmod 666
find log -type f -print | xargs chmod 666
find cache -type d -print | xargs chmod 777
find web/upload -type d -print | xargs chmod 777
find log -type d -print | xargs chmod 777