Tech Guru
How to Install Lighttpd, Python, And python-mysqldb on Debian
we must install Python and python-mysqldb in addition to lighttpd. You can install these packages as follows: apt-get install lighttpd python python-mysqldb
How to Install PureFTPd With MySQL Support
Again, there’s no PureFTPd package in the official CentOS 5.0 repositories, but the centos.karan.org repository has a PureFTPd package for CentOS 5.0 (in thekbs-CentOS-Testing repository). Therefore we add this repository to our official CentOS repositories: cd /etc/yum.repos.d/wget http://centos.karan.org/kbsingh-CentOS-Extras.repo Now we must enable the kbs-CentOS-Testing repository. To do this, we open the file kbsingh-CentOS-Extras.repo and change enabled=0 to enabled=1 in thekbs-CentOS-Testing [...]
How to Configure mod_defensible in APache 2
See mod_defensible installation details here . Open /etc/apache2/apache2.conf and go to the end where the virtual hosts are configured, and put the mod_defensible configuration right before the virtual hosts: vi /etc/apache2/apache2.conf [...] # Include generic snippets of statements Include /etc/apache2/conf.d/ DnsblUse On DnsblServers httpbl.abuse.ch sbl-xbl.spamhaus.org DnsblNameserver 145.253.2.75 # Include the virtual host configurations: Include /etc/apache2/sites-enabled/ DnsblUse On [...]
How to Install Apache2/mod_fcgi/PHP5
In order to install Apache2, mod_fcgid, and PHP5, run apt-get install apache2 libapache2-mod-fcgid php5-cgi If Apache2 was already installed with PHP5 as an Apache module, disable the PHP5 module now: a2dismod php5 Then enable the following modules… a2enmod rewritea2enmod suexeca2enmod includea2enmod fcgid … and open /etc/php5/cgi/php.ini: vi /etc/php5/cgi/php.ini Add the line cgi.fix_pathinfo = 1 right at the [...]
How to Enable mod_php for apache2 server in etch
Use the following commands For php4 users the following command #aptitude install libapache2-mod-php4 For php5 users the following command #aptitude install libapache2-mod-php5 If you install the PHP4 or PHP5 modules for Apache2 then they will automatically enable themselves.If you have any problem you can use the following commands to enable php modules manually. For php4 [...]
How to Monitor Proftpd Server Using phpftpwho
ProFTPD is a proven, high-performance, scalable FTP server written from scratch, with a focus toward simplicity, security, and ease of configuration. Naturally, ProFTPD powers some of the largest sites on the Internet. It features a very Apache-like configuration syntax, modules, and a highly customizable server infrastructure, including support for multiple ‘virtual’ FTP servers, anonymous FTP, [...]
How to Easily Optimize Firefox SQLite Databases with SpeedyFox Portable
If you go to your Firefox profile folder, you should see a bunch of files ending with .sqlite extension. There are a total of 10 sqlite databases which is content-prefs.sqlite, cookies.sqlite, downloads.sqlite, formhistory.sqlite, places.sqlite, permissions.sqlite, search.sqlite, signons.sqlite, urlclassifier3.sqlite and webappsstore.sqlite. Searching the Internet reveals a lot of guides and even Firefox addons that can automatically [...]
How to Hack a Windows XP Computer and find out all and any passwords on the machine
Steps to Hack into a Windows XP Computer without changing password: 1. Get physical access to the machine. Remember that it must have a CD or DVD drive. 2. Download DreamPackPL HERE. 3. Unzip the downloaded dpl.zip and you’ll get dpl.ISO. 4. Use any burning program that can burn ISO images. 5. After you have the [...]
How to Recover Firefox Saved Usernames and Passwords
Firefox can securely save passwords you enter in web forms to make it easier to log on to websites. By default the option “Remember passwords for sites†option is enabled but you will still be asked whether to save passwords for a site when you first visit it. Clicking the Remember button will save the [...]
How to Install The MySQL Database Server on Ubuntu 8.10
Install unzip to be able to unpack the SugarCRM package later: apt-get install unzip Install MySQL: apt-get install mysql-server mysql-client You will be asked the following questions: New password for the MySQL “root” user: <– yourrootsqlpassword (a password of your choice) Repeat password for the MySQL “root” user: <– yourrootsqlpassword
Is Apple’s Snow Leopard Threaten Windows 7
Microsoft’s Windows 7 and Apple’s Snow Leopard have begun drawing comparisons as both operating systems approach their respective release dates. Despite a few business-centric improvements to Snow Leopard, however, study data suggests that it may make limited inroads in the enterprise and among small and midsize businesses. Windows 7 also may face a slower rate [...]
How to Configure mod deflate for Apache 2.2.x
Loading Mod Deflate First make sure that you are loading mod_deflate.so, this line should be at the top of your httpd.conf file and is usually loaded by default. LoadModule deflate_module libexec/apache22/mod_deflate.so Mod Deflate Settings Second create a new config file to keep the deflate options in. # ee /usr/local/etc/apache22/Include/mod_deflate.conf This file will be included in [...]
How to Install Java on FreeBSD
Installing Java on FreeBSD using /usr/ports/java/jdk14 is possibly the most annoying port ever to install. Its going to require you to manually go on online, register for an account on sun.com, and download several files from sun.com and other places. It will also of course ask for these through out the install instead of all [...]
How to compile imap with php on RHEL
libc-client-devel-2002e-14.i386.rpm To compile imap on RHEL you just incluse the follwoing line along with your command –with-imap –with-imap-ssl –with-kerberos if you are getting a error “ utf8_mime2text() has new signature, but U8T_CANONICAL is missing.“ then just install the following rpm libc-client-devel-2002e-14.i386.rpm
How to compile memcached 1.4 on MAC
Download libevent from this site: http://www.monkey.org/~provos/libevent/ Then unpack, configure and compile it. Also install it in /usr/local ./configure –prefix=/usr/local make make install Then obtain latest memcached from: http://www.danga.com/memcached/download.bml Then unpack, configure and compile. You need to point to the same folder so configure could find the library. unpack ./configure –with-libevent=/usr/local/ make ./memcached -u root -vv [...]
