Skip to content

Commit

Permalink
Fixed the location of "filemanager.config.json"
Browse files Browse the repository at this point in the history
  • Loading branch information
mystralkk committed Sep 2, 2019
1 parent 86cc357 commit 4e1856b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -101,8 +101,8 @@
<copy file="${srcDir}/public_html/siteconfig.php.dist" tofile="${dstDir}/public_html/siteconfig.php"/>

<!-- Move filemanager configuration file -->
<copy file="${srcDir}/public_html/filemanager/scripts/filemanager.config.default.json"
tofile="${dstDir}/public_html/filemanager/scripts/filemanager.config.json" overwrite="true"/>
<copy file="${srcDir}/public_html/filemanager/config/filemanager.config.default.json"
tofile="${dstDir}/public_html/filemanager/config/filemanager.config.json" overwrite="true"/>

<!-- Change permissions -->
<echo msg="Changing directory and file permissions..."/>
Expand Down
2 changes: 1 addition & 1 deletion public_html/admin/envcheck.php
Expand Up @@ -491,7 +491,7 @@ function _checkEnvironment()
$_CONF['path_log'] . 'spamx.log',
$feedPath,
$_CONF['rdf_file'],
$_CONF['path_html'] . 'filemanager/scripts/filemanager.config.json',
$_CONF['path_html'] . 'filemanager/config/filemanager.config.json',
// Image Directories
$_CONF['path_images'] . 'articles/', // Used by article editor for when image is uploaded (to be included in article)
$_CONF['path_images'] . 'topics/', // Used by topic editor for when image is uploaded
Expand Down
2 changes: 1 addition & 1 deletion public_html/admin/install/classes/installer.class.php
Expand Up @@ -682,7 +682,7 @@ private function checkPermissions()
$this->env['gl_path'] . 'logs/spamx.log',
$paths['public_html/'] . 'siteconfig.php',
$paths['public_html/'] . 'backend/geeklog.rss',
$paths['public_html/'] . 'filemanager/scripts/filemanager.config.json',
$paths['public_html/'] . 'filemanager/config/filemanager.config.json',
$paths['public_html/'] . 'images/articles/', // Used by article editor for when image is uploaded (to be included in article)
$paths['public_html/'] . 'images/topics/', // Used by topic editor for when image is uploaded
$paths['public_html/'] . 'images/userphotos', // Used by user editor for when image is uploaded
Expand Down

0 comments on commit 4e1856b

Please sign in to comment.