Install mod_log_sql

wget http://www.outoforder.cc/downloads/mod_log_sql/mod_log_sql-1.101.tar.bz2 bunzip tar -xvf cd /configure –with-apxs=/usr/local/apache/bin/apxs –with-mysql=/usr make make install mysql -u root -p mysql> create database apachelog; Configuring Apache to log to MySQL using mod_log_sql in httpd.conf LoadModule log_sql_module /usr/local/apache/libexec/mod_log_sql.so LoadModule log_sql_mysql_module /usr/local/apache/libexec/mod_log_sql_mysql.so

See More

Mod_Bandwidth

“Mod_bandwidth” (mod bandwidth) is a module for the Apache webserver that enable the setting of server-wide or per connection bandwidth limits, based on the directory, size of files and remote IP/domain. For Apache 1.3x. ONLY! This how-to is not compatible with old versions of apache, including but not limited to 1.3beta How to install mod_bandwidth […]

See More

mod_auth_mysql : How to install

wget http://prdownloads.sourceforge.net/modauthmysql/mod_auth_mysql-2.9.0.tar.gz?download tar xvzf mod_auth_mysql-2.9.0.tar cd mod_auth_mysql-2.9.0.tar /usr/local/apache/bin/apxs -c -lmysqlclient -lm -lz -I /usr/include/mysql/ mod_auth_mysql.c /usr/local/apache/bin/apxs -i mod_auth_mysql.so configtest Restart the live Apache server /etc/init.d/httpd restart

See More