Install drupal on linux

28 sec read

|| what is drupal cms
please take alook this

|| how to install drupal on linux
| dowload and extract package

# wget //ftp.drupal.org/files/projects/drupal-7.0.tar.gz
# tar -xzf drupal-7.0.tar.gz
# mv drupal-7.0/*  drupal-7.0/.htaccess htdocs/
# cd htdocs/

| setup drupal before installing

# cp sites/default/default.settings.php sites/default/settings.php
# chmod a+w sites/default
# chmod a+w sites/default/settings.php

| configure mysql db for drupal

mysql> create database db_name;
mysql> grant all privileges on db_name.* to db_username@localhost identified by 'db_password';
mysql> flush privileges;

| open your url and installing drupal via web browser

| change permission on drupal file
after installing finished, change permission on this file

# chmod go-w sites/default
# chmod go-w sites/default/settings.php

|| links
| google
| drupal

How to fix problem with the editor ‘vi’

:: git error with vi error: There was a problem with the editor 'vi'   :: how to fix the problem 0. check path...
sysadmin.id
10 sec read

Apache :: MP4 Streaming

:: How to Enable mp4 Streaming in Apache + Installing mod h624 streaming wget //h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz tar -xzf apache_mod_h264_streaming-2.2.7.tar.gz cd mod_h264_streaming-2.2.7/ ./configure --with-apxs=`which apxs2` make...
sysadmin.id
18 sec read

Apache :: Flash / FLV Streaming

:: How to Configure Apache for FLV Streaming + Installing mod_flvx wget //people.apache.org/~pquerna/modules/mod_flvx.c which apxs /usr/bin/apxs /usr/bin/apxs -cia mod_flvx.c + setup mod_flvx in http.conf...
sysadmin.id
15 sec read