Kategoriarkiv: Apache

sql til mod_sql_log

smid mod_sql_log ind: http://www.outoforder.cc/projects/apache/mod_log_sql/’ guide: http://www.linux-mag.com/2002-10/lamp_01.html sæt flg i mod_sql_log.conf: LogSQLLoginInfo localhost apache KoDe LogSQLSocketFile /var/run/mysql/mysql.sock LogSQLDatabase apache LogSQLCreateTables On LogSQLMassVirtualHosting On LogSQLPreserveFile apache_queries.sql nice queries: # sidste 30 besøg med lidt relevant data SELECT remote_host, request_uri, bytes_sent, status, FROM_UNIXTIME(time_stamp) … Læs resten

Udgivet i Apache, Knowledge Base, Old Base, SQL | Skriv en kommentar

Apache (2.x) logfiler i MySQL

Flg, får apache til at formattere logen og parse den til stdin på mysqllog.pl CustomLog “| /usr/bin/mysqllog.pl” mysql LogFormat “%h#%v#%U#%{User-agent}i#%{Referer}i#%s#%b#%r” mysql Mysqllog parser så input til mysql: #!/usr/bin/perl # script: mysqllog use DBI; use constant DSN => ‘dbi:mysql:system’; use constant … Læs resten

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

Apache, php & mysql on Windows

Fetch: http://archive.apache.org/dist/httpd/binaries/win32/apache_1.3.29-win32-x86-no_src.exe doubleclick the file and follow the install: Network domain should be ‘localhost’ Server name should be ‘127.0.0.1’ Admin email should be your email. Otherwise just leave the defaults, after install your apache should be running. Fetch php windows … Læs resten

Udgivet i Apache, Knowledge Base, Networking, Old Base, PHP, SQL | Skriv en kommentar

Enabling directory indexes in Apache (2)

The default setting should be something like: <Directory /> Options FollowSymLinks AllowOverride All </Directory> Just add indexes: <Directory /> Options FollowSymLinks indexes AllowOverride All </Directory>

Udgivet i Apache, FreeBSD, Knowledge Base, Lamp, Linux, Old Base | Skriv en kommentar

Secure include($_REQUEST[‘page’])

<? $allowed=explode(‘ ‘,’forside profil produkter sikkerhed service kontakt’); if (in_array($_REQUEST[‘p’],$allowed)) { include($_REQUEST[‘p’].’.inc’); } else { include($allowed[0].’.inc’); } ?> include file.inc as contained in $_REQUEST[‘p’] (query variable) if `file` are liste in the $allowed array.

Udgivet i Apache, Knowledge Base, Old Base, Security | Skriv en kommentar

Fetch virtualhosts fra mysql i apache

Når jeg selv har testet det af ryger min egen version online: http://guides.printf.dk/perl-dbi.htm Apache med virtualhosts fra en MySQL DB Af: Jesper Noehr <spike@printf.dk> 21/01/03 Smid dette perl-kode i bunden af din httpd.conf: <Perl> use DBI; my ($sth, $dbh, $sname, … Læs resten

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

htaccess password

AuthName “– Clasified area –” AuthType Basic AuthUserFile /data/www/htpasswd require user dinuser password filen laver du med /sti/til/apache/htpasswd -c .htpasswd dinuser  

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

Custom 404 i apache

Tilfoej: ErrorDocument 404 /404.html Til httpd.conf , enten i selve filen eller i et virtualhosts statement. Kan efter sigende ogsaa placeres i .htaccess. Filen skal her ligge i webroden af det aktuelle domaene. Ellers kan det nævnes at der er … Læs resten

Udgivet i Apache, Knowledge Base, Old Base | Skriv en kommentar

Keeping up2date with deamons

Apache http://httpd.apache.org/lists.html#http-announce

Udgivet i Apache, Knowledge Base, Links, Old Base | Skriv en kommentar

.htaccess password protection

The htaccess file: AuthName “– Clasified area –” AuthType Basic AuthUserFile /www/htpasswd require user rip rap rup To initialize the passwd file: , file must be outside wwwroot root@chilibeans:/root# htpasswd -c /www/htpasswd mike New password: Re-type new password: Adding password … Læs resten

Udgivet i Apache, FreeBSD, Knowledge Base, Lamp, Linux, Old Base | Skriv en kommentar