SlideShare a Scribd company logo
Prevent Drupal Headaches

FLEXIBLE FILE PATHS
FROM THE START

Wednesday, January 15, 14
training.acquia.com/events

Wednesday, January 15, 14
Who is this for?
•
•

New to Drupal?

•

Inherited a new
Drupal site and want
to know more about
configuration

Starting a new Drupal
site!

Wednesday, January 15, 14
In this demo
•

How file path patterns
affect maintenance and
migrations

•

File upload
management

•

Future friendly path
patterns

Wednesday, January 15, 14
Source of the pain?
•

Drupal default file
field upload pops
ALL files into the
same directory

•

Often overlooked by
developers

•

Significant
performance impact

•
•

Easy to prevent!
...not easy to fix!

Wednesday, January 15, 14
Wednesday, January 15, 14
A future fix

https://drupal.org/node/2128055
Wednesday, January 15, 14
Not in this demo
• Check out these blog posts
• Adding images to your site
• Inline images in Drupal 7
• Responsive or Adaptive images in Drupal 7
• Inline and responsive images in Drupal 8

Wednesday, January 15, 14
A clean room
• Protips!
• Many potential conflicts with other modules

that control file system. Use clean testing
sites.
• See Create a Test Site | Drupal.org

Wednesday, January 15, 14
Getting to grip with the basics

Out of the box file
handling

Wednesday, January 15, 14
Basic settings
•

Global settings

•
•
•

Display options
Upload destination
Per content type settings

•
•
•
•
•
•
•
•

Required?
Help text
Allowed extensions
File directory
Upload size
Description field
Progress indicator
Number of values

Wednesday, January 15, 14
Limiting file types
• Security tip: Err on the side of less file

extensions available to the least amount of
users

Wednesday, January 15, 14
Description field setting

Wednesday, January 15, 14
The description

Wednesday, January 15, 14
Compare
Without “description”

Wednesday, January 15, 14

With “description”
The “display” option
Display enabled

Wednesday, January 15, 14

Display disabled
Manage field display

Wednesday, January 15, 14
Field report!

Wednesday, January 15, 14
Transliteration
• You NEED transliteration. Install it.
• Configuration > Media > File system
•

Wednesday, January 15, 14
Transliteration
• Configuration > Search and metadata > URL

aliases > URL aliases

Wednesday, January 15, 14
Fix existing file names

Wednesday, January 15, 14
How many is too
many?

Wednesday, January 15, 14
The extreme limits
• FAT32:
• Maximum number of files: 268,435,437
• Maximum file size: 4GB
• maximum number of files per directory: up to 65535, or less depending
•
•
•
•
•
•
•
•
•
•

on file names
NTFS:
Maximum number of files: 4,294,967,295
Maximum file size: 16TB currently (16EB theoretically)
Ext2:
Maximum number of files: 10¹⁸
Maximum file size: 2TB
theoretical file per directory limit: 1.3 × 10²⁰ files
Ext3:
Maximum number of files: number of bytes in volume/2¹³.
Maximum file size: 16GB (1KB block) to 2TB (4KB block)

•

http://stackoverflow.com/questions/466521/how-manyfiles-in-a-directory-is-too-many
Wednesday, January 15, 14
What’s wrong?
• Slow to load directory for maintenance and

migration
• Performance hit loading files from that

directory
• Set Max at 1000 or 100,000- well below your

“limit”

Wednesday, January 15, 14
File path patterns

Wednesday, January 15, 14
Configure file paths
•

Basic settings are
limited

•
•

arbitary text
entitytype/filetype

•

Example:
article/pdfs

Wednesday, January 15, 14
A better idea!
• sites/default/files/YYYY/MM/DD
• For high volume uploads

https://drupal.org/node/2128055
Wednesday, January 15, 14
Token for file directory!
• Set to date

Wednesday, January 15, 14
File (Field) Paths
• Set file name also
• Node tokens
• Transliteration

Wednesday, January 15, 14
Example file path patterns
• Parent directory by date
• Parent directory by content type
• Parent directory by a combination of content

