requiring
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1399
ColorRating 1.0
Requires no database setup or administration as it comes with itâ??s own SQLite database file, making deployment as easy as unzipping the files. Small - only 5kbs of CSS/JS/PHP - and degrades gracefully for users without JavaScript. more>> <<less
Added: 2009-03-04 License: Other Price: $0.00USD
14 downloads
Include() and Require()
Learn how to spead up your developing by using PHP include() and require() functions. Dynamicly including your functions, header, footer and graphic. more>> Learn how to spead up your developing by using PHP include() and require() functions. Dynamicly including your functions, header, footer and graphic.<<less
Added: 2004-01-27 License: Not Specified Price: Free
2102 downloads
Draw a rating box
A short PHP function to create a graphical ratings box (1 to 10) on the fly. Requires the GD library and png support. more>> A short PHP function to create a graphical ratings box (1 to 10) on the fly. Requires the GD library and png support.<<less
Added: 2002-02-04 License: Price: 0.00 Price: $0.00USD
15 downloads
Shadows Rising RPG 0.0.5b pre-alpha
A free open-source RPG where players control a character and partake of quests, PvP battles, exploration of the game world. NOTE: We are currently in pre-alpha so all comments are welcome to the forum to improve the game. The Shadows Rising RPG more>> A free open-source RPG where players control a character and partake of quests, PvP battles, exploration of the game world. NOTE: We are currently in pre-alpha so all comments are welcome to the forum to improve the game. The Shadows Rising RPG Game Engine will allow users to add items, classes, quests, NPCs and locations to create a custom RPG powered by the core engine. Written with PHP, Javascript, MySQL/PostgreSQL and XHTML. The game is open source, licensed under the Affero GPL with a GNU GPL licensed backend. Installation is as simple as uploading the files, and targeting install.php with your browser. The entire process is automated to a large degree, requiring minimum input by the user.<<less
Added: 2004-10-29 License: Other Price: $0.00USD
98 downloads
Other version of Shadows Rising RPG
License:Not Specified
Required Download Time Calculator
Required Download Time Calculator calculates the time required to download a file. more>> <<less
Added: 2008-04-10 License: Freeware Price: Freeware
15 downloads
Send to a Friend
This Tell a Friend script will allow visitors to your site to send an email to their friends recommending it. It is extremely easy to set-up and use requiring no database or complex configuration and more>> This Tell a Friend script will allow visitors to your site to send an email to their friends recommending it. It is extremely easy to set-up and use requiring no database or complex configuration and you can have it working in just a few minutes. You can use it to let people recommend your site or even a single news item - its up to you. It is also highly configurable, you can change just about everything there is to change including the labels and text used so it will match your site perfectly. It also has many inbuilt features, full cross browser support and works on virtually any PHP server. Some of the features are the ability to configure the script just how you want, full error checking for valid email addresses and completed forms and IP address checking to help prevent abuse. The functionality of this script is the same, and in some cases better, than those we have seen on sale for $40 or more and this script is free! Supports multiple languages.<<less
Added: 2004-07-26 License: Freeware Price: FreeAdditionalInfoFree
1924 downloads
The Difference Between require() and include()
Did you know that require() and include() work differently? Both are used for including code in another file into your program, but there is a crucial difference in how they operate when that file can more>> Did you know that require() and include() work differently? Both are used for including code in another file into your program, but there is a crucial difference in how they operate when that file cannot be read which any PHP programmer needs to know about. Theres also a slight difference with require() between new and older versions of PHP which this tutorial discusses too.<<less
Added: 2006-01-04 License: Other Free / Open Source License Price: Free
1393 downloads
RTRandomImage 0.1
This is a very simple php script that loads a random image with a choosen text. Doesnt requires mysql to run. more>> This is a very simple php script that loads a random image with a choosen text. Doesnt requires mysql to run.<<less
Added: 2005-11-11 License: GPL Price: $0.00USD
14 downloads
PHP Captcha System. No DB required 3.0
Easy to install captcha system to keep bots from making false submissions to your web forms. Requires PHP. Customizable in the following ways: * Choose Font Size * Choose Colors * Choose # of characters in string. * Choose more>> Easy to install captcha system to keep bots from making false submissions to your web forms. Requires PHP. Customizable in the following ways: * Choose Font Size * Choose Colors * Choose # of characters in string. * Choose character set (numbers, letters, uppercase, lowercase). * Very customizable backgrounds.<<less
Added: 2007-01-16 License: Free Non-Commercial Price: $0.00USD
13 downloads
Other version of PHP Captcha System. No DB required
License:Free for non-commercial use
pararun 1.0
pararun is a simple perl script that executes all executables in a folder using multiple threads. Perl CPAN thread module is required. more>> pararun is a simple perl script that executes all executables in a folder using multiple threads. Perl CPAN thread module is required.<<less
Added: 2008-12-18 License: GPL Price: $0.00USD
12 downloads
Quartz 1.6.5
This job scheduling system can be integrated with, or used along side virtually any J2EE or J2SE application more>>
Quartz 1.6.5 brings you a useful scheduling system that can be integrated with, or used along side virtually any J2EE or J2SE application
Applications can vary from the largest e-commerce system to the smallest stand-alone application. Quartz can be used to create simple or complex schedules for executing tens, hundreds, or even tens-of- tousands of jobs; jobs whose tasks are defined as standard Java components or EJBs.
The Quartz Scheduler includes many enterprise-class features, such as JTA transactions and clustering.
Major Features
- Job Scheduling:
- At a certain time of day (to the millisecond)
- On certain days of the week
- On certain days of the month
- On certain days of the year
- Not on certain days listed within a registered Calendar (such as business holidays)
- Repeated a specific number of times
- Repeated until a specific time/date
- Repeated indefinitely
- Repeated with a delay interval
- Job Execution:
- Jobs can be any Java class that implements the simple Job interface, leaving infinite possibilities for the work the Jobs can perform.
- Job class instances can be instantiated by Quartz, or by the applications framework.
- When a Trigger occurs, the scheduler notifies zero or more Java objects implementing the JobListener and TriggerListener interfaces (listeners can be simple Java objects, or EJBs, or JMS publishers, etc.). These listeners are also notified after the Job has executed.
- As Jobs are completed, they return a JobCompletionCode which informs the scheduler of success or failure. The JobCompletionCode can also instruct the scheduler of any actions it should take based on the success/fail code such as immediate re-execution of the Job.
- Job Persistence:
- The design of Quartz includes a JobStore interface that can be implemented to provide various mechanisms for the storage of jobs.
- With the use of the included JDBCJobStore, all Jobs and Triggers configured as "non-volatile" are stored in a relational database via JDBC.
- With the use of the included RAMJobStore, all Jobs and Triggers are stored in RAM and therefore do not persist between program executions but this has the advantage of not requiring an external database.
- Transactions:
- Quartz can participate in JTA transactions, via the use of JobStoreCMT (a subclas of JDBCJobStore).
- Quartz can manage JTA transactions (begin and commit them) around the execution of a Job, so that the work the Job does happens within a JTA transaction.
- Clustering:
- Fail-over.
- Load balancing.
- Listeners & Plug-Ins:
- Applications can catch scheduling events to monitor or control job/trigger behavior by implementing one or more listener interfaces.
- The Plug-In mechanism can be used add functionality to Quartz, such keeping a history of job executions, or loading job and trigger definitions from a file.
- Quartz ships with a number of "factory built" plug-ins and listeners.
- Runtime Environments:
- Quartz can run embedded within another free standing application
- Quartz can be instantiated within an application server (or servlet container), and participate in XA transactions
- Quartz can run as a stand-alone program (within its own Java Virtual Machine), to be used via RMI
- Quartz can be instantiated as a cluster of stand-alone programs (with load-balance and fail-over capabilities)
Enhancements
- Records in QRTZ_TRIGGER_LISTENERS table are deleted when trigger is paused and resumed
- Logging Trigger History Plugin.trigger Misfired writes incorrect message
- Send Destination Message Job throws naming exception
- Send Queue Message Job throws Class Cast Exception when used with xml plugin acquire Next Trigger executing on Managed Tx Connection when using JobStoreCMT and configured not to acquire triggers within lock
Added: 2009-06-26 License: Other Free / Open Source License - Apache 2.0 License Price: OtherFreeOpenSourceLicenseApache2.0License
21 downloads
Gmail Invite Sig 0.1
Displays your currently remaining Gmail invites in a PNG image. Perfect for those forum sigs! It uses the libgmailer library and requires GD2. more>> Displays your currently remaining Gmail invites in a PNG image. Perfect for those forum sigs! It uses the libgmailer library and requires GD2.<<less
Added: 2004-10-24 License: Price: 0.00 Price: 0.00
13 downloads
The Hablator 0.4 - "Iron"
The Hablator is the greatest casual chat script ever! It offers all of the features of the "big boys" without a database, all while maintaining the informal feel a shoutbox captures. The Hablator is completely Open Source, requiring only PHP and more>> The Hablator is the greatest casual chat script ever! It offers all of the features of the "big boys" without a database, all while maintaining the informal feel a shoutbox captures. The Hablator is completely Open Source, requiring only PHP and Javascript. The main features are: -List of logged-in users -Light to show when others are typing -100% AJAX-based -Copy and paste installation -Translations -Logs almost everything -Optional password to restrict strangers -Bad word filter -Very secure -Graphical Configuration -CSS Styling -Smileys -Free email support (script_champ[at]Bernstei nForPresident[dot]com) -and MUCH MUCH MORE!<<less
Added: 2007-07-22 License: GPL Price: $0.00USD
13 downloads
RTCounter 0.1
This script is a very simple php counter that doesnt requires mysql and keeps track of how many unique pageviews your site has. more>> This script is a very simple php counter that doesnt requires mysql and keeps track of how many unique pageviews your site has.<<less
Added: 2005-10-19 License: GPL Price: $0.00USD
15 downloads
RCBlog
RCBlog is a simple blog script that requires only PHP and write access. It stores all information in flat text files, so no database software is required. Features include static posts, private notes, more>> RCBlog is a simple blog script that requires only PHP and write access. It stores all information in flat text files, so no database software is required. Features include static posts, private notes, customization, full markup, uploads/file management, and automatic colorscheme generation.<<less
Added: 2004-10-25 License: Freeware Price: Free
1827 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 requiring 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