mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-08 01:35:17 +01:00
10 lines
170 B
Bash
10 lines
170 B
Bash
|
#!/bin/sh
|
||
|
# set permissions required for installation
|
||
|
|
||
|
dir=$(dirname $0)
|
||
|
|
||
|
for file in cache files store config.php images/avatars/upload
|
||
|
do
|
||
|
chmod a+w $dir/../$file
|
||
|
done
|