Tag Archive

Zend framework on 1and1 hosting.

Published on February 20, 2009 By admin

How to get Zend Framework running on 1and1 hosting.

TinyMCE not loading in Zend Framework

Published on February 20, 2009 By admin

I was having a bit of a problem with TinyMCE not loading in Zend Framework (ZF). It turns out the .htaccess file was not configured correctly. It was redirecting .js to the index bootstrap and causing the page to fail to load.
The solution was the htaccess file as so…

Options -MultiViews
RewriteEngine On
RewriteBase /website
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} [...]

Nathan whitworth.co.uk site rebuild

Published on February 16, 2009 By admin

I decided to rebuild my home page with Zend Framework since it was originally done as little more than static pages.

Zend Framework multi page forms

Published on October 1, 2008 By admin

I’ve started using Zend Framework for a project I’m under taking here at TradeDoubler. I’m building a new part of Searchware that is essentially standalone, so figured that this is a great oportunity to push for framework support. Better form validation, less scope for creating errors in trivial donkey work coding because it’s already done [...]