steps to visualize HTTP server logging – part II

gnuplot 2d
edit /etc/apache2/mod_log_config.conf and add a new logformat (plots) – (“mod_log_config.conf” is referenced by “httpd.conf”)
LogFormat “%h %l %u %t \”%r\” %>s %b \ \”%{Referer}i\” \”%{User-Agent}i\”” combined
LogFormat “%h %{%d.%m.%Y:%H:%M:%S}t %D %U” plots
The characteristics of the “%” directives are:
%…h Remote host
%…{format}t time & date
%…D time taken to serve the request, in microseconds.
%…U URL path requested

read the article

SSL for wordpress login and admin section

add define(‘FORCE_SSL_ADMIN’, true); in wp-config.php
edit /etc/apache2/listen.conf and add NameVirtualHost *:443
add a virtualHost section to your httpd.conf

<VirtualHost *:443>
DocumentRoot “var/local/wwwroot/bernhard/”
ServerName bernhard.hensler.net
ErrorLog /var/log/apache2/error_log
TransferLog /var/log/apache2/access_log
SSLEngine on
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+
LOW:+SSLv2:+EXP:+eNULL
SSLCertificateFile /etc/apache2/ssl.crt/server.crt
SSLCertificateKeyFile /etc/apache2/ssl.key/server.key
</VirtualHost>

read the article

steps to visualize HTTP server logging – part I

apache
check Apache server version by creating a simple e.g. serverinfo.php file with following statement: <?php phpinfo(); ?>
and open in your browser: http://your host/serverinfo.php. Find the version info in the Apache Version section:
Apache Version – Apache/2.0.53 (Linux/SUSE)
or run from the command line:
/usr/sbin # apache2ctl -v
Server version: Apache/2.0.53
Server built: Aug 30 2006 13:14:23
h969344:/usr/sbin #
Next add [...]

read the article

click&buy

ich hatte diesen Account gekündigt, am 29.03.2009 – dachte ich jedenfalls. Am 02.07.2009 wird mir mitgeteilt, dass ich etwas gekauft habe, mit einem click&buy Account. Interessant ist, dass meinem wieder erwachten Account eine neue, mir unbekannte Kreditkarte hinzugefügt wurde (meine im Account gelistete Karte konnte nicht belastet werden, da abgelaufen) und ich vermute, dass der [...]

read the article

HTML Charater Code

The following table gives the character entity reference, decimal character reference, and hexadecimal character reference for 8-bit characters in the Latin-1 (ISO-8859-1) character set, as well as the rendering of each in your browser. Glyphs of the characters are available at the Unicode Consortium.

read the article