Main > Free Download Search >

Free occurs script

occurs

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 42
ClickCounter 2.0

ClickCounter 2.0


ClickCounter is an easy to install and easy to use Click Tracker. Simply add a link in the administration panel and you can replace a download link on your website so that you can count how many times a file has been downloaded or how many times a page more>> ClickCounter is an easy to install and easy to use Click Tracker. Simply add a link in the administration panel and you can replace a download link on your website so that you can count how many times a file has been downloaded or how many times a page has been visited. NOW IN ITS SECOND VERSION! WITH MORE FEATURES THAN EVER BEFORE... Simple to install and use * Add unlimited links * Specify maximum link clicks * Specify URLs that users should be taken to if an error occurs * Gather stats from link clicks * Easily add links * Easily delete and reset click counts, now with confirmation! * Display the click count on any page * Secure administration area<<less
Added: 2008-05-15 License: Freeware Price: $0.00USD
13 downloads
Simple Errors 0.1

Simple Errors 0.1


Simple Errors is a simple error logger. It replaces the default Apache error handler with your own. Customizable output page to suit your own needs. Even logs and/or emails you when an error occurs! Can add new error codes easily, using the flat file more>> Simple Errors is a simple error logger. It replaces the default Apache error handler with your own. Customizable output page to suit your own needs. Even logs and/or emails you when an error occurs! Can add new error codes easily, using the flat file database.<<less
Added: 2004-07-20 License: GPL Price: $0.00USD
14 downloads
 
Other version of Simple Errors
Simple Errorskneuf.com - Even logs and/or emails you when an error occurs! C. Simple Errors is a simple error logger. It replaces the default Apache error handler with your own. Customizable
License:GPL
Download
1922 downloads
Added: 2004-07-20
odbcpp 1.3

odbcpp 1.3


Except for a very few functions, all ODBC functions return an error code. It is extremely tedious to check every single function return value to make sure whether an error occurred or not. With odbcpp, an error is transformed to an exception. Thus, more>> Except for a very few functions, all ODBC functions return an error code. It is extremely tedious to check every single function return value to make sure whether an error occurred or not. With odbcpp, an error is transformed to an exception. Thus, you can write many calls within a try/catch block and handle any one error in the catch() statement. This will dramatically reduce your work. Also the library object maintain a state and know what they can and cannot do next. This will help you tremendously to catch errors that could otherwise take you days to find out. odbcpp is a free library under the GPL license. And Made to Order Software Corporation offers business licenses for businesses that need to use our product in their proprietary software. But, please, first give it a try! You can find odbcpp, the C++ library to use ODBC seamlessly, on http://sourceforge.net/pr ojects/odbcpp And please, let us know if you like it or not! Thank you. Alexis W.<<less
Added: 2008-07-15 License: GPL Price: $995.00USD
11 downloads
Matthew Casperson 1

Matthew Casperson 1


See how to use the Quadtree renderer to fix the "popping" issues that can occur in Papervision 3D. Demo and source code included. more>> See how to use the Quadtree renderer to fix the "popping" issues that can occur in Papervision 3D. Demo and source code included.<<less
Added: 2009-02-24 License: Freeware Price: $0.00USD
10 downloads
Error System 2.0

Error System 2.0


This set of scriptlets allows you to have both customised Apache error pages and the opportunity to be notified, by email, when an error occurs on your site. When site visitors arrive at an error page, they have the option of notifying you by more>> This set of scriptlets allows you to have both customised Apache error pages and the opportunity to be notified, by email, when an error occurs on your site. When site visitors arrive at an error page, they have the option of notifying you by selecting a single link on the generated error page. The system then sends you an automatically generated email with all of the relevant information you need to start tracking down any real errors - such as the urls of broken links etc.<<less
Added: 2006-07-13 License: Free Non-Commercial Price: $0.00USD
16 downloads
 
Other version of Error System
Error SystemMel Pedley - Apache error pages and the opportunity to be notified, by email, when an error occurs on your site. When site visitors arrive at an error page. This set of scriptlets
License:Free for non-commercial use
Download
1242 downloads
Added: 2006-07-13
Quartz 1.6.5

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

  1. 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
  2. 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.
  3. 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.
  4. 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.
  5. Clustering:
    • Fail-over.
    • Load balancing.
  6. 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.
  7. 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
<<less
Added: 2009-06-26 License: Other Free / Open Source License - Apache 2.0 License Price: OtherFreeOpenSourceLicenseApache2.0License
21 downloads
ASP.NET 2.0: Security

ASP.NET 2.0: Security