type and author

Wednesday, January 15, 14
Pathauto
• Requires Token
• Set patterns for paths instead of node/1

Wednesday, January 15, 14
Private and
public files

Wednesday, January 15, 14
public:// & private://
•
•

Public

•
•

Private

Anyone can
download them

Controlling access to
the files

Wednesday, January 15, 14
Private
• Specify a directory

• OR Sub-directory

outside of the doc
root folder

under the public
directory

Example

Example

../private

sites/default/
files/private

https://drupal.org/documentation/modules/file

Wednesday, January 15, 14
Private directory
• Create the private directory at same level as

root folder
• Configuration > Media > File system
• Set file system path

• System creates .htaccess file

Wednesday, January 15, 14
Choose default option
• Configuration > Media > File system
• Choose default method

Wednesday, January 15, 14
Per field options
• Select private file

• The paths will be like

/system/files/ebooks/pressrelease.pdf

Wednesday, January 15, 14
What happens?
• Field inherits access publishing settings of

content

Wednesday, January 15, 14
Private file modules
• Private files download permission 1.7k using
• Field Permissions 36k using
• File entity (fieldable files) 29k using

Wednesday, January 15, 14
More complex file
handling needed?

Wednesday, January 15, 14
A flexible solution
•
•
•
•

Media +

•

Being used in Drupal
Commons and Demo
Framework

File entity +
OEmbed +
CKEditor

Wednesday, January 15, 14
Demo Framework
• A good example of media configuration
• http://drupal.org/project/df

Wednesday, January 15, 14
CKEditor Link

https://drupal.org/project/ckeditor_link_file
https://drupal.org/project/ckeditor_link
Wednesday, January 15, 14
Multi file uploads
• http://drupal.org/project/

multiupload_filefield_widget
• http://drupal.org/project/

multiupload_imagefield_widget
• http://drupal.org/project/plupload

Wednesday, January 15, 14
Future friendly

Wednesday, January 15, 14
Media module 2.x
• Adds an upload widget

Wednesday, January 15, 14
File entity
• File entity (fieldable files)
• Add fields to files, group, add display modes,

use Token
• Working on getting this into D8

• Documentation at drupal.org/node/1591498

Wednesday, January 15, 14
Fieldable entity

Wednesday, January 15, 14
File browser
• File browser and uploader

Wednesday, January 15, 14
File settings (global)
•

Configuration »
Media » File
settings

•

Global file field
settings

Wednesday, January 15, 14
Granular file permissions

Wednesday, January 15, 14
Display formatter

Wednesday, January 15, 14
Further extend
• Media module - Handing files from external

sources and services such as YouTube,
Vimeo and Flickr.
• File entity revisions module

Wednesday, January 15, 14
Plans to bring into D8
• Find out more “Drupal 8 media battle-plan”

groups.drupal.org/node/384813
• drupal.org/community-initiatives/drupal-core/

file-management

Wednesday, January 15, 14
Display formatting
• Additional display formatters

Wednesday, January 15, 14
Display formatting

Wednesday, January 15, 14
File view modes

Wednesday, January 15, 14
Fix it? HALP!

Wednesday, January 15, 14
Remediation
• Move files to new directories
• Recreate all the files using your new tokens
• If you embed “inline” files/images, you’d

have to write a script to find and replace.
• Public files are easier.
• Drupal handled files are easier.
• Example: Media is embedding a file ID.

Wednesday, January 15, 14
Migrate Module
• Use Migrate module to do an in-place

migrate of your own site.

drupal.org/project/migrate
Wednesday, January 15, 14
Professional help
• Acquia Professional Services
• Migration services

Wednesday, January 15, 14
acquia.com/resources/webinars/
preventing-drupal-headaches-content-type-checklist
Wednesday, January 15, 14

More Related Content

What's hot (20)

PDF
Introduction to Drupal Basics
Juha Niemi
 
PPT
Beginner's guide to drupal
mayank.grd
 
ODP
Drupal 7x Installation - Introduction to Drupal Concepts
Micky Metts
 
