Tag Archives: PHP

PHP Errors to File

To log all PHP Errors to log file, edit php.ini file, add error_log = /var/log/php-errors.log To turn off displaying errors to browser, change value of display_errors to Off display_errors = Off

Posted in PHP | Tagged , | Leave a comment

Develop Java Project in ZendStudio

I recently started doing some small java projects. I have installed Eclipse/intelliJ. I prefer Eclipse as it compile program on saving. Since my project contains many independent programs i like this feature. I am already using ZendStudio 8. This is … Continue reading

Posted in PHP | Tagged , , , , | 1 Comment

PHP function to find file extension

To find file extension with PHP, use pathinfo function [code lang="php"] <?php $video = 'hostonnet.avi'; $info = pathinfo($video); echo '<pre>'; print_r($info); // File extension echo $info['extension'] . "<br>"; // avi // File Name with out extension echo $info['filename'] . "<br>"; … Continue reading

Posted in PHP | Tagged , , , | Leave a comment

ffmpeg-php undefined symbol php_gd_gdImageSetPixel

When i install ffmpeg-php on a plesk server, i got following error PHP Warning: PHP Startup: Unable to load dynamic library ‘/usr/lib/php/modules/ffmpeg.so’ – /usr/lib/php/modules/ffmpeg.so: undefined symbol: php_gd_gdImageSetPixel in Unknown on line 0 This is caused by loading ffmpeg.so before gd.so … Continue reading

Posted in Linux | Tagged , , , , | 3 Comments

PHP, Flash Developers Needed : BizHat.com, Cherthala, Kerala

PHP Programmers Looking for freshers and experiened PHP/MySQL developers to work on live projects. Should have good knowledge on PHP/MYSQL, Responsible and Self-driven Flash Developers Flash developers with Action script programming knowledge for developing flash based video application. Send resume … Continue reading

Posted in Web | Tagged , , | Leave a comment

CodeIgniter for Rapid PHP Application Development

Yesterday when i found a web site that illegally distribute the PDF copy of the book “CodeIgniter for Rapid PHP Application Development” I have been in PHP developement for some time and want to start using MVC (if it really … Continue reading

Posted in PHP | Tagged , , | Leave a comment