In this tutorial you will learn about ASP.NET 2.0 Security, The Security Architecture of ASP.NET 2.0, The security infrastructure and subsystem relationships of the ASP.NET and the sequence of events more>> In this tutorial you will learn about ASP.NET 2.0 Security, The Security Architecture of ASP.NET 2.0, The security infrastructure and subsystem relationships of the ASP.NET and the sequence of events that occur when a authentication is sought.<<less
Added: 2006-06-04 License: Freeware Price: Free
1243 downloads
Secure PHP Mail Form 2

Secure PHP Mail Form 2


Free PHP Mail Form is a single-page multi-use PHP mail (e-mail) website form that allows your users to send you feedback directly from your website, without the need to customise heavily detailed scripts and panic over security. Stuff that comes as more>> Free PHP Mail Form is a single-page multi-use PHP mail (e-mail) website form that allows your users to send you feedback directly from your website, without the need to customise heavily detailed scripts and panic over security. Stuff that comes as standard: * Meta header and JavaScript injection protection * Tags stripped and whitespace trimmed * Validity and length checking on name and e-mail fields * IP and browser details included in e-mail * Valid data displayed when other errors occur * Spam word check * Common spam bot blocking * New in v2: Bayesian style spam filtering<<less
Added: 2008-12-28 License: GPL Price: $0.00USD
15 downloads
Openbravo ERP

Openbravo ERP


Openbravo ERP is a fully functional, integrated, web-based, open source ERP. more>> Openbravo ERP is an application supporting users a unique value proposition. It is for small and mid-size enterprises that are looking for an integrated system to manage their business. One that is capable of managing daily operations, optimizing business processes, improving customer satisfaction and, ultimately, increasing profits.

Major Features:

  1. Procurement Management
    • Rates, purchase orders, goods receipts, invoice registration and accounting, purchase planning, etc.
    • Openbravos handling of the flow of supply guarantees the integrity, tracking, and homogeneity of the entire process.
    • Each document in the supply process is based on the information contained in the previous document, so that repetitive introduction of data and human errors are avoided. In this way, it is possible to navigate through different documents that conform to a determined flow (order, goods receipt, invoice, payment) and know in real time the state of any given order (pending, delivered, partially delivered, invoiced, etc). The natural integration of this process with accounting guarantees that the finance department always has up to date and reliable data at its disposal.
  2. Warehouse Management
    • Warehouses and bins, warehouse units, lots, serial numbers, packages, labels, receipts and deliveries, movements between warehouses, inventories, stock valuation, transport, etc.
    • The warehouse management processes built into Openbravo allows the inventory in your organization to always be up to date and correctly valued. The possibility of defining the warehouse structure of your organization to unit level (storage bins) facilitates the exact localization of your stock at any time. Additionally, the capacity for managing product lots and the possibility of using serial numbers assure compliance with the tracking requirements imposed by the majority of industries.
  3. Project and Service Management
    • Projects, phases, tasks, resources, budget, expenses and expense invoicing, related purchases, etc.
    • This functionality is orientated towards companies whose activities are based on the delivery of projects and services. With relationship to projects, Openbravo allows for the management of budgets, phases, tasks, expenses and purchases related with each individual project.
    • These projects may be related to monitoring construction projects or even sending out and sales and purchase related requests. The service component permits companies to define services and resources and control all activities. These activities may or may not be billable, for internal or external customers, and be monitored for incurred expenses at a detailed level.
  4. Production Management
    • Plant structure, production plans, BOMs, MRP, manufacturing orders, job reports, costs of production, work incidences, preventive maintenance types, etc.
    • The production functions and plant management in Openbravo allow a complete shaping of the productive structure of each organization (sections, cost centers and work centers) as well as the relevant data for production: production plans (operation sequences), and products used to make one another.
    • Currently, the functionality provided by Openbravo is orientated towards covering the usual necessities of a discrete production environment: production planning and requests related to procurement using MRP, creation of manufacturing orders, job reports (notification of times and consumption), calculating costs of production, notification of job incidents and maintenance reports.
  5. Sales Management and Customer Relationship Management (CRM)
    • Prices, rates, varying quantity sales orders, shipments, invoicing, volume discounts, commissions, CRM, etc.
    • The functionality of Openbravo in the Sales Management module is expressly designed with the objective of allowing maximum flexibility and adaptability in its execution, needed in any commercial process. It is possible to link documents (orders, shipments, invoices) in any order that the company requires or even disregard any one of these that is not necessary.
    • All this is achieved without sacrificing the coherence and integrity of information and guaranteeing the tracking of processes. The capacities of integration with order capture systems by PDAs extend the potential of the solution beyond the physical limits of the particular company.
  6. Financial Management
    • Chart of accounts, accounts, budgets, taxes, general accounting, accounts payable, accounts receivable, bank accounting, balance sheet, P&L, fixed assets, etc.
    • The financial management functionality provided by Openbravo is designed to minimize manual data input on behalf of the user, thereby freeing them from tedious, routine tasks and allowing greater focus on other, more value added tasks.
    • This increase in productivity is due to the financial department acting as collector of all the relevant actions generated from the other management departments. This occurs in such a way that these have an automatic reflection in the general accounting, in the accounts receivable and accounts payable as soon as they are produced.
  7. Business Intelligence (BI)
    • Reporting, multidimensional analysis (OLAP), balanced scorecards.
    • Nowadays, business organizations handle a great deal of data in the practice of their business activities. This does not necessarily mean that they have available to them the necessary information for the management of their enterprise.
    • The BI component of Openbravo, integrated into the management system, will help you to monitor of the state of your company, providing you with the relevant information for decision-making. The predefined balanced scorecard will allow you to verify, through the monitoring of a series of key indicators, if the defined strategy is being correctly implemented in your organization.
