van-tomas.de
How to cleanup outdated TYPO3 development projects
https://www.van-tomas.de/blog/how-to-cleanup-outdated-typo3-development-projects/index.html
How to cleanup outdated TYPO3 development projects. June 24th, 2011. During development of different TYPO3 projects I've forgotten to clean up the development directory regularly. So, after a while I even forgot which TYPO3 version was used by each project. To see the target of the source symlink the find command is very useful. The following gist snippet is a reminder to myself and maybe it's even useful for you! View the gist @ github. Comments powered by Disqus. Sebastiaan de Jonge - Inspired to share!
van-tomas.de
How to render reStructuredText documents with latest docutils on Ubuntu 12.04 LTS
https://www.van-tomas.de/blog/restructuredtext-docutils-ubuntu-12-04-lts/index.html
How to render reStructuredText documents with latest docutils on Ubuntu 12.04 LTS. August 29th, 2013. Ubuntu 12.04 LTS comes with Python docutils version 0.8.1. This version lacks support for : code. Directives and some more features which prevents you from testing your reStructuredText document before uploading it to Github. Virtualenv - Virtual Python environments. The first step is to create a dedicated, enclosed environment for installing local, non system wide Python packages. And execute the activa...
van-tomas.de
Multi language/domain setup with RealURL - revised
https://www.van-tomas.de/blog/multi-languagedomain-setup-with-realurl-revised/index.html
Multi language/domain setup with RealURL - revised. May 10th, 2011. Search engine friendly urls. The development of RealURL has made great progress and after the latest comment on an older article I decided to review the setup of a multilingual site with TYPO3. The setup must meet two major objectives: language switching by domain, a proper language switching menu with properly encoded page paths. Furthermore, RealURL supports a new feature DOMAINS. Within one page tree every page has a unique page title.
van-tomas.de
TYPO3 multi language & multi domain site with RealURL and language menu
https://www.van-tomas.de/blog/typo3-multi-language-multi-domain-site-with-realurl-and-language-menu/index.html
TYPO3 multi language and multi domain site with RealURL and language menu. May 9th, 2011. This is a step-by-step tutorial which describes in detail how to setup TYPO3 for a multilingual website with domain language switching. It will describe how to properly configure RealURL, extend it's configuration with simple PHP statements in the RealURL configuration file and last but not least, probably the most important thing: the language switch menu with cross domain support. At root level, all domains must b...
van-tomas.de
Behind the scenes of the TYPO3, Ubuntu and Webdevelopment Blog
https://www.van-tomas.de/about-me/index.html
Hello, my name is Thomas Juhnke. I'm a 35 years old guy living in Berlin, Germany. I am a software developer focused on building web applications, hobby web designer and Open Source enthusiast. I started programming in 1997 in Visual Basic and Delphi but soon discovered the web and switched to web application development. Currently, my work is focused on developing website applications with TYPO3 CMS. My footsteps on the web. Digitalkaoz.net - symfony, JavaScript and OpenSource. By dreadwarrior at TYPO3 ...
van-tomas.de
Project automation & dependency management for TYPO3.CMS projects
https://www.van-tomas.de/blog/project-automation-dependency-management-for-typo3cms-projects/index.html
Project automation and dependency management for TYPO3.CMS projects. August 11th, 2014. After some years developing web application projects with TYPO3.CMS I‘d like to share and discuss. My thoughts about project deployment, building and dependency management with the current LTS version 6.2 with a broader audience. This article is deprecated with the release of TYPO3 CMS version 7.4 . Everything is a component. Bending and breaking the shackles. Composer integration during runtime. Additionally, it is v...
blog.sebastiaandejonge.com
Review: NewerTech USB 3.0 Universal Drive Adapter - Hardware - Sebastiaan de Jonge's Blog
http://blog.sebastiaandejonge.com/articles/2013/march/28/review-newertech-usb-30-universal-drive-adapter
Review: NewerTech USB 3.0 Universal Drive Adapter. Posted on March 28th 2013 at 10:00 inside Hardware. I've purchased this little gadget about a month ago, I'm planning to use it to clean out some of my old harddrives and perhaps use it in the future to upgrade my iMac to an SSD. In this post I'd like to share my experience with this little gadget. What does it do? USB 30 Universal Drive Adapter. USB 30 connector cable. The jumper settings usually depend on the drive's manufacturer, most manufacturer off...
blog.sebastiaandejonge.com
PHP upload to WebDav using cURL - PHP - Sebastiaan de Jonge's Blog
http://blog.sebastiaandejonge.com/articles/2013/january/22/php-upload-to-webdav-using-curl
PHP upload to WebDav using cURL. Posted on January 22nd 2013 at 08:30 inside PHP. This short snippet will demonstrate how you can upload a file onto a WebDav server using cURL and PHP. CURL is a command-line tool that will transfer data with URL syntax. It supports many different protocols such as HTTP, FTP, POP3, IMAP, LDAP and so on. Additionally it also supports many other features like uploading, authentication and proxies, making an ideal tool. And luckily, it also comes as a PHP module! Set the aut...
blog.sebastiaandejonge.com
Class extension in Extbase - Extension Development - Sebastiaan de Jonge's Blog
http://blog.sebastiaandejonge.com/articles/2013/june/11/class-extension-in-extbase
Class extension in Extbase. Posted on June 11th 2013 at 00:40 inside Extension Development. In this post I will give a short demonstration on how to extend existing classes within Extbase. For example to extend another extension's or plugin's functionality. With piBase. Extensions we could do so by using the XCLASS. Construction, this post will demonstrate how we do this in Extbase. Hash In the extended controller it will add a random SHA1. Hash as well. Let's have a quick look at booth controllers.