Book Image

Drupal 7 Social Networking

Book Image

Drupal 7 Social Networking

Overview of this book

Drupal is ideally equipped to serve as a base system for creating a custom social networking site like Facebook or MySpace. While these large social networks have their place, niche social networking websites can help promote businesses, products, projects, and hobbies of any nature. Drupal 7 Social Networking 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 choose! Starting from the very basics of both Drupal and Social Networking, right through to more complicated aspects, you will progressively learn how to add to and expand your social networking site and add more features. You will learn how to secure your social network, deploy it on the Internet, and keep it running and well maintained. As social networking sites rely on the participation of their users, this book helps you to structure your site in such a way so that users can easily and enjoyably contribute, thus creating a powerful social network.
Table of Contents (22 chapters)
Drupal 7 Social Networking
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
Index

Server performance and configuration


The topics we have discussed so far focus on code changes, or introducing other services to reduce the work our web server needs to do. Our site runs on services which are highly configurable in their own right, including Apache, MySQL and PHP—all of which can be configured and tuned for performance using their various configuration files.

Apache

Our Apache configuration file (name and location depend on the setup of the server) contain settings relating to how many connections can be accepted, timeout period, and so on.

The maximum number of clients which can connect to the server at any one time is set by the MaxClient Directive in the configuration file; this can be increased to allow more connections to the server, provided we have sufficient resources to allow this of course. More information is available at http://httpd.apache.org/docs/2.0/mod/mpm_common.html#maxclients.

The length of time a process can take before Apache times out the request is...