Virtualmin Suexec Problem

The Suexec command on your system is configured to only run scripts under /var/www, but the Virtualmin base directory is /home. CGI and PHP scripts run as domain owners will not be executed.

to solve this problem

1. install custom version of suexec
apt-get install apache2-suexec-custom
2. modify /etc/apache2/suexec/www-data
nano /etc/apache2/suexec/www-data
3. change first line /var/www to /home

it should solve the problem

Uninstall Package and It’s Configurations on Ubuntu

Ubuntu comes with package management system, apt. you can easily use apt-get to install or remove package in the other words install or remove software (program) on your ubuntu machine.

Uninstall Package on Ubuntu 11.10

Installing software command
apt-get install packagename
for example
apt-get install bind9

removing software command
apt-get remove packagename
for example
apt-get remove bind9
Continue reading