forked from brookinsconsulting/ezcommunity2
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmodfix.sh
executable file
·144 lines (129 loc) · 2.64 KB
/
modfix.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
#!/bin/sh
echo "Creating symbolic links and setting permissions as needed."
# Set permissions for site.ini files
chmod 666 bin/ini/site.ini
if [ -f "bin/ini/override/site.ini" ]; then
chmod 666 bin/ini/override/site.ini
fi
if [ -f "bin/ini/override/site.ini.php" ]; then
chmod 666 bin/ini/override/site.ini.php
fi
if [ -f "bin/ini/override/site.ini.append" ]; then
chmod 666 bin/ini/override/site.ini.append
fi
# Set permissions for log dir & files
if [ -d "bin/logs/" ]; then
chmod -R 777 bin/logs/
fi
# [cache section]
# This part will create the cache dirs which are needed and make sure
# that they are writeable by php.
dirs="
design/admin/tmp
ezad/admin/cache
ezaddress/admin/cache
ezarticle/admin/cache
ezarticle/cache
ezbug/user/cache
ezbug/admin/cache
ezcalendar/admin/cache
ezcalendar/user/cache
ezcontact/admin/cache
ezexample/admin/cache
ezfilemanager/files
ezforum/admin/cache
ezforum/cache
ezimagecatalogue/catalogue
ezimagecatalogue/catalogue/variations
ezlink/admin/cache
ezlink/cache
ezmediacatalogue/catalogue
eznewsfeed/admin/cache
eznewsfeed/cache
ezpoll/admin/cache
ezpoll/cache
ezstats/admin/cache
eztodo/admin/cache
eztrade/admin/cache
eztrade/cache
ezuser/admin/cache
ezfilemanager/admin/cache
ezimagecatalogue/admin/cache
ezbulkmail/admin/cache
classes/cache
ezsysinfo/admin/cache
ezurltranslator/admin/cache
ezsitemanager/admin/cache
ezquiz/admin/cache
ezquiz/cache
ezmessage/admin/cache
ezform/admin/cache
ezsitemanager/staticfiles
ezsitemanager/staticfiles/images
ezmediacatalogue/admin/cache
ezmediacatalogue/cache
"
for dir in $dirs
do
if [ -d $dir ]; then
echo "$dir already exist"
else
echo "Creating $dir"
mkdir -p $dir
fi
chmod 777 $dir
done
for dir in $dirs
do
override_dir="override/"$dir
if [ -d $override_dir ]; then
chmod 777 $override_dir
fi
done
# [admin section]
# This part will link the modules into the admin directory
#
# Obsolete as of version 2.0.1
# files="
# error.log
# ezlink
# site.ini
# ezforum
# ezarticle
# ezad
# classes
# ezclassified
# ezimagecatalogue
# ezfilemanager
# ezpoll
# ezuser
# ezsession
# ezcontact
# ezstats
# eztodo
# eznewsfeed
# eztrade
# ezaddress
# ezbug
# ezexample
# ezcalendar
# ezerror
# checkout
# "
# for file in $files
# do
# if [ -e $file ]; then
# if [ -e admin/$file ]; then
# echo "admin/$file already exist"
# else
# echo "Linking ./$file to admin/$file"
# ln -s ../$file admin/$file
# fi
# fi
# done
# if [ -d "override" ]; then
# if [ ! -d "admin/override" ]; then
# echo "Linking override to admin/override"
# ln -sf ../override admin/override
# fi
# fi