ODP
Beginners Guide to Drupal
Gerald Villorente
 
ODP
Bootstrap4 x pages
Philippe Riand
 
PPTX
Drupal For Dummies
Koen Delvaux
 
KEY
Introduction to Drupal
sdmaxey
 
PPT
Introduction to drupal
mayank.grd
 
PDF
Blisstering drupal module development ppt v1.2
Anil Sagar
 
PDF
Content First – Planning Drupal Content Types
Carrie Hane
 
PDF
Drupal in-depth
Kathryn Carruthers
 
PDF
An Introduction to Drupal
Tobias Ratschiller
 
PPTX
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
Acquia
 
PDF
The Flexibility of Drupal 8 | DCNLights 2017
Michael Miles
 
PDF
Introduction to Drupal for Absolute Beginners
everlearner
 
PDF
Drupal 8 theming deep dive
Romain Jarraud
 
ODP
Drupal 6x Installation
Micky Metts
 
PDF
Beyond the Beginner - Path Ways to Advanced Drupal Levels & Businesses
everlearner
 
PDF
From Drupal 7 to Drupal 8 - Drupal Intensive Course Overview
Italo Mairo
 
KEY
WordPress - fixing sites with problems
Victoria Pickering
 
Introduction to Drupal Basics
Juha Niemi
 
Beginner's guide to drupal
mayank.grd
 
Drupal 7x Installation - Introduction to Drupal Concepts
Micky Metts
 
Beginners Guide to Drupal
Gerald Villorente
 
Bootstrap4 x pages
Philippe Riand
 
Drupal For Dummies
Koen Delvaux
 
Introduction to Drupal
sdmaxey
 
Introduction to drupal
mayank.grd
 
Blisstering drupal module development ppt v1.2
Anil Sagar
 
Content First – Planning Drupal Content Types
Carrie Hane
 
Drupal in-depth
Kathryn Carruthers
 
An Introduction to Drupal
Tobias Ratschiller
 
Drupal 7 vs. Drupal 8: A Contrast of Multilingual Support
Acquia
 
The Flexibility of Drupal 8 | DCNLights 2017
Michael Miles
 
Introduction to Drupal for Absolute Beginners
everlearner
 
Drupal 8 theming deep dive
Romain Jarraud
 
Drupal 6x Installation
Micky Metts
 
Beyond the Beginner - Path Ways to Advanced Drupal Levels & Businesses
everlearner
 
From Drupal 7 to Drupal 8 - Drupal Intensive Course Overview
Italo Mairo
 
WordPress - fixing sites with problems
Victoria Pickering
 

Viewers also liked (12)

PPT
Drupal 7 Media modules
Grigory Naumovets
 
PPTX
An introduction to consuming remote APIs with Drupal 7
Josh Kopel
 
PDF
Drupal 8: Routing & More
drubb
 
PPTX
Marketing environment
Dr. J. Jayapradha Varma
 
PDF
Drupal 8: Forms
drubb
 
PDF
Drupal 8: TWIG Template Engine
drubb
 
PDF
How to Optimize Your Drupal Site with Structured Content
Acquia
 
PDF
Drupal 8, Where Did the Code Go? From Info Hook to Plugin
Acquia
 
DOCX
Pest analysis of indusind bank
Viola Jones
 
DOCX
Pest analysis of textile industry
GAURAV SHARMA
 
PPT
Gestion des médias dans Drupal
Adyax
 
DOCX
Macro factors affecting business environment
aayush30
 
Drupal 7 Media modules
Grigory Naumovets
 
An introduction to consuming remote APIs with Drupal 7
Josh Kopel
 
Drupal 8: Routing & More
drubb
 
Marketing environment
Dr. J. Jayapradha Varma
 
Drupal 8: Forms
drubb
 
Drupal 8: TWIG Template Engine
drubb
 
How to Optimize Your Drupal Site with Structured Content
Acquia
 
Drupal 8, Where Did the Code Go? From Info Hook to Plugin
Acquia
 
Pest analysis of indusind bank
Viola Jones
 
Pest analysis of textile industry
GAURAV SHARMA
 
