I recently updated my communities look from a custom style to the default style. After doing so, I noticed that the user profiles were still using the custom style.

You can fix this by editing your own profile. Simply click the “Customize My Profile” button on the right, choose “Default” and then “Save as Site Default”. Your profile, along with those who have not customized theirs will now display in line with the default style.

Use the following commands to enable and disable sites in Apache 2.

# enable site
sudo a2ensite

# disable site
sudo a2dissite

# enable an apache2 module
sudo a2enmod

# e.g. a2enmod php4 will create the correct symlinks in mods-enabled to allow the module to be used. In this example it will link both php4.conf and php4.load for the user

# disable an apache2 module
sudo a2dismod

# force reload the server:
sudo  /etc/init.d/apache2 force-reload
, , ,