Get Base URL in Typo3 Extension

// January 6th, 2012 // 2 Comments » // TYPO3

Tweet There are two ways to get the base URL in your Code, either you use: 1 print $GLOBALS['TSFE']->baseUrl; or from your TypoScript configuration use: 1 print $GLOBALS['TSFE']->tmpl->setup['config.']['baseURL']; Be careful, you have to set the baseURL in your TypoScript or both options won’t work at all.

Continue Reading

Encrypt E-Mail Addresses with TypoScript and in your Extension

// January 6th, 2012 // No Comments » // TYPO3

Tweet Enable E-Mail Address Protection for your Typo3 Standard Content: 1 2 3 config.spamProtectEmailAddresses = 1 config.spamProtectEmailAddresses_atSubst = (at) config.spamProtectEmailAddresses_lastDotSubst = (dot) To protect E-Mail Addresses within your Extension use following Code: 1 $mail = $this->cObj->getMailTo($rawEmail, $rawEmail); This will create a Snippet that will also includes a JavaScript Function Call, so you don’t have to [...]

Continue Reading

Multilingual and TemplaVoila

// January 4th, 2012 // No Comments » // TYPO3

Tweet TYPO3 enables easy management of content for multilingual sites. In the course of development of TYPO3 was the concept of multi-language expanded and added new features. So it happens that one has a number of different configurations and different paradigm for multilingual content. In this article I will give an overview and detailed in the special [...]

Continue Reading

Using Cache-Control Headers in TYPO3

// December 29th, 2011 // 1 Comment » // TYPO3

Tweet Large websites with a lot of visitors are often fighting performance problems. Since buying faster hardware isn’t the best solution, TYPO3′s page caching is very helpful in those cases. But this still needs server resources, so why not let the browser or a proxy cache the content? This article demonstrates how to configure TYPO3 [...]

Continue Reading

How to Clear Cache for real URL Manually in Typo3

// December 26th, 2011 // 1 Comment » // TYPO3

Tweet While working with the URL’s. You will feel that once you have assign name for your “Items” is doesn’t change after editing the item name because TYPO3 cache URL segments. It can be change manually please see the picture below

Continue Reading

TYPO3 v4 Video Tutorials for Editors

// December 22nd, 2011 // 2 Comments » // TYPO3

Tweet !window.jQuery && document.write(”); $(document).ready(function() { /* * Examples – images */ $(“.video1″).fancybox({ ‘padding’ : 0, ‘autoScale’ : false, ‘transitionIn’ : ‘none’, ‘transitionOut’ : ‘none’ }); }); 1: Basic Concepts Contents: login, menu, page tree, working surface in the right frame, columns, file list deepening / background information: TYPO3 page concept Duration: 6:30 | Click [...]

Continue Reading

Typo3 Youtube Channel Videos Plugin

// December 20th, 2011 // 2 Comments » // Plugins

Tweet What does it do? This extension loads your youtube channel videos on your site where you want to display on the basis of Uploads, Favourites, Playlist. There are two view for this plugin 1- Latest 5 Videos (You can set limit from plugin configurations) 2- List of all videos with paging (You can set [...]

Continue Reading

TYPO3 Administration

// December 13th, 2011 // 3 Comments » // TYPO3

Tweet Backend In the typo3 backend you can see left most menu. there are a lot of modules in the menu to the left. Each module has it’s own content. Since you are the administrator you have access to all modules. You can also give access to selective modules to your other backend users. There [...]

Continue Reading

Manual installation of Typo3

// December 13th, 2011 // 4 Comments » // TYPO3

Tweet Please, download the latest version of typo3 from http://sourceforge.net/projects/typo3/ and upload the archive on your server (put into www folder if you are using wamp) or (put into htdocs folder if you are using XAMP). Extract that downloaded folder into your www or htdocs folders and if you are setting up on live server [...]

Continue Reading

PHP store SimpleXML value into Session or MYSQL ?

// December 12th, 2011 // No Comments » // MYSQL, PHP

Tweet Well While working with Twitter API i face a problem to store SimpleXML parse value into session or mysql. It works fine on that page where you parse value and store in session but doesn’t work on next pages. and it gives error “Warning: session_start() [function.session-start]: Node no longer exists”. so not go in [...]

Continue Reading