Gestion des médias dans Drupal
Adyax
 
Macro factors affecting business environment
aayush30
 
Ad

Similar to Preventing Drupal Headaches: Establishing Flexible File Paths From The Start (20)

PDF
Preventing Drupal Headaches: Content Type Checklist
Acquia
 
PDF
Standing up for the content creators: Site building and theming for the admin...
Jim Birch
 
PDF
Drupal 8 Preview for Site Builders
Acquia
 
PDF
Media management in Drupal @Moldcamp
Alexei Gorobets
 
PPT
Drupal for Libraries 05/28/09
Mikael Jacobsen
 
PPTX
Drupalcampchicago2010.rachel.datamigration.
Promet Source
 
PDF
To Patch or Custom: How to decide when to patch a contrib module or go custom...
Michael Miles
 
PPTX
Ready. Set. Drupal! An Intro to Drupal 8, Part 2
Acquia
 
PDF
Creating a Reusable Drupal Website for Higher Education - Webinar
Suzanne Dergacheva
 
PDF
Drupal article first_site_04
pepenar
 
PDF
Presentation Drupal Content Management Framework
Joshua Powell
 
PDF
October 2014 - DrupalCamp Atlanta - Digital Asset Management in Drupal
Eric Sembrat
 
PPTX
Becoming A Drupal Master Builder
Philip Norton
 
PDF
Drupal as a Programmer-Friendly CMS at ConFoo
Suzanne Dergacheva
 
PPT
Drupal - Introduction to Drupal Creating Modules
Vibrant Technologies & Computers
 
PDF
Integrating Files Into Drupal 7 Authoring Workflow
Matt Mendonca
 
PPTX
Drupal Theming for Developers
Ian Carnaghan
 
KEY
Drupal in 30 Minutes
Robert Carr
 
PDF
R.E.A.D: Four steps for selecting the right modules Midcamp 2015
Michael Miles
 
PDF
What is Drupal? An Introduction to Drupal 8
Suzanne Dergacheva
 
Preventing Drupal Headaches: Content Type Checklist
Acquia
 
Standing up for the content creators: Site building and theming for the admin...
Jim Birch
 
Drupal 8 Preview for Site Builders
Acquia
 
Media management in Drupal @Moldcamp
Alexei Gorobets
 
Drupal for Libraries 05/28/09
Mikael Jacobsen
 
Drupalcampchicago2010.rachel.datamigration.
Promet Source
 
To Patch or Custom: How to decide when to patch a contrib module or go custom...
Michael Miles
 
Ready. Set. Drupal! An Intro to Drupal 8, Part 2
Acquia
 
Creating a Reusable Drupal Website for Higher Education - Webinar
Suzanne Dergacheva
 
Drupal article first_site_04
pepenar
 
Presentation Drupal Content Management Framework
Joshua Powell
 
October 2014 - DrupalCamp Atlanta - Digital Asset Management in Drupal
Eric Sembrat
 
Becoming A Drupal Master Builder
Philip Norton
 
Drupal as a Programmer-Friendly CMS at ConFoo
Suzanne Dergacheva
 
Drupal - Introduction to Drupal Creating Modules
Vibrant Technologies & Computers
 
Integrating Files Into Drupal 7 Authoring Workflow
Matt Mendonca
 
Drupal Theming for Developers
Ian Carnaghan
 
Drupal in 30 Minutes
Robert Carr
 
R.E.A.D: Four steps for selecting the right modules Midcamp 2015
Michael Miles
 
What is Drupal? An Introduction to Drupal 8
Suzanne Dergacheva
 
Ad

More from Acquia (20)

PDF
Acquia_Adcetera Webinar_Marketing Automation.pdf
Acquia
 
PDF
Acquia Webinar Deck - 9_13 .pdf
Acquia
 
PDF
Taking Your Multi-Site Management at Scale to the Next Level
Acquia
 
PDF
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
Acquia
 
PDF
May Partner Bootcamp 2022
Acquia
 
PDF
April Partner Bootcamp 2022
Acquia
 
