mnogosearch extension for php
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3940
mnoGoSearch extension for PHP 1.0.0
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API. more>>
nmGoSearch extension for PHP is a complete PHP binding for the mnoGoSearch API.
If used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
<<lessIf used with mysql you should not use bundled mysql library in the php distribution. You should use native mysql library. To do this you should compile php with specefying mysql-dir (for example --with-mysql=/usr, not --with-mysql).
To compile PHP with CVS versions of mnogosearch (not with official releases) you must open configure script of mnogosearch in your editor. Find line like the following:
VERSION=x.x.x-`date "+%d%m%Y"`
where x.x.x is the mnogosearch version number like 3.2.16 or so.
Then just remove -`date "+%d%m%Y"`. After that this line should be VERSION=x.x.x
After complete you should reconfigure, recompile, reinstall mnogosearch and php.
Download (0.015MB)
Added: 2006-07-19 License: The PHP License Price:
1193 downloads
Enchant extension for PHP 1.0.1
Enchant extension for PHP is a binder for libenchant. more>>
Enchant extension for PHP is a binder for libenchant. Libenchant provides a common API for many spell libraries:
- aspell/pspell (intended to replace ispell)
- hspell (hebrew)
- ispell
- myspell/hunspell (OpenOffice project, mozilla)
- uspell (primarily Yiddish, Hebrew, and Eastern European languages)
A plugin system allows to add custom spell support.
<<less- aspell/pspell (intended to replace ispell)
- hspell (hebrew)
- ispell
- myspell/hunspell (OpenOffice project, mozilla)
- uspell (primarily Yiddish, Hebrew, and Eastern European languages)
A plugin system allows to add custom spell support.
Download (0.008MB)
Added: 2006-03-22 License: The PHP License Price:
1313 downloads
HTTP extension for PHP 1.5.4
HTTP extension for PHP allows building absolute URIs. more>>
HTTP extension for PHP allows building absolute URIs, RFC-compliant HTTP redirects, RFC-compliant HTTP date handling, parsing of HTTP headers and messages, caching by "Last-Modified" and/or ETag (with an on the fly option for ETag generation from buffered output), sending data/files/streams with (multiple) ranges, negotiating user-preferred language/charset, and convenient request functionality built upon libcurl.
PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, and HttpMessage.
Main features:
- Building absolute URIs
- RFC compliant HTTP redirects
- RFC compliant HTTP date handling
- Parsing of HTTP headers and messages
- Caching by "Last-Modified" and/or ETag (with on the fly option for ETag generation from buffered output)
- Sending data/files/streams with (multiple) ranges support
- Negotiating user preferred language/charset
- Convenient request functionality built upon libcurl
- PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage.
Enhancements:
- This release fixes bug #11359: HttpMessage::toMessageTypeObject() does not populate POST fields.
<<lessPHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, and HttpMessage.
Main features:
- Building absolute URIs
- RFC compliant HTTP redirects
- RFC compliant HTTP date handling
- Parsing of HTTP headers and messages
- Caching by "Last-Modified" and/or ETag (with on the fly option for ETag generation from buffered output)
- Sending data/files/streams with (multiple) ranges support
- Negotiating user preferred language/charset
- Convenient request functionality built upon libcurl
- PHP5 classes: HttpUtil, HttpResponse (PHP-5.1), HttpRequest, HttpRequestPool, HttpMessage.
Enhancements:
- This release fixes bug #11359: HttpMessage::toMessageTypeObject() does not populate POST fields.
Download (0.16MB)
Added: 2007-06-29 License: BSD License Price:
851 downloads
Object Extensions for PHP 0.1 Beta
Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. more>>
Object Extensions for PHP provides several classes that add runtime object extension and callbacks to the language. Object Extensions for PHP allows the programmer to add methods and properties to an object at runtime by dynamically extending by another object.
It also allows the creation of object property lists that allow for dynamic setting/getting of values in a fashion similar to JavaScript objects. These object property lists support basic value checking.
The Object Extensions library for PHP adds the following functionality to objects that extend the base class:
- Runtime object extension to "extend" an object by another class at runtime (to virtually inherit all public properties and methods).
- Runtime callback definitions to be able to pass function/method callbacks as variables, and subsequently execute them from other function/methods.
- Dynamic object properties class to handle runtime setting/getting of object properties, as well as ability to pass function arguments as object-based parameters rather than long list of options.
OBJECT EXTENSION:
- Base class (CExtendable) implements a _extend() function by which you may vritually extend an object by an instance of another object.
- Extended object (object passed to _extend) can reference parent object if supported by extended class.
- __get, __set and __call are all overriden to handle overriding undefined properties and methods
- Ability to reference a callback in a straightforward manner ($object->_callback()->method(args, [...]))
CALLBACK FUNCTIONALITY:
- Can create callbacks directly (through CCallback and derived classes)
- Can create method callbacks by calling _callback() method on CExtendable objects
- When combined with object extension and object properties, can provide a really easy way to execute callbacks.
OBJECT PROPERTIES:
- Base class extends ArrayIterator, all properties saved in an array
- Basic functionality to check values provided and/or set default values.
- Overrides __get, __set to get/set object properties.
- Can limit property set-tability to existing properties only, or to provided array of properties.
- Can enable read-only mode.
- Overrides __call, and in the case that the a property value with the same name as the method name exists, and is an instance of the ICallback interface, this callback is executed.
PHP COMPATIBILITY:
Object Extensions for PHP uses PHP5 functionality. It would be theoretically possible to implement similar functionality into PHP4, however, since I no longer develop in PHP4, I cannot properly test it.
<<lessIt also allows the creation of object property lists that allow for dynamic setting/getting of values in a fashion similar to JavaScript objects. These object property lists support basic value checking.
The Object Extensions library for PHP adds the following functionality to objects that extend the base class:
- Runtime object extension to "extend" an object by another class at runtime (to virtually inherit all public properties and methods).
- Runtime callback definitions to be able to pass function/method callbacks as variables, and subsequently execute them from other function/methods.
- Dynamic object properties class to handle runtime setting/getting of object properties, as well as ability to pass function arguments as object-based parameters rather than long list of options.
OBJECT EXTENSION:
- Base class (CExtendable) implements a _extend() function by which you may vritually extend an object by an instance of another object.
- Extended object (object passed to _extend) can reference parent object if supported by extended class.
- __get, __set and __call are all overriden to handle overriding undefined properties and methods
- Ability to reference a callback in a straightforward manner ($object->_callback()->method(args, [...]))
CALLBACK FUNCTIONALITY:
- Can create callbacks directly (through CCallback and derived classes)
- Can create method callbacks by calling _callback() method on CExtendable objects
- When combined with object extension and object properties, can provide a really easy way to execute callbacks.
OBJECT PROPERTIES:
- Base class extends ArrayIterator, all properties saved in an array
- Basic functionality to check values provided and/or set default values.
- Overrides __get, __set to get/set object properties.
- Can limit property set-tability to existing properties only, or to provided array of properties.
- Can enable read-only mode.
- Overrides __call, and in the case that the a property value with the same name as the method name exists, and is an instance of the ICallback interface, this callback is executed.
PHP COMPATIBILITY:
Object Extensions for PHP uses PHP5 functionality. It would be theoretically possible to implement similar functionality into PHP4, however, since I no longer develop in PHP4, I cannot properly test it.
Download (0.007MB)
Added: 2006-05-03 License: MIT/X Consortium License Price:
1271 downloads
Zip extension for PHP 1.8.9
Zip extension for PHP is a zip management extension. more>>
Zip extension for PHP is a zip management extension.
It can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
<<lessIt can read, write, and create zip archives. It also supports stream access to any archive entry. It is 100% compatible with the old versions of the extension (which were read-only).
Download (0.038MB)
Added: 2007-05-20 License: The PHP License Price:
542 downloads
Input Filter extension for PHP 0.11.0
Input Filter extension for PHP project is an extension for safely dealing with input parameters. more>>
Input Filter extension for PHP project is an extension for safely dealing with input parameters.
It is meant to address this issue by implementing a set of filters and mechanisms that users can use to safely access their input data.
<<lessIt is meant to address this issue by implementing a set of filters and mechanisms that users can use to safely access their input data.
Download (0.024MB)
Added: 2006-11-01 License: The PHP License Price:
1091 downloads
Folder Extension Wizard 1.0.1
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files). more>>
Folder Extension Wizard provides a small extension that Loads extensions from folders (unpacked xpi files).
A wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
<<lessA wizard is a user interface element where the user is led through a sequence of dialogs. Unlike most modern user interface paradigms, the user is forced to perform the task in a specific sequence.
However, for complex or infrequently performed tasks where the user is unfamiliar with the steps involved, it may make it easier for them to perform the task. In some open source software, wizards are called Druids.
Download (0.007MB)
Added: 2007-05-01 License: MPL (Mozilla Public License) Price:
909 downloads
ffmpeg-php extension 0.5.0
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio more>>
ffmpeg-php is an extension for PHP that adds an easy to use object-oriented API for retrieving information from movies and audio files.
It has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
<<lessIt has methods for returning frames from movie files as images that can be manipulated using PHPs image functions.
This works well for automatically creating thumbnail images from movie files. ffmpeg-php is also useful for reporting the duration and bitrate of audio files (mp3, wma...). ffmpeg-php can access many of the formats supported by ffmpeg.
Main features:
- Simple object oriented interface.
- Has methods to grab frames from movie files and return them as images that can be manipulated using PHPs built-in image functions. This is great for automatically creating thumbnails for movie files.
- Has the ability to use ffmpegs excellent resampling and cropping features on returned images.
- Provides access to data from mp3 files such as duration, bitrate and track meta information.
Download (1.5MB)
Added: 2006-09-30 License: GPL (GNU General Public License) Price:
1139 downloads
SynapseLife Toolbar Extension 0.1
SynapseLife Toolbar Extension provides easy access to SynapseLife. more>>
SynapseLife Toolbar Extension provides easy access to SynapseLife.
SynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
<<lessSynapseLife is a collection of 9 integrated web applications including tools for organizing your life including social bookmarking, rss feed aggregation, tagging, contacts, calendars, to-do lists, and a money ledgers.
Main features:
- Add favorites and feeds easily from the toolbar
- Livesearch of all of your items within SynapseLife
- Overlay of contextual icons and buttons on existing social networking sites for easy addition of contacts, calendar events, feeds and favorites.
Download (0.15MB)
Added: 2007-03-31 License: MPL (Mozilla Public License) Price:
965 downloads
mnoGoSearch 3.2.43
Advanced free search engine for Internet and Intranet sites more>> MnoGoSearch for is a search engine designed to organize search within a website, number of websites, intranet or local system. To search through documents you have to index them first using the indexer component of mnoGoSearch. Indexer is a spider that reads the documents you specify and stores information about words it finds in tables in a SQL or built-in database.<<less
Download (3.3MB)
Added: 2009-04-12 License: Freeware Price: $na
194 downloads
XMLParser for PHP 1.0
XMLParser is a library that assists in parsing XML documents into generic PHP arrays. more>>
XMLParser is a library that assists in parsing XML documents into generic PHP arrays. It also comes with RSSParser, an extension of XMLParser that creates simple RSS-specific array structures from RSS feeds.
<<less Download (0.011MB)
Added: 2005-09-22 License: GPL (GNU General Public License) Price:
1494 downloads
3intentions SeekPost Extension 0.3.1
3intentions SeekPost is a Firefox extension that allows members of 3intentions Seek sites to add and rate posts. more>>
3intentions SeekPost is a Firefox extension that allows members of 3intentions Seek sites to add and rate posts with a simple click from any page.
<<less Download (0.007MB)
Added: 2007-05-02 License: MPL (Mozilla Public License) Price:
905 downloads
Lua Networking Extension Library 0.5
LUA is a small scripting language designed to be embedded inside your application to provide extensibility. more>>
LUA is a small scripting language designed to be embedded inside your application to provide extensibility.
It is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
<<lessIt is also possible to extend the Lua scripting language itself via the use of extensions written in C. This page describes such an extension which provides a small number of basic networking and filesystem primitives.
By installing this extension you will be able to write networking applications in the Lua!
Enhancements:
- Added some filesystem primitives.
- Added API documentation & examples.
- The HTTP server now falls back to a default virtual host if none is specified, or if the attempted one doesnt exist.
- The HTTPD server now supports directory indexing if no index.html file is found in a directory.
- The HTTPD server now writes access.log files to each virtualhost.
Download (0.017MB)
Added: 2005-11-01 License: LGPL (GNU Lesser General Public License) Price:
1454 downloads
PHP WebDAV extension 1.1
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol. more>>
PHP WebDAV extension project allows easy access to remote resources with PHP through the DAV protocol.
Installation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
<<lessInstallation
This extension requires the Neon library and the related header files.
Neon can be downloaded from: http://www.webdav.org/neon/
Pre-built packages and ports are already available for most operating systems and distributions.
In order to compile and install the PHP WebDAV extension, just follow the standard PECL procedure :
$ phpize
$ ./configure --enable-dav
# make install
On OpenBSD systems, use
$ env AUTOCONF_VERSION=2.61 phpize
(replace 2.61 with any of the currently installed versions of autoconf on your system)
Basic example
webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt);
webdav_put(/your/nice/thing.txt, $data);
webdav_unlink(/unwanted_resource.txt);
webdav_rename(/dir/old_name, /dir/new_name);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE);
webdav_close();
Named resource example
$res = webdav_connect(http://webdav.example.com/dav, davuser, davpassword);
$a = webdav_get(/my/nice/object.txt, $res);
webdav_put(/your/nice/thing.txt, $data, $res);
webdav_unlink(/unwanted_resource.txt, $res);
webdav_rename(/dir/old_name, /dir/new_name, $res);
webdav_copy(/dir/orig_dir, /dir/new_dir, TRUE, $res);
webdav_close($res);
Enhancements:
- This release fixes a bug in webdav_put() and introduces a wrapper to access DAV resources through PHP streams.
Download (0.23MB)
Added: 2007-04-08 License: BSD License Price:
939 downloads
Lua Filesystem Extension Library 0.1
Lua extension library provides the filesystem primitives to your Lua scripts, which are missing from the core language. more>>
This extension library provides the filesystem primitives to your Lua scripts, which are missing from the core language. The exported primitives include mkdir, rmdir, stat, chown, chmod, and more.
Available filesystem primitives:
chdir()
chmod()
chown()
cwd()
is_dir()
is_file()
mkdir()
readdir()
rmdir()
stat()
This project was started when I was coding a simple Lua webserver and became frustrated at the lack of available filesystem primitives.
Enhancements:
- This is the first stable release of the software with complete documentation and a sufficiently useful set of exported primitives.
<<lessAvailable filesystem primitives:
chdir()
chmod()
chown()
cwd()
is_dir()
is_file()
mkdir()
readdir()
rmdir()
stat()
This project was started when I was coding a simple Lua webserver and became frustrated at the lack of available filesystem primitives.
Enhancements:
- This is the first stable release of the software with complete documentation and a sufficiently useful set of exported primitives.
Download (0.010MB)
Added: 2005-11-08 License: LGPL (GNU Lesser General Public License) Price:
1447 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 mnogosearch extension for php 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