2.0 jailbreak
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1036
PHTP 2.0 beta1
PHTP is a simple, effective, and highly customizable FTP client with an HTML interface. more>>
PHTP is a simple, effective, and highly customizable FTP client with an HTML interface. It can be implemented on a remote server to allow files to be downloaded directly to it, as it is able to make connections with any FTP server.
Enhancements:
- This release uses sessions. The design has been changed.
- A config file, multi-language support, and a queuelist have been added.
<<lessEnhancements:
- This release uses sessions. The design has been changed.
- A config file, multi-language support, and a queuelist have been added.
Download (0.036MB)
Added: 2005-08-22 License: GPL (GNU General Public License) Price:
1527 downloads
GtkSysinfo 2.0 Beta1
GtkSysinfo is a perl-Gtk2 software for Linux which makes it possible to obtain a maximum of information about the system. more>>
GtkSysinfo project is a perl-Gtk2 software for Linux which makes it possible to obtain a maximum of information about the system such as temperature(with lm_sensors) , CPU frequency, hardware(with PciUtils) , network , ACPI ...
<<less Download (0.18MB)
Added: 2006-04-16 License: GPL (GNU General Public License) Price:
1288 downloads
DUD 2.0
DUD provides a download manager for dial-up users. more>>
DUD provides a download manager for dial-up users.
DUD is a collection of scripts for managing downloads over a dial-up connection.
The scripts are meant to be started by the ip-up.local script, and notify the user who initiated the download on its completion.
DUD internally uses other download tools such as wget or axel for carrying out the actual download.
<<lessDUD is a collection of scripts for managing downloads over a dial-up connection.
The scripts are meant to be started by the ip-up.local script, and notify the user who initiated the download on its completion.
DUD internally uses other download tools such as wget or axel for carrying out the actual download.
Download (0.008MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
910 downloads
Fvwm95 2.0.43e
Fvwm95 is a hack based on fvwm2. more>>
Fvwm95 is a hack based on fvwm2. It tries to emulate the good features of a well known product without bloating the regular fvwm code.
Main features:
- A familiar look and feel. It can be interesting for users moving from the MS-World to Unix, or for those who have to switch regularly between the two. Or for those that simply would like to have the same MS look and feel in Unix, or for those that want to have just another window manager. But before all, its meant to be useful, simple and efficient.
- Same flexible and easy configuration as the native fvwm.
- Functionality extensible via loadable modules.
- A taskbar: find quickly an application window and dont take space with icon windows.
<<lessMain features:
- A familiar look and feel. It can be interesting for users moving from the MS-World to Unix, or for those who have to switch regularly between the two. Or for those that simply would like to have the same MS look and feel in Unix, or for those that want to have just another window manager. But before all, its meant to be useful, simple and efficient.
- Same flexible and easy configuration as the native fvwm.
- Functionality extensible via loadable modules.
- A taskbar: find quickly an application window and dont take space with icon windows.
Download (0.82MB)
Added: 2005-08-12 License: GPL (GNU General Public License) Price:
855 downloads
picoSQL 2.0.4a
picoSQL is an SQL-based, multi-user, client/server RDBMS. more>>
picoSQL project is the first Italian Open Source relational database management system.
The project of picoSQL was born in 1995. It was an ODBC driver for COBOL indexed files. It consisted of a DLL written in C++ on Windows 3.1 operating system. In the beginning the main effort was made in order to obtain a good compatibity with existing front-end (mainly the MS-Access, MS-Query and VisualBasic) and in order to see COBOL files as a normalized relational DB.
The obtained success concurs to develop ulteriorly the product, refining the query optimizer and implementing an extended SQL, to exclusion of the DDL (Data Description Language). A later version, called PicoDB, were devoloped on UNIX system in client/server architecture.
PicoSql is released under GPL license; it derives from PicoDB (that remains a Picosoft proprietary product) with the addition of some SQL-DDL statement (CREATE/DROP TABLE(INDEX) and excluding COBOL files compatibility). The C/C++ library that allow the database access from C/C++ programs using the ODBC 2.5 API is released under LGPL license; this allows to link the library with programs that are not under GPL.
PicoSQL can be used from Windows applications (like MS-ACCESS, MS-Query, VB etc.) in client/server modality using the ODBC driver picoSQLNet. It can moreover be used from appropriate Java programs through the JDBC driver comprised in the distribution. Finally it can be used from programs written in C and C++ through its set of ODBC 2.5 compliant API.
PicoSQL lacks at the moment of some common characteristics to the most common RDBMS (like the schema and catalogue concepts and the management of the user permissions who can be obtained anyway using the permissions of the host operating system) but they are just these lacks to make it particularly simple to install and to use and fast in the logons and the queries.
Installation:
The installation is particularly simple: if you have the binary distribution, is sufficient to extract the compressed files in one directory ( under Windows NT/2000/XP) and execute:
startTestDb.sh (Unix/Linux)
PicoSQL consists fundamentally in a program, picosqld, to activate through inetd (or xinetd) or picoserv. In such a way it becomes a net service binded to a port, that is to a entire number comprised between 1 and 65535; this number (as an example 6789) must always be specified on the command line of picosqld. As an example:
picosqld 6789
For the activation with inetd (or xinetd), you must see the relative documentation. picoserv is a simple program that replaces inetd, mainly for scopes of test or debugging: its usage is the following:
picoserv [-f] commandLine portNumber
In our case the activation of picosqld can be obtained with the following command line:
picoserv "picosqld 6789" 6789
To notice as the port number is specified two times, as an argument of picosqld and as an argument of picoserv.
When picosqld receive a connection request, it reads a configuration file to find the necessary informations. This file is a text file on Unix/Linux systems.
# Unix/Lunixthe file read for configuration is
$HOME/.picosql.ini
or, if this file is missing
/etc/picosql.ini
The file consists of sections and parameters. A section begins with the name of the section in square brackets and continues until the next section begins. Sections contain attributes of the form
name=value
The file is line-based - that is, each newline-terminated line represents either a comment, a section name or a parameter. Section and parameter names are not case sensitive. Only the first equals sign in a parameter is significant. Any line beginning with a semicolon (;) or a hash (#) character is ignored, as are lines containing only whitespace. Each section corresponds to a database and comprises information like user, password and DB location. In the following example there are two database declared, the former called picoSqlTest, is accessible by anyone while the latter, called rubrica is accessible only by user pico giving the appropriate password.
[picoSqlTest]
DataDirectory=/home/test.db
[rubrica]
DataDirectory=/home/rubrica.db
User=pico
Password=soft
PicoOdbcTrace=NO
SuspensiveLock=YES
; for picosql client only
server=localhost
port=6789
Enhancements:
- This version fixes a problem on authentication and a bug when the connection fails.
<<lessThe project of picoSQL was born in 1995. It was an ODBC driver for COBOL indexed files. It consisted of a DLL written in C++ on Windows 3.1 operating system. In the beginning the main effort was made in order to obtain a good compatibity with existing front-end (mainly the MS-Access, MS-Query and VisualBasic) and in order to see COBOL files as a normalized relational DB.
The obtained success concurs to develop ulteriorly the product, refining the query optimizer and implementing an extended SQL, to exclusion of the DDL (Data Description Language). A later version, called PicoDB, were devoloped on UNIX system in client/server architecture.
PicoSql is released under GPL license; it derives from PicoDB (that remains a Picosoft proprietary product) with the addition of some SQL-DDL statement (CREATE/DROP TABLE(INDEX) and excluding COBOL files compatibility). The C/C++ library that allow the database access from C/C++ programs using the ODBC 2.5 API is released under LGPL license; this allows to link the library with programs that are not under GPL.
PicoSQL can be used from Windows applications (like MS-ACCESS, MS-Query, VB etc.) in client/server modality using the ODBC driver picoSQLNet. It can moreover be used from appropriate Java programs through the JDBC driver comprised in the distribution. Finally it can be used from programs written in C and C++ through its set of ODBC 2.5 compliant API.
PicoSQL lacks at the moment of some common characteristics to the most common RDBMS (like the schema and catalogue concepts and the management of the user permissions who can be obtained anyway using the permissions of the host operating system) but they are just these lacks to make it particularly simple to install and to use and fast in the logons and the queries.
Installation:
The installation is particularly simple: if you have the binary distribution, is sufficient to extract the compressed files in one directory ( under Windows NT/2000/XP) and execute:
startTestDb.sh (Unix/Linux)
PicoSQL consists fundamentally in a program, picosqld, to activate through inetd (or xinetd) or picoserv. In such a way it becomes a net service binded to a port, that is to a entire number comprised between 1 and 65535; this number (as an example 6789) must always be specified on the command line of picosqld. As an example:
picosqld 6789
For the activation with inetd (or xinetd), you must see the relative documentation. picoserv is a simple program that replaces inetd, mainly for scopes of test or debugging: its usage is the following:
picoserv [-f] commandLine portNumber
In our case the activation of picosqld can be obtained with the following command line:
picoserv "picosqld 6789" 6789
To notice as the port number is specified two times, as an argument of picosqld and as an argument of picoserv.
When picosqld receive a connection request, it reads a configuration file to find the necessary informations. This file is a text file on Unix/Linux systems.
# Unix/Lunixthe file read for configuration is
$HOME/.picosql.ini
or, if this file is missing
/etc/picosql.ini
The file consists of sections and parameters. A section begins with the name of the section in square brackets and continues until the next section begins. Sections contain attributes of the form
name=value
The file is line-based - that is, each newline-terminated line represents either a comment, a section name or a parameter. Section and parameter names are not case sensitive. Only the first equals sign in a parameter is significant. Any line beginning with a semicolon (;) or a hash (#) character is ignored, as are lines containing only whitespace. Each section corresponds to a database and comprises information like user, password and DB location. In the following example there are two database declared, the former called picoSqlTest, is accessible by anyone while the latter, called rubrica is accessible only by user pico giving the appropriate password.
[picoSqlTest]
DataDirectory=/home/test.db
[rubrica]
DataDirectory=/home/rubrica.db
User=pico
Password=soft
PicoOdbcTrace=NO
SuspensiveLock=YES
; for picosql client only
server=localhost
port=6789
Enhancements:
- This version fixes a problem on authentication and a bug when the connection fails.
Download (2.9MB)
Added: 2006-03-17 License: GPL (GNU General Public License) Price:
749 downloads
KCad 2.0
KCad is a screensaver for KDE 3, based on KCad 1.1 (a old screensaver for Kde 2.2). more>>
KCad is a screensaver for KDE 3, based on KCad 1.1 (a old screensaver for Kde 2.2). KCad is a KDE Control+Alt+Canc screensaver.
KCAD is a very simple screensaver for KDE. In fact, it may remind you of certain OTHER evil screensavers. This was designed so that you can "trick" your Boss (in the BOFH sense) into thinking that youre running Windows NT on your workstation/server, even if you are running (insert UNIX clone name here). By default, it looks very KDE-ish, but you can make it look more convincing by putting the following text into the file $HOME/.kde/share/config/kcad.kssrc.
Installation:
./configure --prefix=/path/to/kde --with-qt-includes=/path/to/qt-includes
make all
su
make install
exit
NOTE:
- KUbuntu prefix is /usr
<<lessKCAD is a very simple screensaver for KDE. In fact, it may remind you of certain OTHER evil screensavers. This was designed so that you can "trick" your Boss (in the BOFH sense) into thinking that youre running Windows NT on your workstation/server, even if you are running (insert UNIX clone name here). By default, it looks very KDE-ish, but you can make it look more convincing by putting the following text into the file $HOME/.kde/share/config/kcad.kssrc.
Installation:
./configure --prefix=/path/to/kde --with-qt-includes=/path/to/qt-includes
make all
su
make install
exit
NOTE:
- KUbuntu prefix is /usr
Download (1.4MB)
Added: 2006-05-23 License: Public Domain Price:
1252 downloads
apoo 2.0
apoo project is an environment for a first course in assembly language programming. more>>
apoo project is an environment for a first course in assembly language programming.
It is implemented in Python and has the following components: apoo virtual machine is a virtual processor with a very simple architecture and instruction set that mimics almost all the essential features of a modern microprocessor.
As the aim is to teach assembly language, there is no machine code associated with the instruction set.
apoo Interface is a graphical environment that monitors the state of the machine during the execution of a program and allows the writing/editing/execution of programs in assembly language.
apoo Tutor is a module for grading of student programs based on a description of what the execution of the program should be for specified input data sets.
<<lessIt is implemented in Python and has the following components: apoo virtual machine is a virtual processor with a very simple architecture and instruction set that mimics almost all the essential features of a modern microprocessor.
As the aim is to teach assembly language, there is no machine code associated with the instruction set.
apoo Interface is a graphical environment that monitors the state of the machine during the execution of a program and allows the writing/editing/execution of programs in assembly language.
apoo Tutor is a module for grading of student programs based on a description of what the execution of the program should be for specified input data sets.
Download (0.059MB)
Added: 2006-11-10 License: GPL (GNU General Public License) Price:
1078 downloads
WIGS 2.0
WIGS is both an API to talk to a GPS receiver over the serial port via the NMEA protocol. more>>
WIGS is both an API to talk to a GPS receiver over the serial port via the NMEA protocol supported by most GPS receivers, as well as an application that use this API.
The first phase of the WIGS project is now completed as weve published the API.
The second phase is to make an application to present the data received from the GPS in a simple and intuitive way.
The third phase, and also the most important phase, is to add a special mapping feature which allows the user to load any scanned map and, as long as that map is calibrated by providing a set of known coordinates on that map (usually the corners of the map), present the users current position on that map.
Enhancements:
- The API was completely rewritten for better integration into the GUI.
- Third party communications drivers written by developers other than the development team are supported.
- Some minor bugs were fixed.
<<lessThe first phase of the WIGS project is now completed as weve published the API.
The second phase is to make an application to present the data received from the GPS in a simple and intuitive way.
The third phase, and also the most important phase, is to add a special mapping feature which allows the user to load any scanned map and, as long as that map is calibrated by providing a set of known coordinates on that map (usually the corners of the map), present the users current position on that map.
Enhancements:
- The API was completely rewritten for better integration into the GUI.
- Third party communications drivers written by developers other than the development team are supported.
- Some minor bugs were fixed.
Download (MB)
Added: 2006-11-21 License: GPL (GNU General Public License) Price:
1072 downloads
OBM 2.0.3
OBM is an intranet CRM and groupware tool for managing a company or a contact database. more>>
O.B.M. stands for Open Business Management.
OBM is an Intranet application which goal is to help manage a company or an organization. As OBM improve, it is approaching what are called CRM (with sales force , help desk, time tracking sections) but can be used simply as a contact database or as a shared calendar.
OBM represents a framework above wich many modules are written. It is written by an evolving group of developpers from Aliacom (mains are Mehdi Rande, Pierre Carlier, Olivier Boyer (design)) lead by Pierre Baudracco, with contributions by other people (see the changelog) and released under the terms of the GPL.
OBM is always evolving and the data and the database model are subject to change but each new version come with update scripts.
Enhancements:
- The import module has been improved to handle conflict automatically.
- Fixes and enhancements were made to the calendar module (planning view rights, home page portlet, and .ics file sending can be disabled).
- Fixes were made to CAS and the todo, payment, and import modules.
<<lessOBM is an Intranet application which goal is to help manage a company or an organization. As OBM improve, it is approaching what are called CRM (with sales force , help desk, time tracking sections) but can be used simply as a contact database or as a shared calendar.
OBM represents a framework above wich many modules are written. It is written by an evolving group of developpers from Aliacom (mains are Mehdi Rande, Pierre Carlier, Olivier Boyer (design)) lead by Pierre Baudracco, with contributions by other people (see the changelog) and released under the terms of the GPL.
OBM is always evolving and the data and the database model are subject to change but each new version come with update scripts.
Enhancements:
- The import module has been improved to handle conflict automatically.
- Fixes and enhancements were made to the calendar module (planning view rights, home page portlet, and .ics file sending can be disabled).
- Fixes were made to CAS and the todo, payment, and import modules.
Download (1.6MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
814 downloads
WmG 2.0.2
WmG is a dockapp plugin for Gaim. more>>
WmG applet is a dockapp plugin for Gaim. That is, once the plugin is started a dockapp appears, which can be conviniently dragged to the windowmaker dock.
The dockapp shows the top 3 buddies from Gaim, sorted by whatever algorithm was selected in the Gaim preferences. Clicking either of the buddies causes a new conversation window to be created for that buddy (unless one already exists, in which case the existing one will be used).
Additionally, the dockapp features a scrolling message thingy, which displays events occurring, such as buddies logging on and off, becoming idle, going away or coming back.
WmG was selected as the name of this program, because WmGaim was already spoken for.
Version restrictions:
- Unloading the plugin unfortunately requires a restart of gaim.
- No protocol mini-icons are available for protocols other than msn and icq
Enhancements:
- This release fixes compilation issues with the latest Gaim betas, and introduces some graphical representation of buddy status for ICQ buddies.
<<lessThe dockapp shows the top 3 buddies from Gaim, sorted by whatever algorithm was selected in the Gaim preferences. Clicking either of the buddies causes a new conversation window to be created for that buddy (unless one already exists, in which case the existing one will be used).
Additionally, the dockapp features a scrolling message thingy, which displays events occurring, such as buddies logging on and off, becoming idle, going away or coming back.
WmG was selected as the name of this program, because WmGaim was already spoken for.
Version restrictions:
- Unloading the plugin unfortunately requires a restart of gaim.
- No protocol mini-icons are available for protocols other than msn and icq
Enhancements:
- This release fixes compilation issues with the latest Gaim betas, and introduces some graphical representation of buddy status for ICQ buddies.
Download (0.017MB)
Added: 2007-02-02 License: GPL (GNU General Public License) Price:
994 downloads
vines 2.0
vines is a small application which draws vines on your X or SunView screen. more>>
vines is a small application which draws vines on your X or SunView screen.
vines draws vines (wandering plants made up mostly of stems and leaves) on your X11 or SunView screen.
By default it draws in black and white, but color options (spring and fall) are provided.
The vines can grow across the top of your screen and down the side, down from the top of your screen until they reach the bottom, or start from the center and wander all over the screen forever.
Enhancements:
- added -z option (show version)
- added -F option (was described in README, but unimplemented!)
- added -x option (X11 synchronize)
- added -G option (growth rate)
- added -E option (edges, including bottom)
- added -P option (palette files, with samples in Vines/)
- beefed up -g option
- changed -h to -H for halt, added -h for help (like -?)
- revamped help
- various code cleanups
- various command line option and error message cleanups
- minor optimizations
- code now compiles cleanly (for X and linux, anyway)
- patched for ugly runtime bug on Dell/Linux 2.0.34/gcc 2.7.2
- added man page, CHANGES, MANIFEST, LEGALSTUFF
- added Imakefile, Makefile-noImake
- revamped README
- changed name to vines
- added sample leaf and stem template files (Sample.leaf, Sample.stem)
<<lessvines draws vines (wandering plants made up mostly of stems and leaves) on your X11 or SunView screen.
By default it draws in black and white, but color options (spring and fall) are provided.
The vines can grow across the top of your screen and down the side, down from the top of your screen until they reach the bottom, or start from the center and wander all over the screen forever.
Enhancements:
- added -z option (show version)
- added -F option (was described in README, but unimplemented!)
- added -x option (X11 synchronize)
- added -G option (growth rate)
- added -E option (edges, including bottom)
- added -P option (palette files, with samples in Vines/)
- beefed up -g option
- changed -h to -H for halt, added -h for help (like -?)
- revamped help
- various code cleanups
- various command line option and error message cleanups
- minor optimizations
- code now compiles cleanly (for X and linux, anyway)
- patched for ugly runtime bug on Dell/Linux 2.0.34/gcc 2.7.2
- added man page, CHANGES, MANIFEST, LEGALSTUFF
- added Imakefile, Makefile-noImake
- revamped README
- changed name to vines
- added sample leaf and stem template files (Sample.leaf, Sample.stem)
Download (0.032MB)
Added: 2006-09-29 License: Free To Use But Restricted Price:
1122 downloads
Download (0.79MB)
Added: 2007-05-18 License: GPL (GNU General Public License) Price:
889 downloads
MBOT 5.2.0
mbot is an IRC bot coded in C++. more>>
Its an IRC bot coded in C++, being started in C. Its main advantage is that several bots can run simultaneously in the same process, making it ideal for shells where the background processes are limited, but not the connections. It doesnt eats much resources, compared to running many instances of mbot.
Main features:
- IPv6 networking support
- Partial TCL scripting compatibility with eggdrop
- All the standard irc commands are available
- Can be in many channels
- Flood protection
- Database, dictionary-like
- DCC Send, easily accessible and configurable
- DCC Chat with partyline
- Different access levels, defined with a userlist
- Recognize and use irc services (NickServ/ChanServ)
- Log channels and privates
- Can send logs to an email, when they are renewed
- Extensions done with dynamic libraries in C++, to which Ive called modules, and can be added/removed while the bot is running
- Conversations with an Artificial Intelligence module (based on C-Alice)
- Watch nicks and log when they are on IRC
- Lots of other stuff, check the available modules
<<lessMain features:
- IPv6 networking support
- Partial TCL scripting compatibility with eggdrop
- All the standard irc commands are available
- Can be in many channels
- Flood protection
- Database, dictionary-like
- DCC Send, easily accessible and configurable
- DCC Chat with partyline
- Different access levels, defined with a userlist
- Recognize and use irc services (NickServ/ChanServ)
- Log channels and privates
- Can send logs to an email, when they are renewed
- Extensions done with dynamic libraries in C++, to which Ive called modules, and can be added/removed while the bot is running
- Conversations with an Artificial Intelligence module (based on C-Alice)
- Watch nicks and log when they are on IRC
- Lots of other stuff, check the available modules
Download (0.22MB)
Added: 2006-06-17 License: GPL (GNU General Public License) Price:
704 downloads
Remo 0.2.0
Remo is a Rule Editor for ModSecurity. more>>
Remo is a Rule Editor for ModSecurity.
Main features:
- Ruby on rails application with ajax use
- Enter http requests, display them, edit them, delete them, rearrange them
- Edit the http headers of the requests
- Generate positive modsecurity2 ruleset
ModSecurity is not a simple toy. It is quite tricky to configure successfully. Many web applications are not very simple either. Bringing them together by writing a ModSecurity ruleset is very difficult. Modsecurity.org advertises a tested core ruleset granting you protection from most known attacks. But this is only a blacklist approach: All known dangerous traffic is filtered out.
A network firewall uses a whitelist approach; also called positive security model: Everything is dropped outside of a short and strict rulset. An application firewall should do exactly the same. (See Ivan Ristics thougts on positive security. Ivan Ristic is the man behind ModSecurity.)
But this comes with a catch: Your application does not come with a short and strict ruleset and writing one will be tough. This is the point where remo will come into play. It is meant as a graphical editor for this ruleset, thus helping you to generate a whitelist of valid requests to your application. Ideally you will be able to bundle this ruleset with every release of your online application. We are not there yet. Far from it to be honest. But the development has started and you are welcome to join in.
Enhancements:
- This first beta release brings the ability to import ModSecurity audit-logs and match them against the ruleset in the edit-area of Remo.
- This lets you check if the ruleset which you are developing will work with your online application in practice.
<<lessMain features:
- Ruby on rails application with ajax use
- Enter http requests, display them, edit them, delete them, rearrange them
- Edit the http headers of the requests
- Generate positive modsecurity2 ruleset
ModSecurity is not a simple toy. It is quite tricky to configure successfully. Many web applications are not very simple either. Bringing them together by writing a ModSecurity ruleset is very difficult. Modsecurity.org advertises a tested core ruleset granting you protection from most known attacks. But this is only a blacklist approach: All known dangerous traffic is filtered out.
A network firewall uses a whitelist approach; also called positive security model: Everything is dropped outside of a short and strict rulset. An application firewall should do exactly the same. (See Ivan Ristics thougts on positive security. Ivan Ristic is the man behind ModSecurity.)
But this comes with a catch: Your application does not come with a short and strict ruleset and writing one will be tough. This is the point where remo will come into play. It is meant as a graphical editor for this ruleset, thus helping you to generate a whitelist of valid requests to your application. Ideally you will be able to bundle this ruleset with every release of your online application. We are not there yet. Far from it to be honest. But the development has started and you are welcome to join in.
Enhancements:
- This first beta release brings the ability to import ModSecurity audit-logs and match them against the ruleset in the edit-area of Remo.
- This lets you check if the ruleset which you are developing will work with your online application in practice.
Download (1.6MB)
Added: 2007-06-06 License: GPL (GNU General Public License) Price:
872 downloads
CShout 2.0
CShout is a shoutbox that completely needs no database at all. more>>
CShout is a shoutbox that completely needs no database at all. It uses a text file as its database. I have created it since I realised that I would need one for my own. Before that, I used the free shoutbox service at http://www.shoutboxes.com from which I adopted the idea. I started with a free tutorial on the internet which was really really basic and simple.
You can download, unrar and enjoy it straight away as well as using it with phpwcms as a mod. I dont know if this is considered as a mod but it does something different to the orginial copy of phpwcms. It is my little contribution to phpwcms community. This mod will add a shoutbox into your phpwcms site using phpwcms custom replacement tag.
If you would not mind, please let me know the website that you use this shoutbox. Put a link in to my shoutbox so that others can have different live demos of this shoutbox.
Main features:
- Use flat-file database, easy for setup and backup
- Support emoticons, flooding control (spam protection), bad words filtering.
- Display timestamp and ip address via tooltip.
- Timezone adjusting.
- Allow the admin to delete unwanted shouts on the fly.
- Search shouts by date, time, shouter, message, and ip address.
- Page navigation.
- New version 2.0 implements AJAX.
- Support any language/charset.
<<lessYou can download, unrar and enjoy it straight away as well as using it with phpwcms as a mod. I dont know if this is considered as a mod but it does something different to the orginial copy of phpwcms. It is my little contribution to phpwcms community. This mod will add a shoutbox into your phpwcms site using phpwcms custom replacement tag.
If you would not mind, please let me know the website that you use this shoutbox. Put a link in to my shoutbox so that others can have different live demos of this shoutbox.
Main features:
- Use flat-file database, easy for setup and backup
- Support emoticons, flooding control (spam protection), bad words filtering.
- Display timestamp and ip address via tooltip.
- Timezone adjusting.
- Allow the admin to delete unwanted shouts on the fly.
- Search shouts by date, time, shouter, message, and ip address.
- Page navigation.
- New version 2.0 implements AJAX.
- Support any language/charset.
Download (0.066MB)
Added: 2006-10-03 License: GPL (GNU General Public License) Price:
1119 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 2.0 jailbreak 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