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
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Drupal 7 Social Networking

You're reading from   Drupal 7 Social Networking Build a social or community website with friends lists, groups, custom user profiles, and much more

Arrow left icon
Product type Paperback
Published in Sep 2011
Publisher Packt
ISBN-13 9781849516006
Length 328 pages
Edition 1st Edition
Languages
Tools
Concepts
Arrow right icon
Toc

Table of Contents (22) Chapters Close

Drupal 7 Social Networking
Credits
About the Author
Acknowledgement
About the Reviewers
www.PacktPub.com
Preface
1. Drupal and Social Networking FREE CHAPTER 2. Preparing Drupal for a Social Networking Site 3. User Content: Contributions, Forums, and Blogs 4. Users and Profiles 5. Enabling User Interaction 6. Social Seasoning 7. Module Development: Rapidly Improve your Social Network 8. How We Can Design Our Site 9. Communicating with Our Users 10. Deploying and Maintaining Your Social Network 11. Easing Growing Pains 12. Promotion, SEO, User Retention, and Monetization Strategies Setting up a Local Development Environment Installed Modules Index

Linux


The exact installation instructions for Linux vary depending on the distribution used; however, the following instructions should work for Ubuntu and other Debian based distributions like Debian itself. You might want to consider using a program such as VirtualBox (http://www.virtualbox.org/) to run a Linux web server on top of your Windows or Mac (or even Linux if you wish for your development environment to be virtualized) computer, to effectively test the Drupal site on a Linux environment before putting it online.

Install Apache

In order to install Apache, run the following command:

sudo apt-get install apache2

Enable the rewrite module and restart Apache

In order to enable the rewrite Apache module, run the following command:

sudo a2enmod rewrite
sudo /etc/init.d/apache2 reload

Install PHP

To install PHP, run the following command:

sudo apt-get install php5

Enable MySQL and GD

In order to enable the MySQL and GD extensions for PHP, run the following commands:

sudo apt-get install php5-mysql php5-gd
sudo /usr/sbin/apache2ctl graceful

Install MySQL

In order to install MySQL, run the following command:

sudo apt-get install mysql-server mysql-client libmysqlclient15-dev

Install phpMyAdmin

In order to install phpMyAdmin run the following command:

sudo apt-get install phpmyadmin
lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image