You are here

README.txt in Album Photos 6.0.x

Same filename in this branch
  1. 6.0.x README.txt
  2. 6.0.x photos_access/README.txt
Same filename and directory in other branches
  1. 8.5 README.txt
  2. 8.4 README.txt
  3. 6.2 README.txt
  4. 7.3 README.txt
CONTENTS OF THIS FILE
---------------------

 * Introduction
 * Features
 * Requirements
 * Recommended Modules
 * Installation
 * Configuration
 * Maintainers


INTRODUCTION
------------

@todo This content needs to be updated for 6.0.x.

The Album Photos module provides a solution for creating photo albums and
uploading multiple images. The module automatically creates the photos content
type which creates a node that contains all the photos (saved as managed files).

The Album Photos module comes with the Photo Access sub-module that provides
settings for each album including open, locked, designated users, or password
required.

 * For a full description of the module visit:
   https://www.drupal.org/project/photos or
   https://www.drupal.org/node/2896620

 * To submit bug reports and feature suggestions, or to track changes visit:
   https://www.drupal.org/project/issues/photos

FEATURES
--------

 * Create photo galleries.
 * Upload and manage images.
 * Upload multiple images with Plupload.
 * Comment on images (@todo).
 * Vote on images (@todo).
 * Integrates with core image styles.
 * Support for Drupal core private file system.


REQUIREMENTS
------------

This module requires no modules outside of Drupal core.


RECOMMENDED MODULES
-------------------

For the best experience install and enable the following modules:
 * Crop API - https://www.drupal.org/project/crop
 * Image Widget Crop - https://www.drupal.org/project/image_widget_crop
 * Image Effects - https://www.drupal.org/project/image_effects
 * Colorbox - https://www.drupal.org/project/colorbox

For multi image upload:
 * Plupload integration - https://www.drupal.org/project/plupload

For auto fix image orientation:
 * EXIF Orientation - https://www.drupal.org/project/exif_orientation


INSTALLATION
------------

Install the Album Photos module as you would normally install a contributed
Drupal module. Visit https://www.drupal.org/node/1897420 for further
information.


CONFIGURATION
-------------

    1. Navigate to Administration > Extend and enable the module. Upon enabling,
       the module creates a "Photos" content type.
    2. Navigate to Administration > Configuration > Media > Photos to edit
       global settings: Basic Settings, Image Sizes, Display Settings,
       Statistics, and Exif Settings.
    3. To edit the Privacy settings, the Photos Access submodule must be
       enabled.
    4. Navigate to Administration > People > Permissions to edit user
       permissions.

For plupload integration.
    1. Install plupload module.
    2. Install plupload library.
    3. Enable plupload setting in photos global settings.
    4. Clear cache.

For cropping:
    1. Install Crop API: https://www.drupal.org/project/crop
    2. Install Image Widget Cropper:
       https://www.drupal.org/project/image_widget_crop
    3. Configure Image Widget Cropper and set up image styles to work with
       photos: admin/structure/photos.
    4. The image crop widget will appear on the image edit form:
       photos/{node}/{photos_image}/edit

For watermark:
    1. Install Image Effects https://www.drupal.org/project/image_effects
    2. Update image styles as needed.
    3. Tips: resize or scale image before watermark is added.
       Or use watermark scale option.

For inline editing photo title and description:
    1. Use the core Quick Edit module.

For colorbox integration:
    1. Install the Colorbox module (@todo).
    2. On the Colorbox module settings page check "Enable Colorbox load" in
       extra settings and save.

Locked and Password Protected Galleries
 * Please note that locked and password protected galleries will only protect
   the actual image URL if a private file path is set. In settings.php be sure
   to set the private file path ($settings['file_private_path']).

 * NGINX if you are using NGINX the following needs to be added to your config
   file to allow image styles to be created and accessed on the private file
   system:
   # Private image styles
     location ~ ^/system/files/styles/ {
        try_files $uri @rewrite;
     }
   # Private photos image styles
     location ~ ^/system/files/photos/ {
        try_files $uri @rewrite;
     }


MAINTAINERS
-----------

 * Nathaniel Burnett (Nathaniel) - https://www.drupal.org/u/nathaniel
 * eastcn - https://www.drupal.org/u/eastcn

File

