Paul Osborne - Java/PHP Developer

PHP

Betfair PHP Application Completed

Betfair PHP Demo is simple application developed for a customer wanting a basic application which they could use as a framework for building a more complex betting interface.
The application is developed in PHP5 and uses SOAP to interact with Betfair to login, select markets, get account details and place bets. Page data refreshes automatically and [...]

Site Launch: The Chocolution

The Chocolution sell healthy, raw chocolate making kits. Their chocolate is created using methods that preserve the natural goodness in the cacao bean which mainstream commercial processes destroy.
The site was completed in collaboration with Edda Jones who provided the designs.
Morley Computing used the designs to build the site using HTML, PHP and CSS. The website [...]

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 if [...]

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