Changes between Version 47 and Version 48 of DetailedInstall
- Timestamp:
- Mar 29, 2010, 12:32:40 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DetailedInstall
v47 v48 181 181 === Permissions === 182 182 183 1.On the first page of the install process you can see the files and folders whose permissions should be properly set up.183 On the first page of the install process you can see the files and folders whose permissions should be properly set up. 184 184 185 185 There are the following ways to do this: … … 187 187 * Using a shell client. 188 188 189 1 )If PHP is running as an Apache module on Unix systems189 1. If PHP is running as an Apache module on Unix systems 190 190 Log into your shell account using your favorite shell client and change directory to that containing your Dolphin script files. Now run the following commands under your SSH prompt: 191 191 192 '''(for Dolphin 6.1.x)''':193 194 {{{192 '''(for Dolphin 6.1.x)''': 193 194 {{{ 195 195 chmod 777 ./backup ./cache ./groups/gallery ./groups/orca/cachejs ./groups/orca/classes ./groups/orca/js ./groups/orca/layout ./groups/orca/log ./inc ./langs ./media/images ./media/images/banners ./media/images/blog ./media/images/classifieds ./media/images/gallery ./media/images/profile ./media/images/profile_bg ./media/images/promo ./media/images/promo/original ./media/images/sdating ./media/images/sharingImages ./media/sound ./media/video ./orca/cachejs ./orca/classes ./orca/conf ./orca/js ./orca/layout ./orca/log ./periodic ./tmp 196 196 … … 201 201 chmod 666 ./ray/modules/board/xml/config.xml ./ray/modules/board/xml/langs.xml ./ray/modules/board/xml/main.xml ./ray/modules/board/xml/skins.xml ./ray/modules/chat/xml/config.xml ./ray/modules/chat/xml/langs.xml ./ray/modules/chat/xml/main.xml ./ray/modules/chat/xml/skins.xml ./ray/modules/desktop/xml/config.xml ./ray/modules/desktop/xml/langs.xml ./ray/modules/desktop/xml/main.xml ./ray/modules/desktop/xml/skins.xml ./ray/modules/global/data/integration.dat ./ray/modules/global/inc/cron.inc.php ./ray/modules/global/inc/header.inc.php ./ray/modules/global/xml/config.xml ./ray/modules/global/xml/main.xml ./ray/modules/im/xml/config.xml ./ray/modules/im/xml/langs.xml ./ray/modules/im/xml/main.xml ./ray/modules/im/xml/skins.xml ./ray/modules/movie/xml/config.xml ./ray/modules/movie/xml/langs.xml ./ray/modules/movie/xml/main.xml ./ray/modules/movie/xml/skins.xml ./ray/modules/mp3/xml/config.xml ./ray/modules/mp3/xml/langs.xml ./ray/modules/mp3/xml/main.xml ./ray/modules/mp3/xml/skins.xml ./ray/modules/music/xml/config.xml ./ray/modules/music/xml/langs.xml ./ray/modules/music/xml/main.xml ./ray/modules/music/xml/skins.xml ./ray/modules/presence/xml/config.xml ./ray/modules/presence/xml/langs.xml ./ray/modules/presence/xml/main.xml ./ray/modules/presence/xml/skins.xml ./ray/modules/shoutbox/xml/config.xml ./ray/modules/shoutbox/xml/langs.xml ./ray/modules/shoutbox/xml/main.xml ./ray/modules/shoutbox/xml/skins.xml ./ray/modules/video/xml/config.xml ./ray/modules/video/xml/langs.xml ./ray/modules/video/xml/main.xml ./ray/modules/video/xml/skins.xml 202 202 203 }}}204 205 '''(for Dolphin 7.x)'''206 207 {{{203 }}} 204 205 '''(for Dolphin 7.x)''' 206 207 {{{ 208 208 chmod 777 ./inc ./backup ./cache ./cache_public ./langs ./media/app ./media/images ./media/images/banners ./media/images/blog ./media/images/classifieds ./media/images/membership ./media/images/profile ./media/images/profile_bg ./media/images/promo ./media/images/promo/original ./tmp ./plugins/htmlpurifier/standalone/HTMLPurifier/DefinitionCache/Serializer ./plugins/htmlpurifier/standalone/HTMLPurifier/DefinitionCache/Serializer/HTML ./plugins/htmlpurifier/standalone/HTMLPurifier/DefinitionCache/Serializer/CSS ./plugins/htmlpurifier/standalone/HTMLPurifier/DefinitionCache/Serializer/Test ./plugins/htmlpurifier/standalone/HTMLPurifier/DefinitionCache/Serializer/URI 209 209 … … 215 215 chmod 777 flash/modules/global/app/ffmpeg.exe 216 216 217 }}}218 219 '''Note''': all the other files in the Dolphin installation folder should have 644 permissions, and subfolders should have 755 permissions.217 }}} 218 219 '''Note''': all the other files in the Dolphin installation folder should have 644 permissions, and subfolders should have 755 permissions. 220 220 221 2 )If PHP is running as CGI on Unix systems222 223 224 225 226 221 2. If PHP is running as CGI on Unix systems 222 223 In this case all folders should have 755 permissions and all files should have 644 permissions, except for the '''ffmpeg.exe file''', which should have 755 permissions. 224 225 To do this quickly, you can run the following commands when you're in the Dolphin installation folder under your SSH account: 226 {{{ 227 227 find ./ -type d -exec chmod 755 {} \; 228 228 find ./ -type f -exec chmod 644 {} \; … … 230 230 chmod 755 flash/modules/global/app/ffmpeg.exe; (for Dolphin 7.x) 231 231 232 233 234 3 )If your site is to be installed on Windows, you don't need to change any permissions.232 }}} 233 234 3. If your site is to be installed on Windows, you don't need to change any permissions. 235 235 236 236 * Using an FTP client.