Archive

Posts Tagged ‘PHP Programming.’

Site Launch: The Chocolution

October 23rd, 2009
The Chocolution screenshots.

The Chocolution screenshots.

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 also uses a custom shopping cart built using the Google Web Toolkit (GWT). The cart was integrated with PayPal Express Checkout using the PayPal API.

Visit The Chocolution website.

News, Web Development , , , , , , ,

Betfair PHP Application Completed

October 23rd, 2009
Screenshot for the Betfair PHP Demo application

Screenshot for the Betfair PHP Demo application

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 market prices are refreshed every 1 second.

The design uses object-oriented design patterns to keep the code well-structured and ready for extension.

The code was fully documented including UML class and sequence diagrams.

Betfair, News , , , , ,

BTFTA.org: PHP Customisation / Development

May 11th, 2009

British Thought Field Therapy AssociationMorley 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.

News , , ,

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

May 6th, 2009

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’ specifies the root directory for the operation.

How to chmod all folder/directories below the current directory…

find . -type d -exec chmod 755 {} \;

Alternatively, chmod on all directories below a given directory (./somedir)

find ./somedir -type d -exec chmod 755 {} \;

PHP , , , ,

Website Redeveloped: Dover-Rental.co.uk

April 20th, 2009

Dover-Rental.co.uk allows Dover-based private landlords to advertsie properties online.

Website allowing Dover-based landlords to advertsie properties online

News, Web Development , , , ,