624. Notable PHP package: PHP CSV to DBF
Updated on: 2017-11-13
Posted on: 2017-11-13
DBase is an old format for flat file databases. It is more efficient to store and retrieve records of fixed size than for instance CSV files.
This class can convert data from CSV files to the DBase format.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This class can convert data from CSV files to the DBase format.
Read this article to learn more details about how this notable PHP package works.



623. Notable PHP package: FormE
Updated on: 2017-11-09
Posted on: 2017-11-09
Creating forms and scripts to handle their processing is a common task that many developers perform, especially for applications meant to manage data stored in a database.
This package can simplify the creation and processing of forms for managing database records using XML to define how forms should be presented and processed.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can simplify the creation and processing of forms for managing database records using XML to define how forms should be presented and processed.
Read this article to learn more details about how this notable PHP package works.



622. Notable PHP package: PHP Systemd Daemon Notify
Updated on: 2017-11-06
Posted on: 2017-11-06
Systemd is a daemon program running on current Linux systems to manage the execution of daemon programs running on the system.
It helps monitoring the execution of daemon programs by receiving heartbeats that let system know when a daemon is alive or died.
This class helps PHP developers to write daemons in PHP that can be monitored and restarted by systemd and eventually be restarted when necessary.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
It helps monitoring the execution of daemon programs by receiving heartbeats that let system know when a daemon is alive or died.
This class helps PHP developers to write daemons in PHP that can be monitored and restarted by systemd and eventually be restarted when necessary.
Read this article to learn more details about how this notable PHP package works.



621. PHP and JavaScript Innovation Award Report October 2017 Edition - July 2017 nominees
Updated on: 2017-11-02
Posted on: 2017-11-02
This is the September edition of the Innovation Award podcast hangout recorded by Manuel Lemos and Arturs Sosins to comment on the outstanding features of all the past month nominees and winners PHP and JavaScript packages, the prizes that the authors earned, starting with the nominees from the month of June 2017.
Listen to the podcast, or watch the hangout video to learn why the nominated packages were considered to be innovative, as well the current rankings of the Innovation Award Championship by author and by country.
More ...
Post a comment
See comments (0) Trackbacks (0)
Listen to the podcast, or watch the hangout video to learn why the nominated packages were considered to be innovative, as well the current rankings of the Innovation Award Championship by author and by country.



620. Notable PHP package: HTTP2 Server Push PHP Class
Updated on: 2017-11-01
Posted on: 2017-11-01
HTTP/2 is a newer version of the HTTP protocol that can make sites much faster by serving many of the resources a page needs by delivering them simultaneously to the user browser.
This class makes it easier to use HTTP/2 server push feature to take advantage of the speed gains when serving a PHP Web site page when it is running on a HTTP/2 server.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This class makes it easier to use HTTP/2 server push feature to take advantage of the speed gains when serving a PHP Web site page when it is running on a HTTP/2 server.
Read this article to learn more details about how this notable PHP package works.



619. Notable PHP package: RabbitMQ Manager
Updated on: 2017-10-31
Posted on: 2017-10-31
RabbitMQ is a well known message queuing system. Like other similar systems it provides means to store published messages until they are consumed by applications that need to process them.
This package can be used to manage queues stored on a RabbitMQ system by executing the basic operations to create, list, update and delete queues.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can be used to manage queues stored on a RabbitMQ system by executing the basic operations to create, list, update and delete queues.
Read this article to learn more details about how this notable PHP package works.



618. Notable PHP package: System Daemon
Updated on: 2017-10-30
Posted on: 2017-10-30
Daemons are programs that can run on the background to execute a kind of service that must be running continuously.
Usually only one instance of a daemon program can be run at a given time.
This class can be used as base of daemon programs written in PHP. It can process parameters passed via the command line to execute actions typical of daemon programs like starting daemons, stopping daemons or handling signals for killing daemon processes that may be running.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Usually only one instance of a daemon program can be run at a given time.
This class can be used as base of daemon programs written in PHP. It can process parameters passed via the command line to execute actions typical of daemon programs like starting daemons, stopping daemons or handling signals for killing daemon processes that may be running.
Read this article to learn more details about how this notable PHP package works.



617. Notable PHP package: PHP Migrate Database
Updated on: 2017-10-26
Posted on: 2017-10-26
Sometimes PHP applications need to synchronize databases hosted in different locations. However in many cases the information that needs to be synchronized is not the whole information in the database.
This class provides a solution that allows to migrate data of specific tables by specifying conditions that restrict the table records that need to be migrated.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
This class provides a solution that allows to migrate data of specific tables by specifying conditions that restrict the table records that need to be migrated.
Read this article to learn more details about how this notable PHP package works.



1. Benefiting from HTTP2 Server Push and other HTTP 2 Performance Advantages in PHP
Updated on: 2017-10-25
Posted on: 2017-10-25
Blog: HTTP2 Server Push PHP Class package blog
Package: HTTP2 Server Push PHP Class
HTTP 2 is the newer HTTP protocol version that provides several types of advantages in terms of performance.
Read this article to learn how to take advantage of the HTTP2 Server Push feature to improve the performance of PHP sites.
More ...
Post a comment
See comments (5) Trackbacks (0)
Read this article to learn how to take advantage of the HTTP2 Server Push feature to improve the performance of PHP sites.



616. Notable PHP package: Big Backup maker
Updated on: 2017-10-24
Posted on: 2017-10-24
Many sites need to perform backup operations so they can have additional copies of the information and files they need to work correctly.
Taking a backup of data of a site may take a long time, especially when there is a lot of files and data to copy.
When the process takes too long, it may be impossible to complete the whole process during a single run of a PHP script because in many hosting environments a script may only run for a limited length of time and using a limited amount or memory.
This package implements an approach that works around this limitation of running long time PHP scripts. It uses session variables to keep track of the backup progress and output data contents.
Then it redirects the user browser to the same script, so it can resume where the process was suspended as many times as necessary.
Read this article to learn more details about how this notable PHP package works.
More ...
Post a comment
See comments (0) Trackbacks (0)
Taking a backup of data of a site may take a long time, especially when there is a lot of files and data to copy.
When the process takes too long, it may be impossible to complete the whole process during a single run of a PHP script because in many hosting environments a script may only run for a limited length of time and using a limited amount or memory.
This package implements an approach that works around this limitation of running long time PHP scripts. It uses session variables to keep track of the backup progress and output data contents.
Then it redirects the user browser to the same script, so it can resume where the process was suspended as many times as necessary.
Read this article to learn more details about how this notable PHP package works.


