A new version of Webnight Commander 2.0 was released. Webnight Commander is a web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel.
.:: Open Source Guides ::.
A new version of Webnight Commander 2.0 was released. Webnight Commander is a web file manager with interface similar to GNU Midnight Commander. The main difference is that Webnight Commander have only one directory panel.
As we all know the *nix platforms are case sensitive and this is causing some issues some times. It’s the same thing with apache. However there is a cure so no worries 🙂 In order to make your apache case-insensitive you need to have root access to the box. At least you need sudo. Firstly […]
It’s pretty simple. It can be done in 5 simple steps. 1: Create the directory area and set permissions to read the area 2: Create a file called .htaccess in the directory you want to protect In that file, type in these lines: AuthUserFile /your/directory/here/.htpasswd AuthGroupFile /dev/null AuthName “Secure Document” AuthType Basic require user username […]
If you have files on your server that are being displayed instead of prompting for download you can fix it very easy. Such example is the .jad files. If you have default installation of apache without additional mime types it’s going to display the .jad file in your browser instead of prompting for download. The […]
Firstly we will need to open console terminal and write the following User@TheUbuntuBox ~# sudo apt-get install apache2 autoconf automake1.4 autotools-dev libapache2-mod-php5 php5 php5-common php5-curl php5-dev php5-gd php-pear php5-ldap php5-mhash php5-mysql php5-mysqli php5-snmp php5-sqlite php5-xmlrpc php5-xsl php5-imap php5-mcrypt php5-pspell php5-gd autoconf automake1.4 autotools-dev libapache2-mod-php5 mysql-server We just installed Apache2, MySQL Server and PHP5. Now we […]
This will show you how to redirect your web pages. 301 Redirect 301 redirect is the most efficient and Search Engine Friendly method for webpage redirection. It’s not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, […]
This will show you how to install apache + mod_fastcgi + php 4.x on Nix system. #to unify the process and to make first a test that all will work fine we will install these first in /opt directory mkdir /opt/apache # we will create a source directory where we will download the apache source […]