Book Image

Drupal 6 Social Networking

By :
Book Image

Drupal 6 Social Networking

By:

Overview of this book

<p>Drupal is ideally equipped to be used as a base system for creating a custom social networking site like Facebook and MySpace. While these large social networks have their place, niche social networking web sites can help promote businesses, products, projects, and hobbies of any nature.<br /><br />This book provides careful instructions and clear explanations to take you through the setup and management of your social network site, covering topics from users to marketing to maintenance. It will help you create your own social networking site, suitable for whatever audience you decide!<br /><br />This book will take you from the very basics of both Drupal and Social Networking right through to more complicated aspects, like creating your own custom design and features for the site. With no experience of Drupal required, the book will introduce you to this award-winning CMS and carefully take you through the steps to create a social networking site from it. As the book progresses, you will learn how to add to and expand your social networking site, adding more features and adding value for your users, and how to make your users feel part of the community. Social networking web sites rely on their users contributing to the site, and this book helps you structure a site in a way users can easily and enjoyable contribute to the site &acirc;&euro;&ldquo; creating a powerful social network.<br /><br />The book begins with the fundamental concepts of a Social Networking site, and how we can use Drupal to create such a site. It then goes through installing Drupal before looking at expanding the out-of-the-box feature set with third-party modules designed for Social Networking. Once the web site is running, it looks at securing the Social Network, deploying it on the Internet, and keeping it running and well maintained. It doesn't stop there however; as Social Networks rely on their user base to run and become successful, the book also covers marketing the Social Network using Search Engine Optimization, Online Marketing, and a range of new Social Media.</p>
Table of Contents (17 chapters)
Drupal 6 Social Networking
Credits
About the Author
About the Reviewers
Preface
Index

Social aggregation


While the aggregator module is very useful, it isn't a very social feature. What would be great is if we could allow certain users to post feeds for their own web sites, or web sites they like, and have new content elements (nodes) created based on the items in those feeds.

We can do that with the FeedAPI module. This is a contributed module, which means we need to download and install it, before we can use it. Up until now, we have only used core modules, which didn't need to be downloaded first; we just had to enable them. We are going to cover installing contributed modules in much more detail later in this chapter. So let's quickly download and install this module without focusing too much on what we are doing to install it at this stage (as this will be covered in more detail shortly).

Download the module

We need to visit the Feed API project page http://drupal.org/project/feedapi, and download the official release which is Recommended for Drupal 6.x, as this ensures...