sudo /etc/init.d/apache2 reload
sudo vim /etc/apache2/sites-available/default
In the ”<Directory /var/www/>” section, change:
AllowOverride None
To:
AllowOverride All
Reload Apache's configuration:
sudo /etc/init.d/apache2 reload
Ref: Ubuntu documentation: Enabling Use Of Apache Htaccess Files
sudo a2enmod rewrite
Reload Apache's configuration:
sudo /etc/init.d/apache2 force-reload
sudo apache2ctl -M
sudo vim /etc/apache2/sites-available/default
Change:
allow from all
To:
allow from 206.12.30
Version of Ubuntu
lsb_release -a
or
cat /etc/lsb-release
Kernel version
uname -r
The default ffmpeg (installable via Synaptic) can't convert audio to MP3 (audio format for FLV). A solution is to install ffmpeg from Medibuntu repositories.
Example:
ffmpeg -i movie.avi -ar 22050 -ab 8 -qscale 6 -r 15 -s 320x240 -f flv movie.flv