1. Welcome to dFramework - A simple PHP framework for beginners
Blog: dframework package blog
Package: dframework
This is a very short article on which I give an overview of the about the dFramework project.
More ...
Post a comment
See comments (0) Trackbacks (0)



1. How to Create a PHP URL Shortner using a MongoDB Database to Store the URLs
Blog: Encurtador URL MongoDB package blog
Package: Encurtador URL MongoDB
URL shortener solutions are useful to help sharing URLs of Web site pages in a way that those URLs are shorter and easier to understand.
That may help to encourage users to share URLs just by typing them, as they need to type less characters to share the same URL that often may be very long.
This package provides a URL shortner solution that uses MongoDB, thus making it more feasible to scale a solution that can be used to share many more URLs using less resources from servers running PHP, than it would by using more traditional databases.
More ...
Post a comment
See comments (0) Trackbacks (0)
That may help to encourage users to share URLs just by typing them, as they need to type less characters to share the same URL that often may be very long.
This package provides a URL shortner solution that uses MongoDB, thus making it more feasible to scale a solution that can be used to share many more URLs using less resources from servers running PHP, than it would by using more traditional databases.



1. How to Embed a WordPress Audio Player So Your Site Can Play Audio Samples and Playlists
Blog: Dynamic WordPress Audio Player Plugin package blog
Package: Dynamic WordPress Audio Player Plugin
Many sites related with music need to present samples to the users in the form of audio players.
This package can embed an audio player in Web pages generated by WordPress with the possibility to present individual songs or complete play lists of multiple songs or audio samples.
Since it just requires that the publisher that edits the pages insert only a single tag in the WordPress post editor, this solution to embed a audio player is very simple.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can embed an audio player in Web pages generated by WordPress with the possibility to present individual songs or complete play lists of multiple songs or audio samples.
Since it just requires that the publisher that edits the pages insert only a single tag in the WordPress post editor, this solution to embed a audio player is very simple.



1. How to Workaround the PHP Time Limit Setting to Execute Long Tasks without Having to Change that PHP Setting
Blog: PHP Time Limit Manager package blog
Package: PHP Time Limit Manager
PHP provides a feature that is used to limit the time that a script can run.
This is useful for instance to prevent that bugs may cause excessive load on the server due to scripts that execute tasks that take too long to finish.
Sometimes it is better to split the tasks in multiple executions of the same PHP script to avoid that each execution exceeds the PHP execution time limit, which by default is 30 seconds.
This class can help determining when a script that runs a long task is close to exceed the PHP execution time limit.
This way, PHP applications can pause the execution of each task and redirect the Web page access that runs that long task, so the next request handled by the same PHP script can resume the execution of that long task where it was paused.
More ...
Post a comment
See comments (0) Trackbacks (0)
This is useful for instance to prevent that bugs may cause excessive load on the server due to scripts that execute tasks that take too long to finish.
Sometimes it is better to split the tasks in multiple executions of the same PHP script to avoid that each execution exceeds the PHP execution time limit, which by default is 30 seconds.
This class can help determining when a script that runs a long task is close to exceed the PHP execution time limit.
This way, PHP applications can pause the execution of each task and redirect the Web page access that runs that long task, so the next request handled by the same PHP script can resume the execution of that long task where it was paused.



1. How to Implement a PHP Docker Container Monitoring Solution Using the Docker API
Blog: PHP Docker API package blog
Package: PHP Docker API
Docker is a well known tool to manage containers on which developers can deploy their applications in the development or test environments in a way that it is easy to push to the production environments, so there is not much difference between the different environments.
This package provides a PHP solution that allows querying Docker to obtain details of the state of the instances that may be running on a given machine.
It makes it easy to monitor applications running as Docker instances, so developers can check the status of their applications.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package provides a PHP solution that allows querying Docker to obtain details of the state of the instances that may be running on a given machine.
It makes it easy to monitor applications running as Docker instances, so developers can check the status of their applications.



1. How to Create a PHP Web Chat System to Interact with Telegram Users
Blog: PHP Telegram Web Chat package blog
Package: PHP Telegram Web Chat
Telegram is a popular chat application used by millions of users from around the world.
This package can use the Telegram API to add a chat solution in Web page generated by your PHP application.
This way you can easily interact with your site users via a Web page, thus without using the native Telegram applications.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can use the Telegram API to add a chat solution in Web page generated by your PHP application.
This way you can easily interact with your site users via a Web page, thus without using the native Telegram applications.



1. How to Improve Your PHP Project Documentation by Finding Source Files with Missing or Wrong PHPDoc Comments
Blog: PHP Doctor package blog
Package: PHP Doctor
Having good documentation is important for any project as it helps remembering all relevant aspects of how to use the programming components that are well documented.
A common practice among PHP developers is to use PHPDoc comments to store attributes about the different sections of a component like classes, functions, variables.
On a complex project it is hard to have all relevant components well documented.
This package simplifies the process of producing complete documentation of projects with multiple components, as it can scan code files to find which components are missing documentation in PHPDoc format, or even find mistakes in existing PHPDoc comments.
More ...
Post a comment
See comments (0) Trackbacks (0)
A common practice among PHP developers is to use PHPDoc comments to store attributes about the different sections of a component like classes, functions, variables.
On a complex project it is hard to have all relevant components well documented.
This package simplifies the process of producing complete documentation of projects with multiple components, as it can scan code files to find which components are missing documentation in PHPDoc format, or even find mistakes in existing PHPDoc comments.



1. How to Implement a PHP Router Configuration Generator to Automate the Setup of MVC Based Applications
Blog: Dframe PHP Router Configuration Generator package blog
Package: Dframe PHP Router Configuration Generator
MVC based applications can process HTTP requests by routing the requests to controller classes that can perform the desired actions and return the responses.
This package can simplify the configuration of application routing by scanning controller class files to extract the possible actions that they can perform. Then it can generate updated configuration files to define how requests are routed.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can simplify the configuration of application routing by scanning controller class files to extract the possible actions that they can perform. Then it can generate updated configuration files to define how requests are routed.



1. How Can PHP Render HTML for Views of MVC Based Applications using Different Template Engines
Blog: Dframe PHP MVC View package blog
Package: Dframe PHP MVC View
There are many template engines that are often used to render the output of pages generated by PHP applications. Different developers prefer to use different template engines.
This package makes it possible for applications implemented using the the Dframe framework view rendering support using several template engines of the choice of the application developer.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package makes it possible for applications implemented using the the Dframe framework view rendering support using several template engines of the choice of the application developer.



1. How to Create CRUD Based Applications in Less Time using Pre-Defined Base CRUD Actions
Blog: Mezon PHP Application Actions package blog
Package: Mezon PHP Application Actions
Many applications need to provide means to let users request the execution of actions that are usually of the kind of Creating, Retrieving, Updating and Deleting data records (CRUD).
This package can simplify the implementation of this kind of action by providing default actions to implement CRUD based application services.
More ...
Post a comment
See comments (0) Trackbacks (0)
This package can simplify the implementation of this kind of action by providing default actions to implement CRUD based application services.


