approval workflow
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 151
CMFPlacefulWorkflow 1.0.2
CMFPlacefulWorkflow project is a CMF/Plone product for locally changing the workflow of content types. more>>
CMFPlacefulWorkflow project is a CMF/Plone product for locally changing the workflow of content types.
CMFPlacefulWorkflow: A Plone product that allows you to define workflow policies that define content type to workflow mappings that can be applied in any sub-folder of your Plone site.
When you access the root of your site, you will see a new action in the workflow state drop-down menu called "policy". Click on the "policy" link.
The next page will let you add a policy to your folder by clicking on the "Add Workflow policy" link. Click on "Add Workflow policy".
Now you have a workflow policy in your site, and you can set the workflow policies for this folder and below.
We didnt add workflow policies yet, so you dont have the choice between different workflow policies, but the default workflow policy will be taken both for the folder and below.
<<lessCMFPlacefulWorkflow: A Plone product that allows you to define workflow policies that define content type to workflow mappings that can be applied in any sub-folder of your Plone site.
When you access the root of your site, you will see a new action in the workflow state drop-down menu called "policy". Click on the "policy" link.
The next page will let you add a policy to your folder by clicking on the "Add Workflow policy" link. Click on "Add Workflow policy".
Now you have a workflow policy in your site, and you can set the workflow policies for this folder and below.
We didnt add workflow policies yet, so you dont have the choice between different workflow policies, but the default workflow policy will be taken both for the folder and below.
Download (0.046MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
DwWorkflow 0.91.1
DwWorkflow is a datawarehouse process workflow server and generator of datawarehouse mappings. more>>
DwWorkflow is a datawarehouse process workflow server and generator of datawarehouse mappings.
It allows the user to define dependencies between tables or files and processes and it runs processes in parallel according to these metadata.
DwWorkflow can run with or without an SQL database server. A process can be any program, not just a database statement.
Enhancements:
- This release includes a graphical plugin for the Eclipse platform for the dwworkflow server, and also includes needed changes in the server for the plugin to work.
<<lessIt allows the user to define dependencies between tables or files and processes and it runs processes in parallel according to these metadata.
DwWorkflow can run with or without an SQL database server. A process can be any program, not just a database statement.
Enhancements:
- This release includes a graphical plugin for the Eclipse platform for the dwworkflow server, and also includes needed changes in the server for the plugin to work.
Download (3.9MB)
Added: 2006-08-16 License: BSD License Price:
1165 downloads
DCWorkflow Dump 1.2
DCWorkflow Dump provides a simple tool to dump a web-generated workflow to Python code for use in Products. more>>
DCWorkflow Dump provides a simple tool to dump a web-generated workflow to Python code for use in Products.
Dumps DCWorkflow specifications into a python script.
Installation
.Untar/copy it into your Zopes Products dir
.Restart Zope
.You now have a dump tab in the workflow management screen
Usage
.Hit the dump tab in your workflow management screen
.The resulting code can be used to programatically define a DCWorkflow
Enhancements:
- Bugfix release with better support for transitions python scripts and new support for transitions external methods.
<<lessDumps DCWorkflow specifications into a python script.
Installation
.Untar/copy it into your Zopes Products dir
.Restart Zope
.You now have a dump tab in the workflow management screen
Usage
.Hit the dump tab in your workflow management screen
.The resulting code can be used to programatically define a DCWorkflow
Enhancements:
- Bugfix release with better support for transitions python scripts and new support for transitions external methods.
Download (0.005MB)
Added: 2007-02-20 License: GPL (GNU General Public License) Price:
978 downloads
vPrise Workgroup 1.0b
vPrise Workgroup is a distributed environment that helps bridging development teams. more>>
vPrise Workgroup application is a distributed environment that helps bridging development teams. vPrise Workgroup, allows users to communicate with one another on a project basis over time sheets, expense reports, issues, file exchange, tasks, schedules and calendars.
The tool can be divided into three distinct groups, where a user might be limited to the confines of a single group or utilize all features in all groups. The three feature groups within vPrise Workgroup are:
- Employee data submissions - allows distributed employees to submit hour reports and expense sheets.
- Management view - allows managers within an approval chain to approve/reject employee submitted time sheets. Furthermore it allows the manager to sum up this information using reports.
- Collaboration tool set - allows employees of the company to communicate with other team members and customer teams. These features include file trading, a distributed calendar & issue tracking.
<<lessThe tool can be divided into three distinct groups, where a user might be limited to the confines of a single group or utilize all features in all groups. The three feature groups within vPrise Workgroup are:
- Employee data submissions - allows distributed employees to submit hour reports and expense sheets.
- Management view - allows managers within an approval chain to approve/reject employee submitted time sheets. Furthermore it allows the manager to sum up this information using reports.
- Collaboration tool set - allows employees of the company to communicate with other team members and customer teams. These features include file trading, a distributed calendar & issue tracking.
Download (MB)
Added: 2006-05-11 License: Freeware Price:
1262 downloads

Photovault for Linux 0.5.0
Photovault is a free photo workflow and archiving application on linux. more>> Photovault is a photo workflow and archiving application intended for photographers. With it you can easily keep even a large photo archive in good order, find the images you need and do the normal image processing tasks in all phases of your workflow, including raw file conversion, color corrections and image cropping and rotation.
Photovault is free software licensed under GNU General Public License (GPL).
Photovault Features
Easily search for your photos based on shooting date or metadata
Annotate your images with additional comments, information about shooting place, technical details or other metadata
Add your photos into unlimited number of folders without using additional disk space
Crop and rotate your photos freely - and always preserve the original image in case you want to revert the operation later
Support for most common image file formats, including raw image formats of most camera manufacturers
Flexible adjustment of conversion from raw image files to normal formats, including color balance, hue and contrast settings
Adjust photo color balance and saturation
Written mostly in Java, GPL licensed, runs on Windows, Linux and MacOS X<<less
Download (7.83MB)
Added: 2009-04-05 License: Freeware Price: Free
202 downloads
Workflow::Factory 0.28
Workflow::Factory is a Perl module that generates new workflow and supporting objects. more>>
Workflow::Factory is a Perl module that generates new workflow and supporting objects.
SYNOPSIS
# Import the singleton for easy access
use Workflow::Factory qw( FACTORY );
# Add XML configurations to the factory
FACTORY->add_config_from_file( workflow => workflow.xml,
action => [ myactions.xml, otheractions.xml ],
validator => [ validator.xml, myvalidators.xml ],
condition => condition.xml,
persister => persister.xml );
# Create a new workflow of type MyWorkflow
my $wf = FACTORY->create_workflow( MyWorkflow );
# Fetch an existing workflow with ID 25
my $wf = FACTORY->fetch_workflow( MyWorkflow, 25 );
Public
The Workflow Factory is your primary interface to the workflow system. You give it the configuration files and/or data structures for the Workflow, Workflow::Action, Workflow::Condition, Workflow::Persister, and Workflow::Validator objects and then you ask it for new and existing Workflow objects.
Internal
Developers using the workflow system should be familiar with how the factory processes configurations and how it makes the various components of the system are instantiated and stored in the factory.
<<lessSYNOPSIS
# Import the singleton for easy access
use Workflow::Factory qw( FACTORY );
# Add XML configurations to the factory
FACTORY->add_config_from_file( workflow => workflow.xml,
action => [ myactions.xml, otheractions.xml ],
validator => [ validator.xml, myvalidators.xml ],
condition => condition.xml,
persister => persister.xml );
# Create a new workflow of type MyWorkflow
my $wf = FACTORY->create_workflow( MyWorkflow );
# Fetch an existing workflow with ID 25
my $wf = FACTORY->fetch_workflow( MyWorkflow, 25 );
Public
The Workflow Factory is your primary interface to the workflow system. You give it the configuration files and/or data structures for the Workflow, Workflow::Action, Workflow::Condition, Workflow::Persister, and Workflow::Validator objects and then you ask it for new and existing Workflow objects.
Internal
Developers using the workflow system should be familiar with how the factory processes configurations and how it makes the various components of the system are instantiated and stored in the factory.
Download (0.10MB)
Added: 2007-07-10 License: Perl Artistic License Price:
839 downloads
Bio::Tools::Run::PiseWorkflow 1.4
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. more>>
Bio::Tools::Run::PiseWorkflow is a class to create a Pise workflow using Pise application objects as methods. A workflow is defined by a set of methods which all instanciate the class PiseApplication.
SYNOPSIS
# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);
# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);
# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();
# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);
# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);
# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);
# Run the workflow.
$workflow->run();
<<lessSYNOPSIS
# First, create a Bio::Tools::Run::AnalysisFactory::Pise object:
my $factory = new Bio::Tools::Run::AnalysisFactory::Pise();
# Then create the application objects (Pise::Run::Tools::PiseApplication):
my $clustalw = $factory->program(clustalw);
$clustalw->infile($my_alignment_file);
my $protpars = $factory->program(protpars);
# You can specify different servers for different applications :
my $protdist = $factory->program(protpars
-remote => http://kun.homelinux.com/cgi-bin/Pise/5.a//protpars.pl,
-email => your_email);
# Create a new workflow object :
my $workflow = Bio::Tools::Run::PiseWorkflow->new();
# Define the workflows methods using the application objects:
# the application method $protpars will receive the output of
# type readseq_ok_alig from the application method $clustalw.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protpars,
-pipetype => readseq_ok_alig);
# The application method $clustalw will be piped to a second
# application method ($protdist) using the output of type readseq_ok_alig.
$workflow->addpipe(-method => $clustalw,
-tomethod => $protdist,
-pipetype => readseq_ok_alig);
# The application method $protpars will be piped to the application
# method $consense using the output of type phylip_tree.
my $consense = $factory->program(consense);
$workflow->addpipe(-method => $protpars,
-tomethod => $consense,
-pipetype => phylip_tree);
# Run the workflow.
$workflow->run();
Download (0.81MB)
Added: 2007-02-22 License: Perl Artistic License Price:
974 downloads
Jawflow 1.0.0
JawFlow is a Workflow Engine partially conformal to WfMC directives. more>>
JawFlow is a Workflow Engine partially conformal to WfMC (www.wfmc.org) directives, completely written in Java using JMX technology. It understands XML Process Definition Language (XPDL) and can be customized using activities written in Java or in any scripting language supported by BSF.
JawFlow is composed by many interacting modules. Many of these modules are JMX Mbeans and so they need a JMX Agent to run. To develop, test and run JawFlow we used Jboss AS but since there are no strict dependencies in the code related to Jboss it should be installed in any application server supporting the JMX technology.
<<lessJawFlow is composed by many interacting modules. Many of these modules are JMX Mbeans and so they need a JMX Agent to run. To develop, test and run JawFlow we used Jboss AS but since there are no strict dependencies in the code related to Jboss it should be installed in any application server supporting the JMX technology.
Download (12.5MB)
Added: 2006-10-19 License: LGPL (GNU Lesser General Public License) Price:
1100 downloads
Apache Graffito 1.0
Apache Graffito provides a framework used to build content-based applications. more>>
Apache Graffito provides a framework used to build content-based applications.
Graffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.
It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.
<<lessGraffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.
It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.
Download (MB)
Added: 2007-02-13 License: The Apache License Price:
983 downloads
Mapasuta openArchitectureWare WorkFlow Runner 1.1
Mapasuta openArchitectureWare WorkFlow Runner plugin allows to start a workflow file during a Maven2 build run. more>>
Mapasuta openArchitectureWare WorkFlow Runner plugin allows to start a workflow file during a Maven2 build run.
There are only two goals, one for running a workflow file during normal build (run-workflow), and one for test builds (run-test-workflow).
Usage:
Generate sources
The common way to use the plugin is to add it to your pom.xml:
< build >
[...]
< plugins >
[...]
< plugin >
< groupId>net.sf.mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-workflow < /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>
The plugin runs in the phase generate-sources and generates the sources into the default output folder target/generated-sources/maven-oaw-plugin.
The workflow parameter outputDir is set to the output folder and can be used in the workflow file.
It adds the output folder to the compilers source folder list, so the generated sources will be compiled, if you run the phase compile.
Generate test sources
To generate test sources, use the following simple configuration:
< build >
[...]
< plugins >
[...]
< plugin>
< groupId>mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-test-workflow< /goal>< /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>
The plugin runs in the phase generate-test-sources and generates the sources into the default output folder target/generated-test-sources/maven-oaw-plugin.
<<lessThere are only two goals, one for running a workflow file during normal build (run-workflow), and one for test builds (run-test-workflow).
Usage:
Generate sources
The common way to use the plugin is to add it to your pom.xml:
< build >
[...]
< plugins >
[...]
< plugin >
< groupId>net.sf.mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-workflow < /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>
The plugin runs in the phase generate-sources and generates the sources into the default output folder target/generated-sources/maven-oaw-plugin.
The workflow parameter outputDir is set to the output folder and can be used in the workflow file.
It adds the output folder to the compilers source folder list, so the generated sources will be compiled, if you run the phase compile.
Generate test sources
To generate test sources, use the following simple configuration:
< build >
[...]
< plugins >
[...]
< plugin>
< groupId>mapasuta.build.maven.plugins< /groupId>
< artifactId>maven-oaw-plugin< /artifactId>
< configuration>
< workflowFile>src/main/workflow/workflow.oaw< /workflowFile>
< /configuration>
< executions>
< execution>
< goals>< goal>run-test-workflow< /goal>< /goals>
< /execution>
< /executions>
< /plugin>
[...]
< /plugins>
[...]
< /build>
The plugin runs in the phase generate-test-sources and generates the sources into the default output folder target/generated-test-sources/maven-oaw-plugin.
Download (0.017MB)
Added: 2006-11-02 License: GPL (GNU General Public License) Price:
1086 downloads
Seagull PHP Application Framework 0.6.2
Seagull is an OO PHP framework with the core modules licensed under BSD. more>>
Seagull is an OO PHP framework with the core modules licensed under BSD, and has the following design goals:
- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
<<less- independence of data, logic & presentation layers
- extensible component architecture
- reduction of repetitive programming tasks
- simplifying data access
- comprehensive error handling
- action request workflow
- simplified form handling
- component reuse
- authentication management
- integration with PEAR libraries
- PHP coding standards
- platform/PHP version/browser independence
- self-generating documentation
- quality end user docs
There are some default modules that come with the framework, these handle tasks related to:
- user/group management
- content management
- document management
- category management
- messaging
- navigation
Download (3.7MB)
Added: 2007-05-05 License: BSD License Price:
903 downloads
phpListPro 2.0.1
phpListPro project is a PHP/mySQL rating TopList professional script. more>>
phpListPro project is a PHP/mySQL rating TopList professional script.
Main features:
- Easy Configuration with CSS (some samples incl.)
- All functions configurable with one config-file
- mySQL Database Backend (fast, stable)
- unlimited language-templates, with language-select (english, german, dutch, french, spanish, italian, russian, ... included)
- unlimited categories, with category-select
- Site rating on incoming votes
- 3 Stage - Anti cheating Gateway
- AntiFrame on Gateway
- unique Cheating-Detection (TILT-Protect)
- Cookie-Detection (only cookie-enabled browsers can vote)
- Random-Link
- Site-Search
- NewIcon for new entries
- Variable pagebreaks
- Userfriendly Add site (with HTML integration help)
- Userfriendly Edit site
- Userfriendly HTML integration help
- Auto "Add to Favorits" Window for first-time Users
- Exitwindows for exits and outclicks
- Listsorting on votes or hits or ratings (cascading)
- Listreset for cronjobs or automatic
- SetInactive on listreset (if no votes within timeframe)
- SetActive on listreset (if votes within timeframe)
- Lost password function
- User confirmation mail
- User mail-address validation
- Webmaster notify mail
- Webmaster Site-approval
- BadWords detection
- IP-banning with Cookie remember
- Minimum-votes-to-display filter
- Advanced logging (incl. automatic oldlogprune)
- UserOnline display
- ProcessingTime display
- WEB-Adminpanel (search, votelogs, edit, delete, approval, ...)
- WEB-HTML-Newsletter
- BONUS: NewList (PluginFunction to List new Sites as Text)
- BONUS: Upgradetool from phpList (File-to-DB Converter)
- BONUS: Upgradetool from Autorank Pro (File-to-DB Converter)
- BONUS: Upgradetool from Turbotrade (File-to-DB Converter)
- BONUS: Upgradetool from CustomLists (File-to-DB Converter)
<<lessMain features:
- Easy Configuration with CSS (some samples incl.)
- All functions configurable with one config-file
- mySQL Database Backend (fast, stable)
- unlimited language-templates, with language-select (english, german, dutch, french, spanish, italian, russian, ... included)
- unlimited categories, with category-select
- Site rating on incoming votes
- 3 Stage - Anti cheating Gateway
- AntiFrame on Gateway
- unique Cheating-Detection (TILT-Protect)
- Cookie-Detection (only cookie-enabled browsers can vote)
- Random-Link
- Site-Search
- NewIcon for new entries
- Variable pagebreaks
- Userfriendly Add site (with HTML integration help)
- Userfriendly Edit site
- Userfriendly HTML integration help
- Auto "Add to Favorits" Window for first-time Users
- Exitwindows for exits and outclicks
- Listsorting on votes or hits or ratings (cascading)
- Listreset for cronjobs or automatic
- SetInactive on listreset (if no votes within timeframe)
- SetActive on listreset (if votes within timeframe)
- Lost password function
- User confirmation mail
- User mail-address validation
- Webmaster notify mail
- Webmaster Site-approval
- BadWords detection
- IP-banning with Cookie remember
- Minimum-votes-to-display filter
- Advanced logging (incl. automatic oldlogprune)
- UserOnline display
- ProcessingTime display
- WEB-Adminpanel (search, votelogs, edit, delete, approval, ...)
- WEB-HTML-Newsletter
- BONUS: NewList (PluginFunction to List new Sites as Text)
- BONUS: Upgradetool from phpList (File-to-DB Converter)
- BONUS: Upgradetool from Autorank Pro (File-to-DB Converter)
- BONUS: Upgradetool from Turbotrade (File-to-DB Converter)
- BONUS: Upgradetool from CustomLists (File-to-DB Converter)
Download (MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
925 downloads
XWork 1.0.4
XWork is a generic command pattern implementation and inversion of control (IoC) container. more>>
XWork is a generic command pattern implementation and inversion of control (IoC) container. XWork is designed to be small, fast, and fit specifically for workflow-related usages, such as Web application frameworks and workflow engines. XWork provides the foundation for WebWork, a Java-based Web framework.
Main features:
- Interceptor-based framework, allowing for tons of extensions to be built
- Inversion of Control (IoC) framework
- Can be used as the basis for a web application framework all the way to a workflow engine
Enhancements:
- This release primarily involves a few internal tweaks and API convenience methods.
- It is backwards compatible with 1.0.3 and should have no impact when upgrading.
<<lessMain features:
- Interceptor-based framework, allowing for tons of extensions to be built
- Inversion of Control (IoC) framework
- Can be used as the basis for a web application framework all the way to a workflow engine
Enhancements:
- This release primarily involves a few internal tweaks and API convenience methods.
- It is backwards compatible with 1.0.3 and should have no impact when upgrading.
Download (4.7MB)
Added: 2005-11-17 License: GPL (GNU General Public License) Price:
1453 downloads
ExiFlow 0.3.0
ExiFlow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes. more>>
ExiFlow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes.
EXIF headers are used as the central information repository, so users may change their software at any time without loosing their data.
Which tools are provided by ExiFlow?
exigui
This is the GTK frontend for all other tools but exiimport. If the mouse is your best friend you will like this one.
exiimport
Import files from given directories to your photo folder. Optionally unmounts source media after successfull import.
exirename
Rename a bunch of image files according to our holy file naming schema.
exiperson
Personalize images by setting EXIF fields to values spezified in exif.cfg or on command line. Any arbitrary field name may be configured or given. This is normally used for artist and copyright information.
exiassign
Find groups of derived images and exchange EXIF information between them. That way, a freshly edited derivate can automatically inherit its mothers EXIF information.
exigate
Automatically gate information between gthumb metadata and the images EXIF information. This lets you describe and tag your photos whith gthumb and transfer everything to the according EXIF tags afterwards. The other direction is also possible, so you are never bound to using one specific piece of software.
<<lessEXIF headers are used as the central information repository, so users may change their software at any time without loosing their data.
Which tools are provided by ExiFlow?
exigui
This is the GTK frontend for all other tools but exiimport. If the mouse is your best friend you will like this one.
exiimport
Import files from given directories to your photo folder. Optionally unmounts source media after successfull import.
exirename
Rename a bunch of image files according to our holy file naming schema.
exiperson
Personalize images by setting EXIF fields to values spezified in exif.cfg or on command line. Any arbitrary field name may be configured or given. This is normally used for artist and copyright information.
exiassign
Find groups of derived images and exchange EXIF information between them. That way, a freshly edited derivate can automatically inherit its mothers EXIF information.
exigate
Automatically gate information between gthumb metadata and the images EXIF information. This lets you describe and tag your photos whith gthumb and transfer everything to the according EXIF tags afterwards. The other direction is also possible, so you are never bound to using one specific piece of software.
Download (0.063MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1207 downloads
phpBazar 2.1.1
phpBazar provides a PHP/mySQL Classified Ads & Matchmaking product. more>>
phpBazar provides a PHP/mySQL Classified Ads & Matchmaking product.
Main features:
- WebSetup Install/Update-Tool
- Easy Config (config.php-File, style.css-File)
- Multi Languages, easy customizeable with Variables & Templates (incl.: English, German, French)
- Online Language Switch (unlimited Languages supported)
- Automatic Dynamic PageBreaks
- User (Member) Registration (incl. E-Mail confimation)
- User (Member) Authentification (Cookie based)
- User (Member) Data-Administration
- Lost Password Function
- Unlimited Members
- Unlimited Categories
- Unlimited SubCategories
- Special Feature Field
- 20 Feature Fields (Text-, Select-, Checkbox-Field)
- 10 Feature Icons
- Category Structured Display
- Attachment Upload/Display Function (max. 5 per ad)
- Picture Upload/Display Function (max. 5 per ad, .gif .jpg .png supported)
- Pictures Stored File-based or DB-based
- Picture Preview and Thumbnail View (GD-Lib & ImangeMagick supported)Webmail (Inbox/Sent/Trash)
- Send Ad-Reply (E-Mail) Function (incl. CarbonCopy & Attachment!)
- Send Fried Ad-URL-Reffer (E-Mail)
- Send ICQ-Message
- Goto Ad-Member URL
- Ad Rating
- Ad Statistic
- Ad Print
- Search Ads (simple & advanced)
- My Ads (edit & delete)
- My Favorits
- AutoNotify-Function
- Notify for timeouted Ads
- Ad-of-the-Day (or Week, Month)
- FloodProtect
- Useronline and Details
- Memberlisting & Search, Member-Details, Member-Ads
- IP-Logging & Banning
- User (Member) Banning
- Long-Word-Filter
- Dirty-Word-Filter
- Processing Time Display
- GZip output compression - 100% speed increase on PHP4.x.x
- Smilies Database & Conversation & dyn. Help
- Event Logging (Registration, Login, Logout, New Ad, Changed Ad, ...)
- Webmaster (E-Mail) Notify (Add User, Add Ad, Reply Ad, ...)
- Web-Admin-Panel (Statistics, Members, Categories, (HTML-)Newsletter,...)
- Admin Approval for new Ads
- Admin Database Backup
- Admin Database Cleanup
- Much More ...
- BONUS: Guestbook integrated (phpBook)
- BONUS: Voting integrated (phpVote)
- BONUS: Forum-Interface integrated (e.g. for FREE phpBB Forum)
- BONUS: Chat-Interface integrated (e.g. for phpBazarChat)
<<lessMain features:
- WebSetup Install/Update-Tool
- Easy Config (config.php-File, style.css-File)
- Multi Languages, easy customizeable with Variables & Templates (incl.: English, German, French)
- Online Language Switch (unlimited Languages supported)
- Automatic Dynamic PageBreaks
- User (Member) Registration (incl. E-Mail confimation)
- User (Member) Authentification (Cookie based)
- User (Member) Data-Administration
- Lost Password Function
- Unlimited Members
- Unlimited Categories
- Unlimited SubCategories
- Special Feature Field
- 20 Feature Fields (Text-, Select-, Checkbox-Field)
- 10 Feature Icons
- Category Structured Display
- Attachment Upload/Display Function (max. 5 per ad)
- Picture Upload/Display Function (max. 5 per ad, .gif .jpg .png supported)
- Pictures Stored File-based or DB-based
- Picture Preview and Thumbnail View (GD-Lib & ImangeMagick supported)Webmail (Inbox/Sent/Trash)
- Send Ad-Reply (E-Mail) Function (incl. CarbonCopy & Attachment!)
- Send Fried Ad-URL-Reffer (E-Mail)
- Send ICQ-Message
- Goto Ad-Member URL
- Ad Rating
- Ad Statistic
- Ad Print
- Search Ads (simple & advanced)
- My Ads (edit & delete)
- My Favorits
- AutoNotify-Function
- Notify for timeouted Ads
- Ad-of-the-Day (or Week, Month)
- FloodProtect
- Useronline and Details
- Memberlisting & Search, Member-Details, Member-Ads
- IP-Logging & Banning
- User (Member) Banning
- Long-Word-Filter
- Dirty-Word-Filter
- Processing Time Display
- GZip output compression - 100% speed increase on PHP4.x.x
- Smilies Database & Conversation & dyn. Help
- Event Logging (Registration, Login, Logout, New Ad, Changed Ad, ...)
- Webmaster (E-Mail) Notify (Add User, Add Ad, Reply Ad, ...)
- Web-Admin-Panel (Statistics, Members, Categories, (HTML-)Newsletter,...)
- Admin Approval for new Ads
- Admin Database Backup
- Admin Database Cleanup
- Much More ...
- BONUS: Guestbook integrated (phpBook)
- BONUS: Voting integrated (phpVote)
- BONUS: Forum-Interface integrated (e.g. for FREE phpBB Forum)
- BONUS: Chat-Interface integrated (e.g. for phpBazarChat)
Download (MB)
Added: 2007-04-19 License: GPL (GNU General Public License) Price:
937 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 approval workflow 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