Tag Archives: PHP

Iteration Complete: Custom Intranet CMS

This administration system was developed on behalf of Kiss Online Marketing for a client providing non-destructive testing services. The system will form part of the client’s intranet. The application was built using the Yii PHP framework, EXT JS, JQuery and AJAX. Using the Yii framework allowed an agile approach to be taken for software development. [...]

Drupal: 500 Internal Server Error on Modules Page

When enabling Drupal modules a 500 Internal Server Error can often appear with the default installation. Too identify the cause of the problem look in the error_log file for your web server. Each time I have encountered this problem the cause has been due to the PHP memory limit being exceeded. The typical error message [...]

BTFTA.org: PHP Customisation / Development

Morley Computing have just completed a customisation of the BizDirectory PHP application on behalf of the British Thought Field Therapy Association (BTFTA). The existing PHP application provided the essential functionality but it was also necessary to modify the PHP interface with PayPal for paid advertising.

How to do a recursive chmod all PHP files in a site or folder

If you want to do a recursive chmod on a set of files below a given directory or folder using the bash shell you can do the following: find . -type f -name ‘*.php’ -exec chmod 644 {} \; This command can be easily adapted to work for other file types or modes. The ‘.’ [...]