Source code of filesite.io.
https://filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
215 B
14 lines
215 B
3 years ago
|
# 运行时目录
|
||
|
|
||
|
需要设置此目录权限为777:
|
||
|
```
|
||
|
chmod -R 777 runtime/
|
||
|
```
|
||
|
|
||
|
或者允许php进程所属用户写入:
|
||
|
```
|
||
|
chown -R apache:apache runtime/
|
||
|
```
|
||
|
|
||
|
其中apache为php-fpm进程所属用户。
|