Development


TYPO3 and the filesystem

My post on TYPO3 in the cloud prompted an interesting tweet:
@danfrost so how do you propagate files without nfs??
I had mentioned that this was one of the stickier points, in my previous post and whether that’s what prompted this …

Topics: Cloud, Development
Comments: none so far

TYPO3 in the cloud

Get in touch for consultancy and training on the cloud.
We’ve been running TYPO3 on the cloud since AWS released their API and we’ve recently become Amazon Web Services Partners. Back then there was less support and training so we …

Topics: Cloud, Development
Comments: none so far

Phing Symlink task

Many projects have shared items across them. For example, Typo3 projects can share the same source, but just sticking it on the include path doesn’t necessarily solve the problem, so you have to symlink it from a shared location …

Topics: Applications, Development, Work Tags:
Comments: none so far

How we built Singup.org

A nerdy visualisation of the activity on the singup.org Git repository.

Topics: Applications, Development, Work Tags: ,
Comments: one comment

Zend_Feed and changing the date

Just a quick note that will hopefully save someone a bit of time in the future…
When using Zend_Feed to create your RSS, don’t use:
pubDate => date(‘r’, $item->timestamp)

This doesn’t work as you’d expect. You’ll only ever get the current time. …