Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
TYPO3 4.3 Multimedia Cookbook
TYPO3 4.3 Multimedia Cookbook

TYPO3 4.3 Multimedia Cookbook: Over 50 great recipes for effectively managing multimedia content to create an organized web site in TYPO3

eBook
R$49.99 R$196.99
Paperback
R$245.99
Subscription
Free Trial
Renews at R$50p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
Table of content icon View table of contents Preview book icon Preview Book

TYPO3 4.3 Multimedia Cookbook

Chapter 2. Managing Digital Assets

In this chapter, we will cover:

  • Setting up a file structure

  • Setting up a filemount

  • Setting up rights for backend users

  • Setting up FTP access

  • Setting up a category tree

  • Creating a frontend upload form

  • Debugging code

  • Creating frontend user groups

  • Creating frontend users

We will also look at digital asset management, why you may need it, and how to use it in TYPO3.

Setting up a file structure


When starting a new site, one needs to decide on the file structure that will be used. The specific directory tree will probably depend on the application and the type of information stored in those folders. But, there are certain ways by which TYPO3 can help you sort files, which should give you a guide as to how you should lay out the file tree.

Getting ready

First, you need to decide on the approach to the file structure.

  • By user

    This is a common layout that's used in multiuser environments. Filemounts can be set up to limit the user to just a specific folder. We will examine how this can be done in the recipe Setting up rights for backend users.

  • By user group

    This is similar to the previous setup, but more functional in team environments, where several users might share a job function. Filemounts can be set up for a group (content editor, publisher, videographer, and so on), and assigned to several users, who would then share access to files.

  • By date

    If you have...

Setting up a filemount


Filemounts limit a user to just a specific folder tree under the fileadmin directory. This is good for security purposes, as well as general usability in a multiuser environment. Instead of browsing through all the files available in the system, the user can be directed to just the files he/she needs to manipulate.

Getting ready

To set up filemounts, you must have a directory structure in place. For the recipe that follows, we will assume that we decided on a "by user" tree (see recipe Setting up file structure).

How to do it...

  1. 1. Use the List module and go to the root page of the site (PID: 0, usually the topmost node).

  2. 2. Click the Create New Record button.

  3. 3. Choose Filemount. You should see the following screen:

  4. 4. Fill in the required Label field. The Label field allows you to name the filemount to something you would remember, and could pick out from a list and know where it points.

  5. 5. Fill in the required Path field. The path refers to the file system path to the directory...

Setting up rights for backend users


In this recipe, we will create a backend user, who will be able to log into TYPO3 and have limited rights, which would allow him or her to do his/her job without causing any deliberate or accidental damage to the system.

Getting ready

To limit a user to his/her folder, he/she must have a configured filemount. Make sure you have completed the Setting up a filemount recipe, and have correctly set up at least one filemount.

How to do it...

  1. 1. Under the Admin tools | User Admin module, click the button to create a new user.

  2. 2. Under the General tab, fill in the required fields—Username and Password.

  3. 3. Enter the user's name and e-mail address.

  4. 4. Under the Access Rights tab, select the modules that you would like the user or user group to see in the left frame.

  5. 5. Under DB Mounts, select the top page of the branch to which the user should have access.

  6. 6. Under DB Mounts, make sure to also select the Media SysFolder that was created by DAM extension, as that is where...

Setting up FTP access


There are times when you need to allow FTP access to your users. There are plenty of FTP daemons to make it easy. However, you would have to set up individual users, and configure their restricted access. It is much better to leverage the backend user configuration already in TYPO3, and use it to provide basic FTP access to the same files accessible in the backend.

Getting ready

We will use Pure-FTPd daemon to provide FTP access. The steps below assume you are on a Debian system, and Pure-FTPd is available in package repositories. If its not, you would need to compile it from source.

How to do it...

  1. 1. Install Pure-FTPd, along with the MySQL authentication module.

    Shell> apt-get install pure-ftpd-common pure-ftpd-mysql
    
  2. 2. Open the MySQL configuration file (by default in /etc/pure-ftpd/db/mysq.conf). Edit the following values:

    • MYSQLServer: Point it to your MySQL server IP, or localhost

    • MYSQLUser: DB username

    • MYSQLPassword: DB password

    • MYSQLDatabase: Name of the DB that TYPO3...

Setting up a category tree


Files can be sorted by categories. This provides another layer of classification for media assets, allowing them to be organized and grouped without changing their physical location. A common setup is to arrange the physical storage as we have by user or by user group in order to make rights assignment easy, but setup a category tree by subject of the media content, to group similar files together. Here is an example:

Getting ready

Category support is built in to DAM, but to ease category management you should install the extension dam_catedit. This extension provides full management capability optimized for DAM categories. We've covered how to install extensions in Chapter 1 in recipe Installing needed extensions, so refer back to it for a detailed description.

Once you have installed the extension, the Categories module will appear under Media.

How to do it...

  1. 1. Go to the Media | Categories module.

  2. 2. If there are no categories in the system yet, you will see only...

Creating a frontend upload form


In this recipe, we will create a simple extension, which would add a form to the website, and let users upload files. Files will be indexed by the DAM.

