Web Servers

AskApache.comThe Function: askapache_calendar Note the screenshot is awesome due to my custom .vimrc. It is missing the randomized color in the code below. Download OpenBSD Calendars By default this script will use any calendars in y...
AskApache.comThe Function: askapache_calendar Note the screenshot is awesome due to my custom .vimrc. It is missing the randomized color in the code below. Download OpenBSD Calendars By default this script will use any calendars in your home directory ~/.calendars. If that directory does not exist when you call this function, it will tell you it is installing the calendars for you. It grabs the list of calendars straight from here. Here is the list: calendar.all calendar.birthday calendar.canada calendar.christian calendar.computer calendar.croatian calendar.discord calendar.fictional calendar.french calendar.german calendar.history calendar.holiday calendar.judaic calendar.music calendar.openbsd calendar.pagan calendar.russian calendar.space calendar.ushistory calendar.usholiday calendar.world Calendar Function Examples Illustrating the random color output. Source Code for Calendar Function Download askapache_calendar.sh #!/bin/bash # Updated: Thu May 16 21:07:54 2013 # @ http://www.askapache.com/linux/show-events-occurred-day-linux.html # Copyright (C) 2013 Free Software Foundation, Inc. # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . function askapache_calendar () { if [[ ! -d ~/.calendar ]]; then echo "INSTALLING CALENDARS TO ~/.calendar"; local U=http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/usr.bin/calendar/calendars/ OPWD=$PWD; mkdir -pv ~/.calendar; cd ~/.calendar curl -# $(for f in $(curl -sSo - $U | sed '/">calendar\./!d; s,^.*; …Show Events that Occurred on this day in the Past… originally appeared on AskApache.comThe post Show Events that Occurred on this day in the Past appeared first on AskApache.
score: 1 about 1 hour ago
An anonymous reader writes with this quick bite from the H: "Just a few days after the one year anniversary of the release of the first version of OpenOffice from the Apache Foundation (Apache OpenOffice 3.4) on 8 May 2012, the project c...
An anonymous reader writes with this quick bite from the H: "Just a few days after the one year anniversary of the release of the first version of OpenOffice from the Apache Foundation (Apache OpenOffice 3.4) on 8 May 2012, the project can now boast 50 million downloads of the Open Source office suite. 10 million of those downloads happened since the beginning of March. In contrast, LibreOffice claimed it had 15 million unique downloads of its office suite in all of 2012." Read more of this story at Slashdot.
score: 1 about 10 hours ago
The Apache Tomcat team announces the immediate availability of Apache Tomcat 7.0.40. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Apache Tomcat is an open source software implementation of the Java ...
The Apache Tomcat team announces the immediate availability of Apache Tomcat 7.0.40. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Apache Tomcat is an open source software implementation of the Java Servlet, JavaServer Pages and Java Expression Language technologies. This release contains a security fix and a number of bug fixes and improvements compared to version 7.0.39. The notable changes include:read more
score: 1 4 days ago
An anonymous reader writes "Last week's revelation of the existence of Linux/Cdorked.A, a highly advanced and stealthy Apache backdoor used to drive traffic from legitimate compromised sites to malicious websites carrying Blackhole explo...
An anonymous reader writes "Last week's revelation of the existence of Linux/Cdorked.A, a highly advanced and stealthy Apache backdoor used to drive traffic from legitimate compromised sites to malicious websites carrying Blackhole exploit packs, was only the beginning — ESET's continuing investigation has now revealed that the backdoor also infects sites running the nginx and Lighttpd webservers. Researchers have, so far, detected more than 400 webservers infected with the backdoor, and 50 of them are among the world's most popular and visited websites." Here's the researchers' original report. Read more of this story at Slashdot.
score: 1 8 days ago
AskApache.comSo if you don't already know, I am a long-time user and supporter of Arch Linux. Arch uses a package management tool called pacman that works similarly to yum or apt, but much better IMHO. It uses a list of mirrors to perf...
AskApache.comSo if you don't already know, I am a long-time user and supporter of Arch Linux. Arch uses a package management tool called pacman that works similarly to yum or apt, but much better IMHO. It uses a list of mirrors to perform the actual downloading of the package files, so you want the fastest mirrors to be in the mirror list. The old way is to use reflector to rank the speed of the mirrors, which is a python script. My way is pure bash using curl, sed, awk, xargs, and sort. Very simple and IMHO more effective than reflector. Creating /etc/pacman.d/mirrorlist Just run the script and redirect the output to /etc/pacman.d/mirrorlist like this: $ ./reflector.sh | sudo tee /etc/pacman.d/mirrorlist How it works Well it's simple, essentially it performs these steps: Fetch the current list of (only current 100%) mirrors from the official site. Use curl to request a small 257 byte file from each of those mirrors (about 200-300), 40 at a time and save the fastest 50. This also gets the dns cached
score: 1 10 days ago
The Apache Tomcat team announces the immediate availability of Apache Tomcat 6.0.37 stable. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Apache Tomcat 6.0.37 is primarily a sec...
The Apache Tomcat team announces the immediate availability of Apache Tomcat 6.0.37 stable. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Apache Tomcat 6.0.37 is primarily a security and bug fix release. All users of older versions of the Tomcat 6.0 family should upgrade to 6.0.37. Note that is version has 4 zip binaries: a generic one and three bundled with Tomcat native binaries for different CPU architectures.read more
score: 1 10 days ago
AskApache.comWant to redirect all links with any uppercase characters to lowercase using pure mod_rewrite within an .htaccess file? Sure why not! OR how to use RewriteMap and mod_speling for those with access to httpd.conf Htaccess t...
AskApache.comWant to redirect all links with any uppercase characters to lowercase using pure mod_rewrite within an .htaccess file? Sure why not! OR how to use RewriteMap and mod_speling for those with access to httpd.conf Htaccess to Redirect Upperca
score: 1 17 days ago
AskApache.comHere's a nifty little idea I had that has some merit. Separate favicons for separate areas of a site. Basically, I can't live without Firefox or Chrome and the way they use multiple tabs. I usually have several tabs open f...
AskApache.comHere's a nifty little idea I had that has some merit. Separate favicons for separate areas of a site. Basically, I can't live without Firefox or Chrome and the way they use multiple tabs. I usually have several tabs open for a single site.
score: 1 17 days ago
The location of the Netcraft News feed has been changed. The RSS feed is now available at: http://news.netcraft.com/feed The Atom feed is now available at: http://news.netcraft.com/feed/atom
The location of the Netcraft News feed has been changed. The RSS feed is now available at: http://news.netcraft.com/feed The Atom feed is now available at: http://news.netcraft.com/feed/atom
score: 1 17 days ago
An anonymous reader writes "ESET researchers, together with web security firm Sucuri, have been analyzing a new threat affecting Apache webservers. The threat is a highly advanced and stealthy backdoor being used to drive traffic to mali...
An anonymous reader writes "ESET researchers, together with web security firm Sucuri, have been analyzing a new threat affecting Apache webservers. The threat is a highly advanced and stealthy backdoor being used to drive traffic to malicious websites car
score: 1 17 days ago