<<less
Added: 2008-06-04 License: Other Free / Open Source License Price: OtherFreeOpenSourceLicense
33 downloads
Custom Error Pages In ASP.NET 1

Custom Error Pages In ASP.NET 1


This tutorial explains how to use custom errors pages to provide better user experience when error occurs. When error is occurred on ASP.NET web application, user will get default error page (which is not so nice looking, also known as "Yellow screen more>> This tutorial explains how to use custom errors pages to provide better user experience when error occurs. When error is occurred on ASP.NET web application, user will get default error page (which is not so nice looking, also known as "Yellow screen of death"). This error page confuses average visitor who dont know the meaning of "Runtime Error". Although developers like to know many details about an error, it is better to show more friendly error page to your users.<<less
Added: 2009-03-12 License: Freeware Price: $0.00USD
14 downloads
The GutterStar.net RSS Service 4

The GutterStar.net RSS Service 4


By using our RSS Script Generator, you can create a fully customized RSS feed script for your website using any valid RSS URL on the web. When you license one or more of your domains with the GutterStar.net RSS Service, you will be able to fully more>> By using our RSS Script Generator, you can create a fully customized RSS feed script for your website using any valid RSS URL on the web. When you license one or more of your domains with the GutterStar.net RSS Service, you will be able to fully customize the RSS templates for each of your domains using your Domain License Control Panel, which provides an integrated template editor, usage instructions, and a full index of the dynamic variables that are available for use within your domain templates. Benefits include: Full customization of the RSS templates for your website, allowing you to directly change the HTML code for each template using your Domain License Control Panel. An automatic courtesy notification if the GutterStar.net RSS Service detects that an error has occurred with any of your RSS feeds at runtime. Lighter bandwidth usage for your website, since all RSS feed content (including images and media content) is automatically downloaded beforehand...<<less
Added: 2007-04-24 License: Freeware Price: $0.00USD
10 downloads
Event Log Monitoring 1.12d

Event Log Monitoring 1.12d


Event log management is an important part of maintaining high up time and availability of your critical systems. This simple script will monitor your event logs and send you an email if any serious errors occur. Script has an auto-ignore feature which more>> Event log management is an important part of maintaining high up time and availability of your critical systems. This simple script will monitor your event logs and send you an email if any serious errors occur. Script has an auto-ignore feature which will ignore re-occurring scripts if youd like. Be the first to know if your server has an error, before your customers and before you lose business due to downtime. Event log management is the first of many more event log management tools. GPL.<<less
Added: 2004-05-24 License: GPL Price: $0.00USD
12 downloads
 
Other version of Event Log Monitoring
Event Log Monitoringyour event logs and send you an email if any serious errors occur. Script has an auto-ignore feature which will ignore re-occurring scripts if youd like. Be the first to know if your server has an
License:GPL
Download
1100 downloads
Added: 2004-05-24
PhpBase 0.2a

PhpBase 0.2a


PhpBase is a set of Open Source PHP classes and functions aimed to help developers submitting their data to Google Base. It can also send the data feeds by FTP. This tool helps developers to keep data submissions accurate and avoid common errors more>> PhpBase is a set of Open Source PHP classes and functions aimed to help developers submitting their data to Google Base. It can also send the data feeds by FTP. This tool helps developers to keep data submissions accurate and avoid common errors that might occur when submitting to standard schemes recommended by Google. It has a plug-in style for attributes and schemes, so new data types can be defined easily. Adding your content to Google Base will make your site more searchable. This tool is targeted mainly to developers and is not intended to be used by end users or website owners with no PHP experience.<<less
Added: 2005-12-05 License: LGPL Price: $0.00USD
10 downloads
 
Other version of PhpBase
PhpBasekeep data submissions accurate and avoid common errors that might occur when submitting to standard schemes recommended by Google. It has a plug-in style for attributes and schemes, so new data
License:LGPL
Download
1418 downloads
Added: 2005-12-05
Event Log Event Types 1.1

Event Log Event Types 1.1


Detailed descriptions of the different event log event types that may occur in the windows event log. The windows event logs can be accessed using development tools to aid in overall management. more>> Detailed descriptions of the different event log event types that may occur in the windows event log. The windows event logs can be accessed using development tools to aid in overall management.<<less
Added: 2005-05-06 License: Freeware Price: $0.00USD
12 downloads
 
Other version of Event Log Event Types
Event Log Event TypesDetailed escriptions of the different event log event types that may occur in the windows event log. The windows event logs can be accessed using development tools to aid in overall management
License:Freeware
Download
1641 downloads
Added: 2005-05-06
eZ components 2007.2.1

eZ components 2007.2.1


eZ components is an enterprise ready general purpose PHP components library by eZ systems. more>>

eZ components 2007.2.1 is a useful program including independent building blocks for PHP application development eZ components for speeding up development and limiting risks. An application can use one or more components effortlessly as they all adhere to the same naming conventions and follow the same structure.

All components are based on PHP 5.1, except for the ones that require the new Unicode support that will be available from PHP 6 on.

The Base component provides basic functionality that all other components rely on. This basic functionality contains a certain set of exceptions and a mechanism to load components on demand, reducing memory usage. Other components build around this Base component and provide functionality for a whole range of different subjects.

Subjects include reading archive files (.zip, .tar), caching data, database SQL abstraction layer and schema management, debugging and event logging, image analysis and manipulation, in-process communication, sending fully feature mail message, templating and the safe usage of input data. Besides these main features there are also a few other components dealing with a whole range of subjects.

This is a complete list of all the individual libraries that is included in eZ components.

  • Archive
    • Allows you to extract and create archive files, such as .tar (ustar, v7tar and gnutar) and .zip
  • Cache
    • A solution for caching, supporting multiple backends allowing you to specify the best performing solution for your caching-problem.
  • Configuration
    • A component that allows you to use configuration files in different formats.
    • The formats include the standard .ini file, and an array based format.
  • ConsoleTools
    • A set of classes to do different actions with the console (also called shell). It can render a progress bar, tables and a status bar and contains a class for parsing command line options.
  • Database
    • A lightweight database layer on to of PHPs PDO that allows you to utilize a database without having to take care of differences in SQL dialects.
  • DatabaseSchema
    • A set of classes that allow you to extract information from a database schema, compare database schemas and apply a set of changes to a database schema.
  • Debug
    • This components provides a set of classes that help you to debug an application. It provides timers and report generators for different formats that give a summary of warnings and errors that occurred within your application.
  • EventLog
    • Allows you to log events into files or other storage spaces in different formats.
  • Execution
    • Provides functionality to give feedback to your applications users when a fatal error happened or an uncaught exception was thrown.
  • Feed
    • Provides reading and writing support of RSS (multiple versions) and ATOM feeds.
  • File
    • Provides support for file operations which are not covered by PHP or are just missing.
  • ImageAnalysis
    • This class allows you to analyse image files in different ways. At least the MIME type of the file is returned. In some cases (JPEG, TIFF and GIF) additional information is gathered as well.
  • ImageConversion
    • A set of classes to apply different filters on images, such as colour changes, resizing and special effects.
  • Mail
    • The components allows you construct Mail messages conforming to the RFCs. It has support for attachments, multipart messages and HTML mail. It also interfaces with SMTP to send the e-mail. Reading and parsing mail messages comes in version 1.1.
  • PersistentObject
    • This component allows you to store an arbitrary data structures to a fixed database table. The component provides all the functionality needed to fetch, list, delete etc these datastructures.
  • PhpGenerator
    • Provides a simple interface for creating PHP files and executing PHP code.
  • SystemInformation
    • Provides access to common system variables, such as CPU type and speed, and the available amount of memory.
  • Template
    • A fully functional Templating system, supporting template compilation in different levels, user defined functions and operators, an optimizer, output escaping for different output handlers to prevent XSS and other security problems and a plug in system for extra functionality (such as a Translation system).
  • Translation
    • A component that reads XML translation definitions (the Qt Linguist format), supports caching of translation contexts and presents you with a class to apply translations to strings. A filter system allows you to transform translation definitions for special use.
  • Url
    • Provides functionality for parsing URL parameters, and path manipulation.
  • UserInput
    • A component that assists you to safely user input variables coming into your application. It builds on top of PHPs filter extension and extends it by providing a more inituitive API.

Major Features:

  1. Designed for enterprise PHP application development
  2. Open source and licensed under the New BSD license
  3. Clear IP rights
  4. Thoroughly documented
  5. Developed, supported and maintained by eZ systems
<<less
Added: 2008-03-29 License: Other Free / Open Source License - NewBSD License Price: OtherFreeOpenSourceLicenseNewBSDLicense
12 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3