How to write a TYPO3 extension (frontend plugin)
This document is writen for the single purpose of helping people start developing their TYPO3 extension. It's not a step by step guide but it should point you in the right direction. There is enough information online but not...
6 Comments
Import a CSV File into a MySQL Table
Today i found myself having a CSV file (or Comma Seperated Values) with over 432000 lines. But for some project i'm working on i would like to have those values inside a MySQL Database. I already knew how to export a table to a...
chmod directories recursively
Quite often i use "chmod -R 755 something" to set permissions on all things inside a directory but today i wanted to do the same but only on directories.
To do this is actually quite simple "find . -type d -exec chmod 755 {} \;"...