Paul Osborne - Java/PHP Developer

Monthly Archives: May 2009

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 ‘.’ following ‘find’ [...]