web server log file analysis
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8371
Run a web server inside LAN
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. more>>
Run a web server inside LAN is a simple script to run a WWW server inside a Local Area Network. Run a web server inside LAN script assume all iptables features are compiled statically in the kernel, or all modules are loaded.
Otherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
<<lessOtherwise you may encounter some surprises trying to utilize the more featureful and creative commandlines that Ive come up with.
Sample:
#external and internal interfaces
EXT=eth0
INT=eth1
# clear everything, and create my cascading chains
iptables -F
iptables -N e0
iptables -N tcpin
iptables -N udpin
# e0 is the name of our chain for eth0
iptables -I INPUT -i $EXT -j e0
# OUTPUT Chain
iptables -A OUTPUT -o $EXT -j DROP -p icmp --icmp-type ! echo-request
# remote gnutella queries were really pissing me off one day
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --dport 6346
# iptables -A OUTPUT -o $EXT -j DROP -p tcp ! --syn --sport 6346
# $EXT Chain
# a single rule to accept SYN Packets for multiple ports (up to 15)
iptables -A tcpin -j ACCEPT -p tcp --syn -m multiport --destination-ports 873,993,995,143,80,113,21,22,23,25,53
# stateful connection tracking is wonderful stuff
# ESTABLISHED tcp connections are let through
# If we send a SYN out, the ACK is seen as RELATED
# then further communication is accepted by the ESTABLISHED rule
iptables -A e0 -j ACCEPT -m state --state ESTABLISHED
iptables -A e0 -j ACCEPT -m state --state RELATED
# certain ports I simply DROP
iptables -A tcpin -j DROP -p tcp --syn -m multiport --destination-ports 6346,139
# UDP rules...
iptables -A udpin -j DROP -p udp -m multiport --destination-ports 137,27960
# I run a DNS server, so we must accept UDP packets on port 53
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 53
# lets log NEW udp packets on ports 1024:65535, then let them through
iptables -A udpin -j LOG -p udp -m state --state NEW --destination-port 1024:65535 --log-level debug --log-prefix UDPNEW --log-ip-options
iptables -A udpin -j ACCEPT -p udp -m state --state NEW --destination-port 1024:65535
# lets log NEW tcp packets on ports 1024:65535, then let them through
iptables -A tcpin -j LOG -p tcp --syn --destination-port 1024:65535 --log-level debug --log-prefix TCPNEW --log-tcp-options --log-ip-options
iptables -A tcpin -j ACCEPT -p tcp --syn --destination-port 1024:65535
# lets log INVALID or NEW tcp packets on priveleged ports, then DROP
# (remember I have certain ACCEPT rules higher up the chain)
iptables -A tcpin -j LOG -p tcp -m state --state INVALID,NEW --destination-port 1:1023 --log-level warn --log-prefix TCPPRIV --log-tcp-options --log-ip-options
iptables -A tcpin -j DROP -p tcp -m state --state INVALID,NEW --destination-port 1:1023
iptables -A e0 -p tcp -j tcpin
iptables -A e0 -p udp -j udpin
iptables -A e0 -j LOG --log-level debug --log-prefix NETFILTER --log-ip-options -m state --state INVALID,NEW
iptables -A e0 -j DROP
# NAT Rules
# I run a web server inside...
iptables -t nat -A PREROUTING -p tcp -i eth0 --dport 80 -j DNAT --to-destination 192.168.1.4:80
Download (MB)
Added: 2007-02-14 License: GPL (GNU General Public License) Price:
985 downloads
Abyss Web Server X1 2.6
Abyss Web Server X1 is a free and compact Web server. It supports SSL, compression, CGI/FastCGI, ISAPI, XSSI, URL rewriting,bandwidth throttling, anti-leeching, anti-hacking, and features a remote web management interface. more>> <<less
Download (0.64MB)
Added: 2009-04-04 License: Freeware Price: $0
73043 downloads
Other version of Abyss Web Server X1
License:GPL (GNU General Public License)
DeniX Server OS 0.3
DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. more>>
DeniX Server OS is an independent Linux based distribution built from scratch by Denis Salmanovich. They aim to offer a user-friendly full-featured server operating system, pre-configured, well structured and easy to work with, and filled with the latest stable versions of Linux apps.
Its easy to install and configure. Every package is downloaded from the authors source and compiled when installed.
Main features:
- Domain Controller
- ADSL/CABLE Router (PPPoE)
- Network Firewall
- Anti Virus Gateway
- Anti Spam Gateway
- Mail Server (local & external) + Web Mail
- Calendar Sharing Support
- Network File Server
- DHCP Server
- TFTP BOOT Server
- WINS Server
- FTP Server
- VPN Server
- DNS Server
- DDNS Server
- MySQL Server
- HTTP Apache Server
- Remote Backup Solutions
- Remote control and administration
- Print Queue Server
- Proxy Server
<<lessIts easy to install and configure. Every package is downloaded from the authors source and compiled when installed.
Main features:
- Domain Controller
- ADSL/CABLE Router (PPPoE)
- Network Firewall
- Anti Virus Gateway
- Anti Spam Gateway
- Mail Server (local & external) + Web Mail
- Calendar Sharing Support
- Network File Server
- DHCP Server
- TFTP BOOT Server
- WINS Server
- FTP Server
- VPN Server
- DNS Server
- DDNS Server
- MySQL Server
- HTTP Apache Server
- Remote Backup Solutions
- Remote control and administration
- Print Queue Server
- Proxy Server
Download (MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1275 downloads
Sws Web Server 0.1.7
Sws Web Server is a fast, secure, and simple Web server. more>>
Sws Web Server is a fast, secure, and simple Web server.
Installation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
<<lessInstallation:
./make
./make install
Usage:
For start
Redhat and Debian users
/etc/init.d/sws_web_server.init start
slackware users
/etc/rc.d/init.d/rc.sws start
First create /etc/sws directory
sws.conf file copy in to /etc/sws
Edit sws.conf
Enhancements:
- A file transfer problem has been solved.
Download (0.005MB)
Added: 2005-07-13 License: GPL (GNU General Public License) Price:
1569 downloads
Visitors Web Log Analyzer 0.61
Visitors is a very fast Web log analyzer. more>>
Visitors is a very fast web log analyzer for Linux, Windows, and other Unix-like operating systems. It takes as input a web server log file, and outputs statistics in form of different reports. The design principles are very different compared to other software of the same type:
No installation required, can process up to 150,000 lines of log entries per second in fast computers (20MB/s with my log files average length).
Designed to be executed by the command line, output html and text reports. The text report can be used in pipe to less to check web stats from ssh.
Support for real time statistics with the Visitors Stream Mode introduced with version 0.3.
To specify the log format is not needed at all. Works out of box with apache and most other web servers with a standard log format (see the documentation for more information on the format).
Its a portable C program, can be compiled on many different systems. Binaries for Windows systems are in the Download section of this page.
The produced html report doesnt contain images or external CSS, is self-contained, you can send it by email to users.
Visitors is free software (and of course, freeware), under the terms of the GPL license. You dont need to pay to use it. Visitors is supported, if you want a custom version made directly by the original author for a modest price, contact me at antirez (at) invece.org. ISPs may take advantage of the high processing speed.
Main features:
- Requested pages.
- Requested images.
- Referers by hits and age.
- Unique visitors in each day.
- Page views per visit.
- Pages accessed by the Google crawler (and the date of googles last access on every page).
- Percentage of visits originated from Google searches for every day.
- Users navigation patterns (web trails).
- Keyphrases used in Google searches.
- User agents.
- Weekdays and Hours distributions of accesses.
- Weekdays/Hours combined bidimentional map.
- Month/Year combined bidimentional map.
- Visual path analysis with Graphviz.
- Operating systems, browsers and domains popularity.
- 404 errors.
Enhancements:
- This release adds an important bugfix in the unique visitors algorithm.
- The output is now nearer to reality (though unique visitors stats are always a guess without the use of a cookie).
<<lessNo installation required, can process up to 150,000 lines of log entries per second in fast computers (20MB/s with my log files average length).
Designed to be executed by the command line, output html and text reports. The text report can be used in pipe to less to check web stats from ssh.
Support for real time statistics with the Visitors Stream Mode introduced with version 0.3.
To specify the log format is not needed at all. Works out of box with apache and most other web servers with a standard log format (see the documentation for more information on the format).
Its a portable C program, can be compiled on many different systems. Binaries for Windows systems are in the Download section of this page.
The produced html report doesnt contain images or external CSS, is self-contained, you can send it by email to users.
Visitors is free software (and of course, freeware), under the terms of the GPL license. You dont need to pay to use it. Visitors is supported, if you want a custom version made directly by the original author for a modest price, contact me at antirez (at) invece.org. ISPs may take advantage of the high processing speed.
Main features:
- Requested pages.
- Requested images.
- Referers by hits and age.
- Unique visitors in each day.
- Page views per visit.
- Pages accessed by the Google crawler (and the date of googles last access on every page).
- Percentage of visits originated from Google searches for every day.
- Users navigation patterns (web trails).
- Keyphrases used in Google searches.
- User agents.
- Weekdays and Hours distributions of accesses.
- Weekdays/Hours combined bidimentional map.
- Month/Year combined bidimentional map.
- Visual path analysis with Graphviz.
- Operating systems, browsers and domains popularity.
- 404 errors.
Enhancements:
- This release adds an important bugfix in the unique visitors algorithm.
- The output is now nearer to reality (though unique visitors stats are always a guess without the use of a cookie).
Download (0.11MB)
Added: 2005-11-05 License: GPL (GNU General Public License) Price:
1458 downloads
X personal web server 0.1
X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon). more>>
X personal web server is a personal Web server that sits in your desktop notification area (as a tray icon).
X personal web server is a (much) simpler cousin of KPF, but doesnt require kicker and uses the GTK 2 library for its minimal user interface.
<<lessX personal web server is a (much) simpler cousin of KPF, but doesnt require kicker and uses the GTK 2 library for its minimal user interface.
Download (0.059MB)
Added: 2006-09-05 License: GPL (GNU General Public License) Price:
1148 downloads
Apache HTTP Server for Linux 2.0.52
Generation 2.x of the most popular HTTP server on the net. more>>
The Apache HTTP Server Project is an effort to develop and maintain an open-source HTTP server for modern operating systems including UNIX and Windows NT. The goal of this project is to provide a secure, efficient and extensible server that provides HTTP services in sync with the current HTTP standards.
Apache has been the most popular web server on the Internet since April of 1996. The May 2003 Netcraft Web Server Survey found that 62% of the web sites on the Internet are using Apache, thus making it more widely used than all other web servers combined.
The Apache HTTP Server is a project of the Apache Software Foundation.
<<lessApache has been the most popular web server on the Internet since April of 1996. The May 2003 Netcraft Web Server Survey found that 62% of the web sites on the Internet are using Apache, thus making it more widely used than all other web servers combined.
The Apache HTTP Server is a project of the Apache Software Foundation.
Download (6.6MB)
Added: 2009-04-01 License: Freeware Price:
219 downloads
Other version of Apache HTTP Server for Linux
Price: FREE
License:Freeware
License:Freeware
License:Freeware
Server Web Administration Tool 2.0.0
Server Web Administration Tool is a self-extracting shell script that provide detailed information about a server. more>>
Server Web Administration Tool is a self-extracting shell script that installs a perl module called Linux::Statistics and a bunch of perl scripts that provide detailed information about a server.
Information includes : memory usage, disk usage, cpu usage, file usage, network usage, swap usage inode and file handle usage, socket information and information about paging on the server etc. There is also a script to check whether a particular process/daemon is running or not.
You can run the script by running "sh swat-1.0.0.sh" as root.
Enhancements:
- This version comes with a bundled installation of the Apache 1.3.29 Web server.
<<lessInformation includes : memory usage, disk usage, cpu usage, file usage, network usage, swap usage inode and file handle usage, socket information and information about paging on the server etc. There is also a script to check whether a particular process/daemon is running or not.
You can run the script by running "sh swat-1.0.0.sh" as root.
Enhancements:
- This version comes with a bundled installation of the Apache 1.3.29 Web server.
Download (0.029MB)
Added: 2006-11-04 License: Freely Distributable Price:
1094 downloads
LiteSpeed Web Server 3.1.1
LiteSpeed Web Server is an secure, high-performance, user-friendly Apache interchangeable Web server. more>>
LiteSpeed web server is an Apache interchangeable, full-featured high performance, secure HTTP server specifically engineered from the ground up with security and scalability in mind.
LiteSpeed Web Server is engineered to be Apache interchangeable, which means LiteSpeed has all the flexibilities that Apache has, but in much faster manner, such as distributed configuration .htaccess support.
The most commonly used Apache modules have been implemented in LiteSpeed with similar functionality and configuration, but completely different design and implementation.
Currently, LiteSpeed uses Apache compatible configuration for .htaccess and URL rewriting and eventually LiteSpeed will be able to use Apaches configuration file directly. This makes your switching between Apache and LiteSpeed very easy and risk free.
LiteSpeed Web Server has superb performance. Our measurements shows that it is more than 6 times faster than Apache, beating other lightweight content accelerators, such as thttpd, boa and TUX when serving static content, plus up to 50% increase in PHP performance than that of Apaches mod_php and more than doubled CGI/Fast CGI performance.
When you compare LiteSpeed Web Server to highly regarded and highly priced Zeus Web Server, you will find a lot of things in common: similar architecture and similar feature set, including some of the advanced features like web administration interface, MS FrontPage support, URL Rewriting, .htaccess and LDAP authentication. The biggest difference is that LiteSpeed is much more affordable, actually, it could cost you nothing.
LiteSpeed Web Server is also a real-world proven high performance content accelerator, compression proxy, and application security gateway leveraged by its highly scalable, low latency proxy engine.
With the combination of ease of use, tight security, outstanding performance, scalability, and reliability, LiteSpeed Web Server is the ultimate web server you ever need!
Main features:
- Backward compatible with HTTP/1.0
- Chunked Transfer Encoding
- Basic Authentication (htpasswd and LDAP backend)
- Entity Tag
- Range/Multi-range Request
- Static and dynamic content compression(gzip)
- CGI/1.1
- Fast CGI
- PHP (through Fast CGI interface), compatible with third party PHP Accelerators.
- JSP/Servlet (interface to back-end Servlet engine)
- Transparent reverse proxy (interface to back-end web server, application server)
- URL Rewriting is fully compatible with Apaches configuration
- Supports content publishing with MS Frontpage client.
- Supports IP based and name based virtual hosting
- Apache compatible distributed per-directory Access Control and Authentication configuration
- High performance Secure HTTP (HTTPS): supports SSLv2, SSLv3 and TLSv1
- Access Control at server, virtual host and directory (context) level
- File system protection
- HTTP Authentication
- IP level throttling (Bandwidth and Request Rate)
- Comprehensive IP level connection accounting
- Hotlink protection
- Strict HTTP request checking
- Comprehensive protection for static files
- External application firewall for dynamic content
- CGI resources consumption limit
- CGI suEXEC excution and chroot
- Chroot whole server process[Professional Edition only]
- Watch dog and Instant recovery maximizes up-time
- Graceful shutdown, all requests in process will be completed.
- Runs completely in the user space, OS reliability is not affected
- CGI, Fast CGI and servlet engine run in standalone processes, the reliability of the web server is not affected by third party software.
<<lessLiteSpeed Web Server is engineered to be Apache interchangeable, which means LiteSpeed has all the flexibilities that Apache has, but in much faster manner, such as distributed configuration .htaccess support.
The most commonly used Apache modules have been implemented in LiteSpeed with similar functionality and configuration, but completely different design and implementation.
Currently, LiteSpeed uses Apache compatible configuration for .htaccess and URL rewriting and eventually LiteSpeed will be able to use Apaches configuration file directly. This makes your switching between Apache and LiteSpeed very easy and risk free.
LiteSpeed Web Server has superb performance. Our measurements shows that it is more than 6 times faster than Apache, beating other lightweight content accelerators, such as thttpd, boa and TUX when serving static content, plus up to 50% increase in PHP performance than that of Apaches mod_php and more than doubled CGI/Fast CGI performance.
When you compare LiteSpeed Web Server to highly regarded and highly priced Zeus Web Server, you will find a lot of things in common: similar architecture and similar feature set, including some of the advanced features like web administration interface, MS FrontPage support, URL Rewriting, .htaccess and LDAP authentication. The biggest difference is that LiteSpeed is much more affordable, actually, it could cost you nothing.
LiteSpeed Web Server is also a real-world proven high performance content accelerator, compression proxy, and application security gateway leveraged by its highly scalable, low latency proxy engine.
With the combination of ease of use, tight security, outstanding performance, scalability, and reliability, LiteSpeed Web Server is the ultimate web server you ever need!
Main features:
- Backward compatible with HTTP/1.0
- Chunked Transfer Encoding
- Basic Authentication (htpasswd and LDAP backend)
- Entity Tag
- Range/Multi-range Request
- Static and dynamic content compression(gzip)
- CGI/1.1
- Fast CGI
- PHP (through Fast CGI interface), compatible with third party PHP Accelerators.
- JSP/Servlet (interface to back-end Servlet engine)
- Transparent reverse proxy (interface to back-end web server, application server)
- URL Rewriting is fully compatible with Apaches configuration
- Supports content publishing with MS Frontpage client.
- Supports IP based and name based virtual hosting
- Apache compatible distributed per-directory Access Control and Authentication configuration
- High performance Secure HTTP (HTTPS): supports SSLv2, SSLv3 and TLSv1
- Access Control at server, virtual host and directory (context) level
- File system protection
- HTTP Authentication
- IP level throttling (Bandwidth and Request Rate)
- Comprehensive IP level connection accounting
- Hotlink protection
- Strict HTTP request checking
- Comprehensive protection for static files
- External application firewall for dynamic content
- CGI resources consumption limit
- CGI suEXEC excution and chroot
- Chroot whole server process[Professional Edition only]
- Watch dog and Instant recovery maximizes up-time
- Graceful shutdown, all requests in process will be completed.
- Runs completely in the user space, OS reliability is not affected
- CGI, Fast CGI and servlet engine run in standalone processes, the reliability of the web server is not affected by third party software.
Download (5.3MB)
Added: 2007-05-16 License: Freeware Price:
896 downloads

