Archive for the 'Web' Category

Coda – Error code 37 – “Host Key Changed for…”

Tuesday, July 6th, 2010

Coda error code 37, caused when a site’s ip address changes, and the SSH keys are no longer valid. It can be fixed by connecting with Coda’s Terminal and reading the response. Which will tell you what line on the known_hosts file the old key, that then needs to be deleted, can be found.

TD Waterhouse stock cost calculator – update

Tuesday, June 22nd, 2010

http://news.mullerdigital.com/examples/td_share_cost_calculator/
I’ve updated the calculator to include the sell price for stocks as well as all the fees incurred during a sale.

TD Waterhouse stock cost calculator

Thursday, June 17th, 2010

http://news.mullerdigital.com/examples/td_share_cost_calculator/

This tool is to help estimate costs for shares being purchased through TD Waterhouse on the NYSE, NASDAQ and TSX exchanges. It includes the fees and exchange rates for both the Canadian and US dollar amounts.

Google public data

Thursday, May 20th, 2010

Google public data has a variety of world information displayed in various animated charts and graphs.

Allow PHP to access files but not website visitors

Thursday, April 29th, 2010

Add the following to an .htaccess file, and all .php files under the .htaccess file will not be available via the web:
<FilesMatch "\.php$">
Order deny,allow
Deny from all
</FilesMatch>

The files will be available through PHP though. As PHP is not requesting the files through Apache webserver, rather is it requesting include files via the file system.