Getting ready

We will create the extension from scratch, and if you want to follow along, make sure to install Kickstarter to create the framework. Otherwise, you can download the finished extension but make sure to review the How it works... section to understand what happens in the code.

How to do it...

  1. 1. Under the Extension Manager, select Create new Extension. If you don't see the option, Kickstarter has not been installed.

  2. 2. Under General Info, click the plus icon (+), and fill in the basic information. Name the extension User Upload.

  3. 3. Under Dependencies, enter dam. When the extension is installed, Extension Manager will check the presence of DAM, and proceed only if DAM is present and installed. Likewise, Extension Manager will not allow DAM to be uninstalled as long as our extension is still installed...

Debugging code


In the Creating a frontend upload form recipe, we went through the execution of the script line by line. When writing your own code, you would probably want the same benefit, giving you the ability to go through execution line by line, and seeing exactly what is happening. This functionality is provided by debuggers.

There are several debuggers available for PHP for any platform. Most debuggers are bundled with an IDE, so that you can use them together. For example, NuSphere PhpEd comes with DBG debugger, which we will make use of in this recipe.

Getting ready

This recipe assumes you have NuSphere PhpEd installed on your Windows computer. If you don't skip ahead to the There's more... section for general tips on using debuggers, which you can then apply to a debugger of your choice.

Note

For more information about NuSphere PhpEd, go to http://www.nusphere.com/.

How to do it...

  1. 1. Go to C:\Program Files\nusphere\phped\debugger\server (or equivalent installation path).

  2. 2. Select the...

Left arrow icon Right arrow icon

Key benefits

  • Create impressive web sites by adding image, video, and audio files to a TYPO3-driven web site and customizing their display
  • Organize you web site by effectively managing your multimedia content in your TYPO3 site
  • Enhance your CMS by adding different processing capabilities such as parsing metadata and converting files to your site
  • Part of Packt's Cookbook series: Each recipe is a carefully organized sequence of instructions to complete the task as efficiently as possible

Description

TYPO3 is one of the world's leading open source content management systems, written in PHP, which can be used to create and customize your web site. Along with text content, you can display high quality images, audio, and video to your site's visitors by using TYPO3. It is essential to manage various types of multimedia files in content management systems for both editors and the users on the frontend of the site.The book gives you a step-by-step process for organizing an effective multimedia system. It also gives solutions to commonly encountered problems, and offers a variety of tools for dealing with multimedia content. The author's experience in large-scale systems enables him to share his effective solutions to these problems.If you choose to work through all the recipes from the beginning, you will start by setting up a basic web site set up, aimed at future expansion and scalability. Next, you will cover the basics of digital asset management—a major topic important in all enterprises. You can organize user groups because next you will be creating accounts for users and assigning permissions. Then you will jump into metadata—text information describing the multimedia objects—and learn how it can be manipulated in TYPO3. You will embed multimedia on your site when you have read the various methods for embedding mentioned in this book. Before you finish the book you will learn about some advanced topics, such as external API integrations and process automation.

Who is this book for?

This book is for anyone who is looking for effective systems for managing multimedia content. You will find this book interesting if you are running, or starting, web sites rich in multimedia content. This book assumes some prior knowledge about TYPO3, which is available either from official documentation, or other books on this topic.

What you will learn

  • Create impressive web sites by embedding images and manipulating them within Rich Text Editors by using content elements
  • Render videos and customize their display with the options in the content media object
  • Render your audio and video on several pages by administering it just in a single location using a TypoScript object
  • Create services that will automatically update Digital Asset Management records when an audio file is uploaded to your site
  • Allow web users to upload files into the system by creating an extension in TYPO3
  • Extract different formats of metadata and classify files using file metadata
  • Expand the system by leveraging services, specifically Amazon S3, Flickr, and YouTube and achieve limitless storage using Amazon S3
  • Enhance your CMS by adding different processing capabilities such as parsing metadata and converting files to your site
  • Automate workflows and processes in TYPO3

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Feb 03, 2010
Length: 228 pages
Edition : 1st
Language : English
ISBN-13 : 9781847198488
Languages :
Concepts :
Tools :

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

Product Details

Publication date : Feb 03, 2010
Length: 228 pages
Edition : 1st
Language : English
ISBN-13 : 9781847198488
Languages :
Concepts :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
R$50 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
R$500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts
R$800 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just R$25 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total R$ 859.97
TYPO3 4.2 E-Commerce
R$245.99
TYPO3 4.3 Multimedia Cookbook
R$245.99
Getting Started with Citrix XenApp 6.5
R$367.99
Total R$ 859.97 Stars icon
Banner background image

Table of Contents

8 Chapters
Getting Started Chevron down icon Chevron up icon
Managing Digital Assets Chevron down icon Chevron up icon
Operating with Metadata in Media Files Chevron down icon Chevron up icon
Rendering Images Chevron down icon Chevron up icon
Rendering Video and Audio Chevron down icon Chevron up icon
Connecting to External APIs Chevron down icon Chevron up icon
Creating Services Chevron down icon Chevron up icon
Automating Processes Chevron down icon Chevron up icon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.