Web+ Developers Edition for Unix/Linux 5.0
Web+ is a powerful & comprehensive development language & web application server more>> talentsofts Web+ is a powerful and comprehensive development language for use in creating web-based client/server applications without writing complicated, low-level and time-consuming CGI programs. Web+ applications are written in Web+ Markup Language (WML), a scripting language based on the Basic programming language and HTML. Familiarity with Basic and HTML enables programmers to quickly learn Web+ and begin writing Web+ applications. Web+ enables rapid and easy creation of highly functional web pages that integrate with databases, file systems, e-mail, Java applets, legacy applications, executable programs (EXEs), dynamic-link libraries (DLLs) and shared objects (SOs) on many different operating systems. Web+ also communicates with any TCP/IP applications and simplifies database integration so that dynamic and interactive web pages can be designed quickly and easily. Key features include cross-platform use on Windows, Unix, Linux, Solaris and FreeBSD, ODBC database support, Java, email and COM/DCOM integration, secure online transactions, custom tags, encryption, application integration, and easy to learn, basic-like scripting. With so many middleware products on the market, it is difficult to tell the difference between them. Compare Web+ head-to-head with the other products out there such as Cold Fusion in the areas of price, speed, and function! Web+ Developers Edition allows for 2 concurrent connections.<<less
Download (2.90MB)
Added: 2009-04-28 License: Adware Price: $99
180 downloads
Cheyenne Secure Web Server 1.0
Cheyenne Secure Web Server (SWS) is a comprehensive enterprise solution for Apache server. more>>
Cheyenne Secure Web Server (SWS) is a comprehensive enterprise solution for Apache server. Cheyenne Secure Web Server combines http firewall, JAVA, PHP, PERL and a domain control system with Apache HTTPD platform.
<<less Download (192.9MB)
Added: 2007-06-08 License: GPL (GNU General Public License) Price:
873 downloads
GNOME Personal Web Server 1.99.5
GNOME Personal Web Server is a user friendly web server with GUI included in GNOME-Network. more>>
GNOME Personal Web Server is a user friendly web server with GUI included in GNOME-Network.
<<less Download (1.0MB)
Added: 2005-07-28 License: GPL (GNU General Public License) Price:
1548 downloads
Caravan Business Server for Linux 3.15-03D
Web App Development and Deployment Environment, Cross Platform, Tiny Footprint more>>
Caravan Business Server is an extremely easy to use comprehensive development and deployment framework which has been used to build Enterprise wide, mission critical Web-based applications.
It includes, as a seamless integrated package, an easy to use Scripting Language, Search Engine, Database Engine, a Web Server and a Communication Server, which makes it a 1-Tier Architecture.
Caravan Business Server is currently available on Linux. Once an application is developed on any OS, the same can be simply redeployed on any other OS without making any changes.
<<lessIt includes, as a seamless integrated package, an easy to use Scripting Language, Search Engine, Database Engine, a Web Server and a Communication Server, which makes it a 1-Tier Architecture.
Caravan Business Server is currently available on Linux. Once an application is developed on any OS, the same can be simply redeployed on any other OS without making any changes.
Download (1.9MB)
Added: 2009-04-21 License: Freeware Price:
188 downloads
The Ming Server 0.7.5
The Ming Server generates Web pages statically or dynamically. more>>
The Ming Server generates Web pages statically or dynamically. As a local executable, it generates a static site from a directory tree of simple text files.
Installed in cgi-bin, it creates those same pages on demand in response to browser requests. Parsing of different source types, the creation, and the writing of pages are separated, making it easy to extend The Ming Server to new data types or delivery methods.
Enhancements:
- A bug in Logger was fixed along with a problem in ming.cgi.
<<lessInstalled in cgi-bin, it creates those same pages on demand in response to browser requests. Parsing of different source types, the creation, and the writing of pages are separated, making it easy to extend The Ming Server to new data types or delivery methods.
Enhancements:
- A bug in Logger was fixed along with a problem in ming.cgi.
Download (0.029MB)
Added: 2005-11-12 License: GPL (GNU General Public License) Price:
1441 downloads
Funnel Web Analyzer 5.0
Funnel Web Analyzer provides essential Web site visitor and traffic analysis. more>>
Funnel Web Analyzer provides essential Web site visitor and traffic analysis.
Every person who visits your companys Web site leaves a trail behind. Your Web server logs their every action and you can use this information to help improve your business. Funnel Web Analyzer provides essential Web site visitor and traffic analysis. It measures everything from server load and referrals to visitor demographics and marketing ROI.
Funnel Web Analyzer helps you optimize your web site by allowing you to analyze how users interact with your site and helps you make informed decisions about what changes you can make to improve their experience.
- What are the demographics of my customers?
- How many unique customers do I have, and how many of these are repeat visitors?
- How long does a visitor spend on each page?
- Which streaming media files are most popular?
- What are my most popular pages?
- How successful was my banner advertisement in attracting visitors to my site?
- What are the peak periods of activity on my site?
- What downloads are most popular?
- What search terms are people using to find my site?
Comprehensive Visitor Analysis
Give your executives and managers unique insight into what your customers are really interested in. Analyzer generates more than 50 different reports and graphs in 12 different languages. Reports can even be customized to reflect your corporate identity and published in a variety of formats including PDF, HTML, Word and Excel.
Identify where users come from before they arrive at your site with the referrals report. This is a great way to measure the effectiveness of promotional campaigns, press releases and affiliate/partner programs. You can even generate separate advertising reports to measure the click-through rates of individual banner ad campaigns.
Funnel Web Analyzer is freeware and provides everything you need to quickly analyze the traffic on your Web site. With virtually no setup, you get an extensive set of valuable reports right from the start.
<<lessEvery person who visits your companys Web site leaves a trail behind. Your Web server logs their every action and you can use this information to help improve your business. Funnel Web Analyzer provides essential Web site visitor and traffic analysis. It measures everything from server load and referrals to visitor demographics and marketing ROI.
Funnel Web Analyzer helps you optimize your web site by allowing you to analyze how users interact with your site and helps you make informed decisions about what changes you can make to improve their experience.
- What are the demographics of my customers?
- How many unique customers do I have, and how many of these are repeat visitors?
- How long does a visitor spend on each page?
- Which streaming media files are most popular?
- What are my most popular pages?
- How successful was my banner advertisement in attracting visitors to my site?
- What are the peak periods of activity on my site?
- What downloads are most popular?
- What search terms are people using to find my site?
Comprehensive Visitor Analysis
Give your executives and managers unique insight into what your customers are really interested in. Analyzer generates more than 50 different reports and graphs in 12 different languages. Reports can even be customized to reflect your corporate identity and published in a variety of formats including PDF, HTML, Word and Excel.
Identify where users come from before they arrive at your site with the referrals report. This is a great way to measure the effectiveness of promotional campaigns, press releases and affiliate/partner programs. You can even generate separate advertising reports to measure the click-through rates of individual banner ad campaigns.
Funnel Web Analyzer is freeware and provides everything you need to quickly analyze the traffic on your Web site. With virtually no setup, you get an extensive set of valuable reports right from the start.
Download (7.3MB)
Added: 2007-06-19 License: Freeware Price:
525 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above web server log file analysis search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed