Issue #2724553 by snehi, Sonal.Sangale, er.pushpinderrana, jhodgdon, e.r.n.i.e: Chapter "Change file system storage settings" in INSTALL.txt needs to be adapted to Drupal 8
parent
a2a4051d83
commit
4012b7edb5
|
@ -199,7 +199,7 @@ INSTALLATION
|
||||||
|
|
||||||
5. Change file system storage settings (optional).
|
5. Change file system storage settings (optional).
|
||||||
|
|
||||||
The files directory created in step 4 is the default file system path used to
|
The files directory created in step 3 is the default file system path used to
|
||||||
store all uploaded files, as well as some temporary files created by
|
store all uploaded files, as well as some temporary files created by
|
||||||
Drupal. After installation, you can modify the file system path to store
|
Drupal. After installation, you can modify the file system path to store
|
||||||
uploaded files in a different location.
|
uploaded files in a different location.
|
||||||
|
@ -226,11 +226,19 @@ INSTALLATION
|
||||||
mkdir uploads
|
mkdir uploads
|
||||||
chmod a+w uploads
|
chmod a+w uploads
|
||||||
|
|
||||||
b. Navigate to Administration > Configuration > Media > File system, and
|
b. Open your settings.php in a plain-text editor, and uncomment (remove the #
|
||||||
enter the desired path. Note that if you want to use private file storage,
|
at the start of line) this line:
|
||||||
you need to first enter the path for private files and save the
|
|
||||||
configuration, and then change the "Default download method" setting and
|
# $settings['file_public_path'] = 'sites/default/files';
|
||||||
save again.
|
|
||||||
|
Enter the desired path and save the file.
|
||||||
|
|
||||||
|
If you want to use private file storage, you need to uncomment (remove
|
||||||
|
the # at the start of line) the following line in settings.php:
|
||||||
|
|
||||||
|
# $settings['file_private_path'] = '';
|
||||||
|
|
||||||
|
Enter the path for private files and save the file.
|
||||||
|
|
||||||
Changing the file system path after files have been uploaded may cause
|
Changing the file system path after files have been uploaded may cause
|
||||||
unexpected problems on an existing site. If you modify the file system path
|
unexpected problems on an existing site. If you modify the file system path
|
||||||
|
|
Loading…
Reference in New Issue