README.txt
View source
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * Introduction
  4. * Features
  5. * Requirements
  6. * Recommended Modules
  7. * Installation
  8. * Configuration
  9. * Maintainers
  10. INTRODUCTION
  11. ------------
  12. @todo This content needs to be updated for 6.0.x.
  13. The Album Photos module provides a solution for creating photo albums and
  14. uploading multiple images. The module automatically creates the photos content
  15. type which creates a node that contains all the photos (saved as managed files).
  16. The Album Photos module comes with the Photo Access sub-module that provides
  17. settings for each album including open, locked, designated users, or password
  18. required.
  19. * For a full description of the module visit:
  20. https://www.drupal.org/project/photos or
  21. https://www.drupal.org/node/2896620
  22. * To submit bug reports and feature suggestions, or to track changes visit:
  23. https://www.drupal.org/project/issues/photos
  24. FEATURES
  25. --------
  26. * Create photo galleries.
  27. * Upload and manage images.
  28. * Upload multiple images with Plupload.
  29. * Comment on images (@todo).
  30. * Vote on images (@todo).
  31. * Integrates with core image styles.
  32. * Support for Drupal core private file system.
  33. REQUIREMENTS
  34. ------------
  35. This module requires no modules outside of Drupal core.
  36. RECOMMENDED MODULES
  37. -------------------
  38. For the best experience install and enable the following modules:
  39. * Crop API - https://www.drupal.org/project/crop
  40. * Image Widget Crop - https://www.drupal.org/project/image_widget_crop
  41. * Image Effects - https://www.drupal.org/project/image_effects
  42. * Colorbox - https://www.drupal.org/project/colorbox
  43. For multi image upload:
  44. * Plupload integration - https://www.drupal.org/project/plupload
  45. For auto fix image orientation:
  46. * EXIF Orientation - https://www.drupal.org/project/exif_orientation
  47. INSTALLATION
  48. ------------
  49. Install the Album Photos module as you would normally install a contributed
  50. Drupal module. Visit https://www.drupal.org/node/1897420 for further
  51. information.
  52. CONFIGURATION
  53. -------------
  54. 1. Navigate to Administration > Extend and enable the module. Upon enabling,
  55. the module creates a "Photos" content type.
  56. 2. Navigate to Administration > Configuration > Media > Photos to edit
  57. global settings: Basic Settings, Image Sizes, Display Settings,
  58. Statistics, and Exif Settings.
  59. 3. To edit the Privacy settings, the Photos Access submodule must be
  60. enabled.
  61. 4. Navigate to Administration > People > Permissions to edit user
  62. permissions.
  63. For plupload integration.
  64. 1. Install plupload module.
  65. 2. Install plupload library.
  66. 3. Enable plupload setting in photos global settings.
  67. 4. Clear cache.
  68. For cropping:
  69. 1. Install Crop API: https://www.drupal.org/project/crop
  70. 2. Install Image Widget Cropper:
  71. https://www.drupal.org/project/image_widget_crop
  72. 3. Configure Image Widget Cropper and set up image styles to work with
  73. photos: admin/structure/photos.
  74. 4. The image crop widget will appear on the image edit form:
  75. photos/{node}/{photos_image}/edit
  76. For watermark:
  77. 1. Install Image Effects https://www.drupal.org/project/image_effects
  78. 2. Update image styles as needed.
  79. 3. Tips: resize or scale image before watermark is added.
  80. Or use watermark scale option.
  81. For inline editing photo title and description:
  82. 1. Use the core Quick Edit module.
  83. For colorbox integration:
  84. 1. Install the Colorbox module (@todo).
  85. 2. On the Colorbox module settings page check "Enable Colorbox load" in
  86. extra settings and save.
  87. Locked and Password Protected Galleries
  88. * Please note that locked and password protected galleries will only protect
  89. the actual image URL if a private file path is set. In settings.php be sure
  90. to set the private file path ($settings['file_private_path']).
  91. * NGINX if you are using NGINX the following needs to be added to your config
  92. file to allow image styles to be created and accessed on the private file
  93. system:
  94. # Private image styles
  95. location ~ ^/system/files/styles/ {
  96. try_files $uri @rewrite;
  97. }
  98. # Private photos image styles
  99. location ~ ^/system/files/photos/ {
  100. try_files $uri @rewrite;
  101. }
  102. MAINTAINERS
  103. -----------
  104. * Nathaniel Burnett (Nathaniel) - https://www.drupal.org/u/nathaniel
  105. * eastcn - https://www.drupal.org/u/eastcn