-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed mincPath, data and imagePath from the ConfigSettings
removed mincPath and imagePath from get_file.php replaced all instances of imagePath and mincPath by dataDirBasepath in the code missed one instance of mincPath Melanie's feedback reintegrated imagePath to have one path for apache and one for the LORIS-MRI server if ever the paths are different forgot to add again the imagePath to the Config SQL default schema...
- Loading branch information
Showing
7 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
SQL/New_patches/2019-02-08_cleanup_duplicated_data_path_in_Config.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
-- Remove entries for mincPath and data from the Config table | ||
DELETE | ||
FROM Config | ||
WHERE ConfigID IN ( | ||
SELECT ID | ||
FROM ConfigSettings | ||
WHERE Name IN ('mincPath', 'data') | ||
); | ||
|
||
-- Remove entries for mincPath and data from the ConfigSettings table | ||
DELETE | ||
FROM ConfigSettings | ||
WHERE Name IN ('mincPath', 'data'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters