Use the next command to get the list of the 10 biggest subdirs.
du -sk * | sort -nr | head -10
http://askubuntu.com/questions/5980/how-do-i-free-up-disk-space
sudo apt-get install apache2
sudo mkdir -p /var/www/example.com/public_html
sudo chown -R $USER:$USER /var/www/example.com/public_html
sudo chmod -R 755 /var/www
sudo nano /var/www/example.com/public_html/index.html
<html> <head> <title>www.example.com</title> </head> <body> <h1>Success: You Have Set Up a Virtual Host</h1> </body> </html>sudo cp /etc/apache2/sites-available/default /etc/apache2/sites-available/example.comsudo nano /etc/apache2/sites-available/example.com<VirtualHost *:80>ServerAdmin webmaster@example.com ServerName example.com ServerAlias www.example.com [...]DocumentRoot /var/www/example.com/public_htmlsudo a2ensite example.comsudo service apache2 restartFull Article
https://www.digitalocean.com/community/articles/how-to-set-up-apache-virtual-hosts-on-ubuntu-12-04-lts
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function(){
var Privileges = jQuery('#privileges');
var select = this.value;
Privileges.change(function () {
if ($(this).val() == 'custom') {
$('.resources').show();
}
else $('.resources').hide();
});
});
</script>
<div>
<label>Privileges:</label>
<select name="privileges" id="privileges" class="" onclick="craateUserJsObject.ShowPrivileges();">
<option id="all" value="all">All</option>
<option id="custom" value="custom">Custom</option>
</select>
</div>
<div class="resources" style=" display: none;">resources</div>
</select><select name="location" class="dependent-demo1"><option></option><option value="238">London > North > Enfield</option><option value="239">London > North > Barnet</option><option value="240">London > South > Croydon</option><option value="241">London > South > Bromley</option><option value="242">London > South > Sutton</option><option value="243">Bristol > St Pauls</option><option value="244">Bristol > Horfield</option><option value="245">Bristol > Bedminster</option><option value="246">Bournemouth</option>
})$(function(){$('.dependent-demo1').dependentSelects();
upload_max_filesize 20M
post_max_size 20M
max_input_time 300 (this is around 5 minutes)
max_execution_time 300
echo phpinfo();
<script>
$("#link").click(function(){
$("#add").append(" <b>Appended text</b>.");
});
</script>
<html>
<div id="add"></div>
<p id="link">Append text</p>
</html>
<script>
$("#link-empty").click(function(){
$("#add").empty();
});
</script>
<html>And this example is going to empty all the elements of the div with id="add" only on click in the Remove text.
<div id="add"></div>
<p id="link-empty">Empty Div </p>
</html>
<script>
$("#link-remove").click(function(){
$("#add").remove();
});
</script>
<html>And this example is going to all Div (add) from your site.
<div id="add"></div>
<p id="link-remove">Remove Div</p>
</html>