PDF
How to Unify Brand Experience: A Hootsuite Story
Acquia
 
PDF
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
Acquia
 
PDF
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
Acquia
 
PDF
September Partner Bootcamp
Acquia
 
PDF
August partner bootcamp
Acquia
 
PDF
July 2021 Partner Bootcamp
Acquia
 
PDF
May Partner Bootcamp
Acquia
 
PDF
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
Acquia
 
PDF
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
Acquia
 
PDF
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
Acquia
 
PDF
April partner bootcamp deck cookieless future
Acquia
 
PDF
How to enhance cx through personalised, automated solutions
Acquia
 
PDF
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
Acquia
 
PDF
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
Acquia
 
Acquia_Adcetera Webinar_Marketing Automation.pdf
Acquia
 
Acquia Webinar Deck - 9_13 .pdf
Acquia
 
Taking Your Multi-Site Management at Scale to the Next Level
Acquia
 
CDP for Retail Webinar with Appnovation - Q2 2022.pdf
Acquia
 
May Partner Bootcamp 2022
Acquia
 
April Partner Bootcamp 2022
Acquia
 
How to Unify Brand Experience: A Hootsuite Story
Acquia
 
Using Personas to Guide DAM Results: How Life Time Pumped Up Their UX and CX
Acquia
 
Improve Code Quality and Time to Market: 100% Cloud-Based Development Workflow
Acquia
 
September Partner Bootcamp
Acquia
 
August partner bootcamp
Acquia
 
July 2021 Partner Bootcamp
Acquia
 
May Partner Bootcamp
Acquia
 
DRUPAL 7 END OF LIFE IS NEAR - MIGRATE TO DRUPAL 9 FAST AND EASY
Acquia
 
Work While You Sleep: The CMO’s Guide to a 24/7/365 Lead Machine
Acquia
 
Acquia webinar: Leveraging Drupal to Bury Your Sales Team In B2B Leads
Acquia
 
April partner bootcamp deck cookieless future
Acquia
 
How to enhance cx through personalised, automated solutions
Acquia
 
DRUPAL MIGRATIONS AND DRUPAL 9 INNOVATION: HOW PAC-12 DELIVERED DIGITALLY FOR...
Acquia
 
Customer Experience (CX): 3 Key Factors Shaping CX Redesign in 2021
Acquia
 

Recently uploaded (20)

PDF
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
PPTX
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
PPTX
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
PPTX
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
PDF
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
PPTX
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
PDF
Why Orbit Edge Tech is a Top Next JS Development Company in 2025
mahendraalaska08
 
PPTX
Q2 Leading a Tableau User Group - Onboarding
lward7
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 
PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
PDF
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
PDF
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
PDF
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
PDF
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 
HubSpot Main Hub: A Unified Growth Platform
Jaswinder Singh
 
Webinar: Introduction to LF Energy EVerest
DanBrown980551
 
WooCommerce Workshop: Bring Your Laptop
Laura Hartwig
 
MSP360 Backup Scheduling and Retention Best Practices.pptx
MSP360
 
"AI Transformation: Directions and Challenges", Pavlo Shaternik
Fwdays
 
UiPath Academic Alliance Educator Panels: Session 2 - Business Analyst Content
DianaGray10
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
OpenID AuthZEN - Analyst Briefing July 2025
David Brossard
 
Why Orbit Edge Tech is a Top Next JS Development Company in 2025
mahendraalaska08
 
Q2 Leading a Tableau User Group - Onboarding
lward7
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
Timothy Rottach - Ramp up on AI Use Cases, from Vector Search to AI Agents wi...
AWS Chicago
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
Log-Based Anomaly Detection: Enhancing System Reliability with Machine Learning
Mohammed BEKKOUCHE
 
CIFDAQ Token Spotlight for 9th July 2025
CIFDAQ
 
SFWelly Summer 25 Release Highlights July 2025
Anna Loughnan Colquhoun
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
CIFDAQ Market Insights for July 7th 2025
CIFDAQ
 

Preventing Drupal Headaches: Establishing Flexible File Paths From The Start