Archive for October, 2007
Thursday, October 11th, 2007
PHP just got a major boost from Microsoft this morning with the release of FastCGI for windows. Anyone working with PHP and Windows knows just how painful it can be, if you can get it to work reliably at all. We have been working with a number of projects that all involved PHP on IIS, and seen web sites entirely wiped out due to bad upgrades, where even the backups of the backups would not work due to one technical issue after another until having to revert to the previous version of PHP on IIS. (more…)
Posted in Uncategorized | No Comments »
Thursday, October 11th, 2007
Have you ever wanted to know how to easily synchronize the data between multiple servers automatically?
In this article Ill explain how to setup 2 Linux servers to automatically synchronize data between a specific directory on each server. To do this we will use rsync, ssh key authentication, and a cron job. (more…)
Posted in Uncategorized | No Comments »
Wednesday, October 3rd, 2007
To continue the script execution on client disconnection, you can use a function provided by PHP called ‘ignore_user_abort’. This function sets whether on client disconnect, should script execution be continued or aborted. Calling the function with the parameter set to ‘TRUE’ should ignore user disconnection and continue with script execution. (more…)
Posted in Uncategorized | No Comments »